diff options
author | ami_stuff <ami_stuff@o2.pl> | 2011-07-06 10:05:08 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-07-06 10:05:08 +0200 |
commit | 3950376b8baa6292f2f195dae43d7b00bcbf53e7 (patch) | |
tree | f9b76225bef33d3ec7e3612f14ca6cc50b1d3d95 /libavformat | |
parent | 923cff747a0f31b0e120e1899a4b807fb8137484 (diff) | |
download | ffmpeg-3950376b8baa6292f2f195dae43d7b00bcbf53e7.tar.gz |
Support fourcc YV24.
Fixes ticket #306.
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 060eaa0728..2e00ae8963 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -173,6 +173,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { CODEC_ID_RAWVIDEO, MKTAG('P', '4', '2', '2') }, { CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', '1', '2') }, { CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', '1', '6') }, + { CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', '2', '4') }, { CODEC_ID_RAWVIDEO, MKTAG('U', 'Y', 'V', 'Y') }, { CODEC_ID_RAWVIDEO, MKTAG('V', 'Y', 'U', 'Y') }, { CODEC_ID_RAWVIDEO, MKTAG('I', 'Y', 'U', 'V') }, |