diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-12-10 17:48:16 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-01-07 11:43:20 +0000 |
commit | 2a89081cadff62b8a62a54a49c375a633115d1a1 (patch) | |
tree | 3477e84d1ddc65e2af8c1cc3d0d7338c96c8f6b5 /libavformat/isom.c | |
parent | 6cff56f0baba2f2afce5169208505349a788337e (diff) | |
download | ffmpeg-2a89081cadff62b8a62a54a49c375a633115d1a1.tar.gz |
Add EVRCA and SMV codec id
Demuxing files should be possible even if there are
no decoding support in lavc (yet).
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat/isom.c')
-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 3b609db00a..3f419a83dd 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -294,6 +294,8 @@ const AVCodecTag ff_codec_movaudio_tags[] = { { AV_CODEC_ID_QDMC, MKTAG('Q', 'D', 'M', 'C') }, { AV_CODEC_ID_SPEEX, MKTAG('s', 'p', 'e', 'x') }, /* Flash Media Server */ { AV_CODEC_ID_WMAV2, MKTAG('W', 'M', 'A', '2') }, + { AV_CODEC_ID_EVRC, MKTAG('s', 'e', 'v', 'c') }, /* 3GPP2 */ + { AV_CODEC_ID_SMV, MKTAG('s', 's', 'm', 'v') }, /* 3GPP2 */ { AV_CODEC_ID_NONE, 0 }, }; |