diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-06-13 12:17:44 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-06-26 10:18:10 +0200 |
commit | 8fb92ea7e2a60c7f428136eb0d3d80810c1c74fc (patch) | |
tree | 95d27533c19d342285846002d0db80ef2a27dea2 /libavformat | |
parent | 074fdf4d12b0c87ebef0cd0f196aa3297b60e96d (diff) | |
download | ffmpeg-8fb92ea7e2a60c7f428136eb0d3d80810c1c74fc.tar.gz |
avcodec: add YUY2 Lossless Codec decoder
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/riff.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index f35fc7d686..913b42dae9 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -424,6 +424,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_M101, MKTAG('M', '1', '0', '1') }, { AV_CODEC_ID_M101, MKTAG('M', '1', '0', '2') }, { AV_CODEC_ID_MAGICYUV, MKTAG('M', 'A', 'G', 'Y') }, + { AV_CODEC_ID_YLC, MKTAG('Y', 'L', 'C', '0') }, { AV_CODEC_ID_NONE, 0 } }; |