diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2005-06-08 11:18:35 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2005-06-08 11:18:35 +0000 |
commit | 580bf5d5abefecf8da1228761c1311ed266ab05f (patch) | |
tree | 48de98c5f2f3b260b9da531de096f02f6cc4a28a /gst | |
parent | c23bd7e418e9cbcdb186657caac33e1a57c05f4a (diff) | |
download | gst-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')
-rw-r--r-- | gst/qtdemux/qtdemux.c | 2 |
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 */ |