diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-05-16 07:56:31 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-05-16 07:56:31 +0000 |
commit | 73762de18e87b4e8f50f503ba726d7fabd9b2179 (patch) | |
tree | ebf9371aba19c1e3a055c3bc989e79af1fc3af8b /libavformat/riff.c | |
parent | c75b3d2e8fdcd1742a139d6628234a15ff8b4ba4 (diff) | |
download | ffmpeg-73762de18e87b4e8f50f503ba726d7fabd9b2179.tar.gz |
Add NV12 and NV21 AVI tags.
Both are listed in fourcc.org.
Originally committed as revision 23145 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/riff.c')
-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 4355863c4b..4cbdd01b81 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -169,6 +169,8 @@ const AVCodecTag ff_codec_bmp_tags[] = { { CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', 'U', '9') }, { CODEC_ID_RAWVIDEO, MKTAG('V', 'D', 'T', 'Z') }, /* SoftLab-NSK VideoTizer */ { CODEC_ID_RAWVIDEO, MKTAG('Y', '4', '1', '1') }, + { CODEC_ID_RAWVIDEO, MKTAG('N', 'V', '1', '2') }, + { CODEC_ID_RAWVIDEO, MKTAG('N', 'V', '2', '1') }, { CODEC_ID_FRWU, MKTAG('F', 'R', 'W', 'U') }, { CODEC_ID_R210, MKTAG('r', '2', '1', '0') }, { CODEC_ID_V210, MKTAG('v', '2', '1', '0') }, |