gst/qtdemux/qtdemux.c: Fix parsing of mp4a version 0 atoms. Fixes #465774.

Original commit message from CVS:
* gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
Fix parsing of mp4a version 0 atoms. Fixes #465774.
This commit is contained in:
Wim Taymans 2007-08-12 14:35:41 +00:00
parent a1c029bab5
commit 39321cf1f7
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2007-08-12 Wim Taymans <wim.taymans@gmail.com>
* gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
Fix parsing of mp4a version 0 atoms. Fixes #465774.
2007-08-10 Stefan Kost <ensonic@users.sf.net>
* gst/rtp/gstrtpilbcdepay.c:

View file

@ -2144,6 +2144,8 @@ qtdemux_parse_node (GstQTDemux * qtdemux, GNode * node, guint8 * buffer,
/* parse any esds descriptors */
switch (version) {
case 0x00000000:
offset = 0x24;
break;
case 0x00010000:
offset = 0x34;
break;