summaryrefslogtreecommitdiffstats
path: root/ext/flac
diff options
context:
space:
mode:
authorMaciej Katafiasz <mathrick@mathrick.org>2006-05-06 00:14:09 +0000
committerMaciej Katafiasz <mathrick@mathrick.org>2006-05-06 00:14:09 +0000
commitbe7d42b5489c1062f2200e7f70677d2327ce8f12 (patch)
tree867277bba9213ed1803dd917a2df039d1b62daff /ext/flac
parent59bc24d7388f546acfef09dc62868a6e984d5e18 (diff)
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/flac')
-rw-r--r--ext/flac/gstflacdec.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/flac/gstflacdec.c b/ext/flac/gstflacdec.c
index 946d9b38..61ebb1fa 100644
--- a/ext/flac/gstflacdec.c
+++ b/ext/flac/gstflacdec.c
@@ -104,7 +104,7 @@ static void gst_flac_dec_metadata_callback (const FLAC__SeekableStreamDecoder *
static void gst_flac_dec_error_callback (const FLAC__SeekableStreamDecoder *
decoder, FLAC__StreamDecoderErrorStatus status, void *client_data);
-GST_BOILERPLATE (GstFlacDec, gst_flac_dec, GstElement, GST_TYPE_ELEMENT)
+GST_BOILERPLATE (GstFlacDec, gst_flac_dec, GstElement, GST_TYPE_ELEMENT);
#define GST_FLAC_DEC_SRC_CAPS \
"audio/x-raw-int, " \
"endianness = (int) " G_STRINGIFY (G_BYTE_ORDER) ", " \
@@ -113,7 +113,8 @@ GST_BOILERPLATE (GstFlacDec, gst_flac_dec, GstElement, GST_TYPE_ELEMENT)
"depth = (int) { 8, 12, 16, 20, 24, 32 }, " \
"rate = (int) [ 8000, 96000 ], " \
"channels = (int) [ 1, 8 ]"
- static void gst_flac_dec_base_init (gpointer g_class)
+static void
+gst_flac_dec_base_init (gpointer g_class)
{
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
GstCaps *raw_caps, *flac_caps;