diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2007-05-06 15:25:05 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2007-05-06 15:25:05 +0000 |
commit | e792718ddf7f8c879ba38c4801b52b74a6b80766 (patch) | |
tree | e5f09189820ec9d067e44c6bd9ddf638c344acb0 /gst/real/gstrealaudiodec.h | |
parent | fcfbf0f58ca1f8d7b5f43fd42f235e44785ed9a7 (diff) | |
download | gst-plugins-bad-e792718ddf7f8c879ba38c4801b52b74a6b80766.tar.gz gst-plugins-bad-e792718ddf7f8c879ba38c4801b52b74a6b80766.tar.bz2 gst-plugins-bad-e792718ddf7f8c879ba38c4801b52b74a6b80766.zip |
gst/real/: Use GModule instead of using dlsym() directly. Fixes #430598.
Original commit message from CVS:
* gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps),
(gst_real_audio_dec_finalize):
* gst/real/gstrealaudiodec.h:
* gst/real/gstrealvideodec.c: (open_library), (close_library):
* gst/real/gstrealvideodec.h:
Use GModule instead of using dlsym() directly. Fixes #430598.
Diffstat (limited to 'gst/real/gstrealaudiodec.h')
-rw-r--r-- | gst/real/gstrealaudiodec.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/real/gstrealaudiodec.h b/gst/real/gstrealaudiodec.h index b1f68641..3c6769c0 100644 --- a/gst/real/gstrealaudiodec.h +++ b/gst/real/gstrealaudiodec.h @@ -25,6 +25,7 @@ #include <gst/audio/audio.h> G_BEGIN_DECLS + #define GST_TYPE_REAL_AUDIO_DEC (gst_real_audio_dec_get_type()) #define GST_REAL_AUDIO_DEC(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_REAL_AUDIO_DEC,GstRealAudioDec)) #define GST_REAL_AUDIO_DEC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_REAL_AUDIO_DEC,GstRealAudioDecClass)) @@ -32,9 +33,8 @@ G_BEGIN_DECLS typedef struct _GstRealAudioDec GstRealAudioDec; typedef struct _GstRealAudioDecClass GstRealAudioDecClass; -GType -gst_real_audio_dec_get_type (void) - G_GNUC_CONST; +GType gst_real_audio_dec_get_type (void); G_END_DECLS + #endif /* __GST_REAL_AUDIO_DEC_H__ */ |