diff options
author | René Stadler <mail@renestadler.de> | 2006-12-08 17:06:43 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2006-12-08 17:06:43 +0000 |
commit | 2214d0b5bb17182caf42f1eae864cd401f8069e0 (patch) | |
tree | 3f0c07dae1196d333beb9237d1aafb0e733ba858 /gst | |
parent | 6a016876c8b44462da63f10c169521c0a66aa72d (diff) |
gst/qtdemux/qtdemux.c: Fix caps for 24 bit raw PCM audio (2).
Original commit message from CVS:
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.
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 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"); |