[SCM] libav/experimental: fix demuxing of CDR-Dinner_LAN_800k.mp4
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 15:47:11 UTC 2013
The following commit has been merged in the experimental branch:
commit 99487f42b1ad20dd2638114433c3cb029048189d
Author: Baptiste Coudurier <baptiste.coudurier at gmail.com>
Date: Fri Mar 24 16:52:56 2006 +0000
fix demuxing of CDR-Dinner_LAN_800k.mp4
Originally committed as revision 5211 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 71bfbff..3b34fd6 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -946,12 +946,18 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
(format >> 0) & 0xff, (format >> 8) & 0xff, (format >> 16) & 0xff, (format >> 24) & 0xff,
st->codec->codec_type);
st->codec->codec_tag = format;
- /* codec_type is set earlier by read_hdlr */
- if(st->codec->codec_type==CODEC_TYPE_VIDEO) {
- /* for MPEG4: set codec type by looking for it */
+ id = codec_get_id(mov_audio_tags, format);
+ if (id > 0) {
+ st->codec->codec_type = CODEC_TYPE_AUDIO;
+ } else if (format != MKTAG('m', 'p', '4', 's')) { /* skip old asf mpeg4 tag */
id = codec_get_id(mov_video_tags, format);
- if(id <= 0)
+ if (id <= 0)
id = codec_get_id(codec_bmp_tags, format);
+ if (id > 0)
+ st->codec->codec_type = CODEC_TYPE_VIDEO;
+ }
+
+ if(st->codec->codec_type==CODEC_TYPE_VIDEO) {
st->codec->codec_id = id;
get_be16(pb); /* version */
get_be16(pb); /* revision level */
@@ -1058,7 +1064,7 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
} else if(st->codec->codec_type==CODEC_TYPE_AUDIO) {
uint16_t version = get_be16(pb);
- st->codec->codec_id = codec_get_id(mov_audio_tags, format);
+ st->codec->codec_id = id;
get_be16(pb); /* revision level */
get_be32(pb); /* vendor */
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list