diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-08-26 11:31:41 +0200 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-09-02 22:22:02 +0200 |
commit | c45fcf30cfab687004ed1cdc06ebaa21f4262a0b (patch) | |
tree | b7ba394385830ffc6cb4fe9ad070dadb4f35699f /libavformat/isom.c | |
parent | 0c7707610f46a28b65eff935500c78c9781f8f4f (diff) | |
download | ffmpeg-c45fcf30cfab687004ed1cdc06ebaa21f4262a0b.tar.gz |
DXV decoder
Support all DXDI and DXD3 normal quality videos.
Diffstat (limited to 'libavformat/isom.c')
-rw-r--r-- | libavformat/isom.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index 0582cfdac4..d421a1a4bd 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -254,6 +254,9 @@ const AVCodecTag ff_codec_movvideo_tags[] = { { AV_CODEC_ID_HAP, MKTAG('H', 'a', 'p', '5') }, { AV_CODEC_ID_HAP, MKTAG('H', 'a', 'p', 'Y') }, + { AV_CODEC_ID_DXV, MKTAG('D', 'X', 'D', '3') }, + { AV_CODEC_ID_DXV, MKTAG('D', 'X', 'D', 'I') }, + { AV_CODEC_ID_NONE, 0 }, }; |