diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-31 16:27:22 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-31 16:27:22 +0000 |
commit | beef9ba9e273f8b27d2abeb79d02214d8698e8ed (patch) | |
tree | a6e73eb51ab1e2ca8ce08c2e0c5abbf451c9c45f | |
parent | 19ef2ba57af6412d0cd19072b3721e7ae0136f68 (diff) | |
download | ffmpeg-beef9ba9e273f8b27d2abeb79d02214d8698e8ed.tar.gz |
add AVRn fourcc
Originally committed as revision 8572 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 f35a7a222f..ab6d6291e1 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -104,6 +104,7 @@ const AVCodecTag codec_bmp_tags[] = { { CODEC_ID_MJPEG, MKTAG('M', 'J', 'L', 'S') }, /* JPEG-LS custom FOURCC for avi - decoder */ { CODEC_ID_MJPEG, MKTAG('j', 'p', 'e', 'g') }, { CODEC_ID_MJPEG, MKTAG('I', 'J', 'P', 'G') }, + { CODEC_ID_MJPEG, MKTAG('A', 'V', 'R', 'n') }, { CODEC_ID_JPEGLS, MKTAG('M', 'J', 'L', 'S') }, /* JPEG-LS custom FOURCC for avi - encoder */ { CODEC_ID_HUFFYUV, MKTAG('H', 'F', 'Y', 'U') }, { CODEC_ID_FFVHUFF, MKTAG('F', 'F', 'V', 'H') }, |