diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2005-12-16 12:25:38 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2005-12-16 12:25:38 +0000 |
commit | 09a66d6dce83348e095fb5e22dd9c44a6a724cdc (patch) | |
tree | fd4930864d511ad346ffd1e72b7e765ad5c81ecb /ext | |
parent | b11584fe36fd150d82c868817df1332c0c51fb14 (diff) | |
download | gst-plugins-bad-09a66d6dce83348e095fb5e22dd9c44a6a724cdc.tar.gz gst-plugins-bad-09a66d6dce83348e095fb5e22dd9c44a6a724cdc.tar.bz2 gst-plugins-bad-09a66d6dce83348e095fb5e22dd9c44a6a724cdc.zip |
ext/wavpack/gstwavpackdec.c: Oops, remove trailing comma from caps string.
Original commit message from CVS:
* ext/wavpack/gstwavpackdec.c:
Oops, remove trailing comma from caps string.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/wavpack/gstwavpackdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/wavpack/gstwavpackdec.c b/ext/wavpack/gstwavpackdec.c index 1664b20f..f3f9d750 100644 --- a/ext/wavpack/gstwavpackdec.c +++ b/ext/wavpack/gstwavpackdec.c @@ -68,7 +68,7 @@ static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src", "audio/x-raw-float, " "width = (int) 32, " "channels = (int) { 1, 2 }, " - "rate = (int) [ 6000, 192000 ], " "endianness = (int) LITTLE_ENDIAN, ") + "rate = (int) [ 6000, 192000 ], " "endianness = (int) LITTLE_ENDIAN") ); static void gst_wavpack_dec_class_init (GstWavpackDecClass * klass); |