# HG changeset patch # User darkshikari # Date 1244852199 0 # Node ID 73338486a311b0b1d3272c2073a06909c7503f37 # Parent e1d0e133afbaaf59662c39de2080d515396f892b Add "0x11005354" as a fourcc for MOV audio; fixes audio detection in a problematic MOV file. The audio is actually adpcm_ima_wav. diff -r e1d0e133afba -r 73338486a311 isom.c --- a/isom.c Fri Jun 12 19:49:46 2009 +0000 +++ b/isom.c Sat Jun 13 00:16:39 2009 +0000 @@ -190,6 +190,7 @@ { CODEC_ID_PCM_ALAW, MKTAG('a', 'l', 'a', 'w') }, /* */ { CODEC_ID_ADPCM_IMA_QT, MKTAG('i', 'm', 'a', '4') }, /* IMA-4 ADPCM */ + { CODEC_ID_ADPCM_IMA_WAV, MKTAG('T', 'S', 0x00, 0x11) }, { CODEC_ID_MACE3, MKTAG('M', 'A', 'C', '3') }, /* Macintosh Audio Compression and Expansion 3:1 */ { CODEC_ID_MACE6, MKTAG('M', 'A', 'C', '6') }, /* Macintosh Audio Compression and Expansion 6:1 */