diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/qtdemux/qtdemux.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2005-06-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net> + + * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps): + Fix distortion in 8-bit audio tracks (#306680). + 2005-06-07 David Schleef <ds@schleef.org> * sys/glsink/glimagesink.c: (gst_glimagesink_getcaps), 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 */ |