mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-30 02:58:24 +00:00
gst/qtdemux/qtdemux.c: Fix parsing of newer stsd chunks again.
Original commit message from CVS: * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak): Fix parsing of newer stsd chunks again.
This commit is contained in:
parent
5b097ce855
commit
9a29ef60ec
3 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-04-10 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
|
||||
Fix parsing of newer stsd chunks again.
|
||||
|
||||
2006-04-10 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 1783855e983a5294434673694e8a57e44980b6f1
|
||||
Subproject commit a6710e67fd82147e32a18f1b63177583faffd498
|
|
@ -3159,10 +3159,12 @@ qtdemux_parse_trak (GstQTDemux * qtdemux, GNode * trak)
|
|||
offset = 52;
|
||||
if (version == 0x00010000) {
|
||||
stream->samples_per_packet = QTDEMUX_GUINT32_GET (stsd->data + offset);
|
||||
stream->samples_per_frame = stream->n_channels;
|
||||
stream->bytes_per_packet = QTDEMUX_GUINT32_GET (stsd->data + offset + 4);
|
||||
stream->bytes_per_frame = QTDEMUX_GUINT32_GET (stsd->data + offset + 8);
|
||||
stream->bytes_per_sample = QTDEMUX_GUINT32_GET (stsd->data + offset + 12);
|
||||
stream->samples_per_frame = (stream->bytes_per_frame /
|
||||
stream->bytes_per_packet) * stream->samples_per_packet;
|
||||
|
||||
|
||||
GST_LOG ("samples/packet: %d", stream->samples_per_packet);
|
||||
GST_LOG ("bytes/packet: %d", stream->bytes_per_packet);
|
||||
|
|
Loading…
Reference in a new issue