summaryrefslogtreecommitdiffstats
path: root/gst/qtdemux/qtdemux.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2005-06-08 11:18:35 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2005-06-08 11:18:35 +0000
commit580bf5d5abefecf8da1228761c1311ed266ab05f (patch)
tree48de98c5f2f3b260b9da531de096f02f6cc4a28a /gst/qtdemux/qtdemux.c
parentc23bd7e418e9cbcdb186657caac33e1a57c05f4a (diff)
downloadgst-plugins-bad-580bf5d5abefecf8da1228761c1311ed266ab05f.tar.gz
gst-plugins-bad-580bf5d5abefecf8da1228761c1311ed266ab05f.tar.bz2
gst-plugins-bad-580bf5d5abefecf8da1228761c1311ed266ab05f.zip
gst/qtdemux/qtdemux.c: Fix distortion in 8-bit audio tracks (#306680).
Original commit message from CVS: * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps): Fix distortion in 8-bit audio tracks (#306680).
Diffstat (limited to 'gst/qtdemux/qtdemux.c')
-rw-r--r--gst/qtdemux/qtdemux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c
index c8d00c59..e78bcb19 100644
--- a/gst/qtdemux/qtdemux.c
+++ b/gst/qtdemux/qtdemux.c
@@ -2877,7 +2877,7 @@ qtdemux_audio_caps (GstQTDemux * qtdemux, guint32 fourcc, const guint8 * data,
_codec ("Raw 8-bit PCM audio");
/* FIXME */
return gst_caps_from_string ("audio/x-raw-int, "
- "width = (int) 8, " "depth = (int) 8, " "signed = (boolean) true");
+ "width = (int) 8, " "depth = (int) 8, " "signed = (boolean) false");
case GST_MAKE_FOURCC ('t', 'w', 'o', 's'):
_codec ("Raw 16-bit PCM audio");
/* FIXME */