diff options
author | Maciej Katafiasz <mathrick@mathrick.org> | 2006-05-06 00:15:59 +0000 |
---|---|---|
committer | Maciej Katafiasz <mathrick@mathrick.org> | 2006-05-06 00:15:59 +0000 |
commit | 9c90508cc1920d85d2b67b4f6ea46eff1ca088f2 (patch) | |
tree | 8a73a0dd14597b8b9ca755827e3634814766fb3d /ext/xine/xineaudiodec.c | |
parent | ab273cf9865eb03aec33024126c63aa59894e756 (diff) | |
download | gst-plugins-bad-9c90508cc1920d85d2b67b4f6ea46eff1ca088f2.tar.gz gst-plugins-bad-9c90508cc1920d85d2b67b4f6ea46eff1ca088f2.tar.bz2 gst-plugins-bad-9c90508cc1920d85d2b67b4f6ea46eff1ca088f2.zip |
Add semicolons after GST_BOILERPLATE[_FULL] so that indent doesn't mess up following lines.
Original commit message from CVS:
Add semicolons after GST_BOILERPLATE[_FULL] so that indent doesn't mess up following lines.
Diffstat (limited to 'ext/xine/xineaudiodec.c')
-rw-r--r-- | ext/xine/xineaudiodec.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/xine/xineaudiodec.c b/ext/xine/xineaudiodec.c index 77200e02..b001c83e 100644 --- a/ext/xine/xineaudiodec.c +++ b/ext/xine/xineaudiodec.c @@ -230,16 +230,16 @@ _gst_xine_audio_dec_create_audio_driver (GstXine * xine) /** GstXineAudioDec ***********************************************************/ -GST_BOILERPLATE (GstXineAudioDec, gst_xine_audio_dec, GstXine, GST_TYPE_XINE) +GST_BOILERPLATE (GstXineAudioDec, gst_xine_audio_dec, GstXine, GST_TYPE_XINE); - static void gst_xine_audio_dec_chain (GstPad * pad, GstData * in); - static GstStateChangeReturn - gst_xine_audio_dec_change_state (GstElement * element, +static void gst_xine_audio_dec_chain (GstPad * pad, GstData * in); +static GstStateChangeReturn +gst_xine_audio_dec_change_state (GstElement * element, GstStateChange transition); /* this function handles the link with other plug-ins */ - static GstPadLinkReturn - gst_xine_audio_dec_sink_link (GstPad * pad, const GstCaps * caps) +static GstPadLinkReturn +gst_xine_audio_dec_sink_link (GstPad * pad, const GstCaps * caps) { guint temp; GstStructure *structure; |