diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2009-06-12 01:09:49 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2009-06-12 01:09:49 +0000 |
commit | be43ae66517272dc2d9e7420df6931e622d9e4bc (patch) | |
tree | 9270717eeafe152a577c63a8da25dabfd5963d4e /libavformat/isom.c | |
parent | 1d4b1bf2f6a70dcfbe27cbfd4c2ba8b9eb3890b7 (diff) | |
download | ffmpeg-be43ae66517272dc2d9e7420df6931e622d9e4bc.tar.gz |
Add alternate fourcc for QCELP audio (qclq). Fixes a problematic MOV file.
Originally committed as revision 19159 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/isom.c')
-rw-r--r-- | libavformat/isom.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index 3b1235dd0a..309aabca3a 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -207,6 +207,7 @@ const AVCodecTag codec_movaudio_tags[] = { { CODEC_ID_ALAC, MKTAG('a', 'l', 'a', 'c') }, /* Apple Lossless */ { CODEC_ID_QCELP, MKTAG('Q','c','l','p') }, + { CODEC_ID_QCELP, MKTAG('Q','c','l','q') }, { CODEC_ID_QCELP, MKTAG('s','q','c','p') }, /* ISO Media fourcc */ { CODEC_ID_QDM2, MKTAG('Q', 'D', 'M', '2') }, /* QDM2 */ |