diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2015-10-03 18:59:18 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-10-05 12:44:05 +0200 |
commit | 3a6a432b58fab042cfd90bf4a77e30bfe7de6a07 (patch) | |
tree | 003437b00db91212fed5fae9b43440dd0187ad32 /libavformat/isom.c | |
parent | 1f4ff53aea7c5090f31cd1323d95f7c407c9b2bb (diff) | |
download | ffmpeg-3a6a432b58fab042cfd90bf4a77e30bfe7de6a07.tar.gz |
isom: add support for DNxHR codec family
This is actually similar to DNxHD.
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
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 eff04ff8a2..e55738bd85 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -240,6 +240,7 @@ const AVCodecTag ff_codec_movvideo_tags[] = { { AV_CODEC_ID_DIRAC, MKTAG('d', 'r', 'a', 'c') }, { AV_CODEC_ID_DNXHD, MKTAG('A', 'V', 'd', 'n') }, /* AVID DNxHD */ + { AV_CODEC_ID_DNXHD, MKTAG('A', 'V', 'd', 'h') }, /* AVID DNxHR */ { AV_CODEC_ID_H263, MKTAG('H', '2', '6', '3') }, { AV_CODEC_ID_MSMPEG4V3, MKTAG('3', 'I', 'V', 'D') }, /* 3ivx DivX Doctor */ { AV_CODEC_ID_RAWVIDEO, MKTAG('A', 'V', '1', 'x') }, /* AVID 1:1x */ |