summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2009-06-13 00:50:57 +0000
committerDavid Conrad <lessen42@gmail.com>2009-06-13 00:50:57 +0000
commit86b61d4241cd075f84f99981cfafb973e0d53cdb (patch)
tree7741b2fb12f8296f5acea6d9f2e0d323a91af82a /libavformat/mov.c
parent761cb871737b46efc887276bde3334c32d3edd7b (diff)
Also accept TS as a prefix for wav twoccs (used by Flip4Mac) instead of
adding entries to codec_movaudio_tags. This ensures ADPCM_IMA_WAV uses the standard ms prefix when muxing to mov rather than TS. Originally committed as revision 19177 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index e6f60d40c3..af94394516 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -792,7 +792,7 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
st->codec->codec_tag = format;
id = codec_get_id(codec_movaudio_tags, format);
- if (id<=0 && (format&0xFFFF) == 'm'+('s'<<8))
+ if (id<=0 && ((format&0xFFFF) == 'm'+('s'<<8) || (format&0xFFFF) == 'T'+('S'<<8)))
id = codec_get_id(codec_wav_tags, bswap_32(format)&0xFFFF);
if (st->codec->codec_type != CODEC_TYPE_VIDEO && id > 0) {