diff options
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | gst/qtdemux/qtdemux.c | 2 |
2 files changed, 11 insertions, 1 deletions
@@ -1,3 +1,13 @@ +2006-12-08 Wim Taymans <wim@fluendo.com> + + Patch by: René Stadler <mail at renestadler de> + + * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration), + (gst_qtdemux_handle_src_query), (qtdemux_parse_trak), + (qtdemux_audio_caps): + Fix caps for 24 bit raw PCM audio (2). + Fixes #383471. + 2006-12-07 Wim Taymans <wim@fluendo.com> * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration), diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index 88235be2..77493980 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -4486,7 +4486,7 @@ qtdemux_audio_caps (GstQTDemux * qtdemux, QtDemuxStream * stream, /* FIXME */ return gst_caps_from_string ("audio/x-raw-int, " "width = (int) 24, " - "depth = (int) 32, " + "depth = (int) 24, " "endianness = (int) BIG_ENDIAN, " "signed = (boolean) true"); case GST_MAKE_FOURCC ('i', 'n', '3', '2'): _codec ("Raw 32-bit PCM audio"); |