diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-09-04 01:56:02 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-09-04 01:57:50 +0200 |
commit | c62cb9bf5a50df416532afd8d5f79ebade174ac7 (patch) | |
tree | 6be1a2b14b3b5cb53bd43b7f1e730b80bed06d04 /libavformat | |
parent | d2e74315e5be4da3e3b384fb7453296140fafd9b (diff) | |
download | ffmpeg-c62cb9bf5a50df416532afd8d5f79ebade174ac7.tar.gz |
avcodec/utvideodec: add support for ULY4 and ULH4
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/riff.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index 5cef7a9799..72ad5d977a 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -388,9 +388,11 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_UTVIDEO, MKTAG('U', 'L', 'R', 'G') }, { AV_CODEC_ID_UTVIDEO, MKTAG('U', 'L', 'Y', '0') }, { AV_CODEC_ID_UTVIDEO, MKTAG('U', 'L', 'Y', '2') }, + { AV_CODEC_ID_UTVIDEO, MKTAG('U', 'L', 'Y', '4') }, /* Ut Video version 13.0.1 BT.709 codecs */ { AV_CODEC_ID_UTVIDEO, MKTAG('U', 'L', 'H', '0') }, { AV_CODEC_ID_UTVIDEO, MKTAG('U', 'L', 'H', '2') }, + { AV_CODEC_ID_UTVIDEO, MKTAG('U', 'L', 'H', '4') }, { AV_CODEC_ID_UTVIDEO, MKTAG('U', 'Q', 'Y', '2') }, { AV_CODEC_ID_UTVIDEO, MKTAG('U', 'Q', 'R', 'A') }, { AV_CODEC_ID_UTVIDEO, MKTAG('U', 'Q', 'R', 'G') }, |