diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-08-30 10:33:53 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-08-30 10:46:51 +0200 |
commit | 75a225217ce4b0bdccce2af1d614002866f59a17 (patch) | |
tree | 59fdb41444f72d336af1898ea8138044fc1e53d4 | |
parent | 66624cbb80e3895d68b5e2d897a94b11dc666c0e (diff) | |
download | ffmpeg-75a225217ce4b0bdccce2af1d614002866f59a17.tar.gz |
Support Nellymoser in isom.
-rw-r--r-- | libavformat/isom.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index 3894c228e0..7d5d6248c1 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -261,6 +261,8 @@ const AVCodecTag codec_movaudio_tags[] = { { CODEC_ID_GSM, MKTAG('a', 'g', 's', 'm') }, { CODEC_ID_ALAC, MKTAG('a', 'l', 'a', 'c') }, /* Apple Lossless */ + { CODEC_ID_NELLYMOSER, MKTAG('n', 'm', 'o', 's') }, + { 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 */ |