diff options
author | Baptiste Coudurier | 2010-06-04 23:31:46 +0000 |
---|---|---|
committer | Baptiste Coudurier | 2010-06-04 23:31:46 +0000 |
commit | 414ba8e35fd2f3d62774659f1cf23444df56461a (patch) | |
tree | a6237db719c9c1dd2e64825e616b63e9f9993c9b /libavformat/isom.c | |
parent | a7cc89e2f6efd46c42e0ecedba52d1c55332550d (diff) |
More mov rawvideo fourcc
Originally committed as revision 23480 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/isom.c')
-rw-r--r-- | libavformat/isom.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index c02ab33fea..fd0d4561bf 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -67,6 +67,14 @@ const AVCodecTag codec_movvideo_tags[] = { { CODEC_ID_RAWVIDEO, MKTAG('2', 'v', 'u', 'y') }, /* UNCOMPRESSED 8BIT 4:2:2 */ { CODEC_ID_RAWVIDEO, MKTAG('y', 'u', 'v', 's') }, /* same as 2vuy but byte swapped */ + { CODEC_ID_RAWVIDEO, MKTAG('L', '5', '5', '5') }, + { CODEC_ID_RAWVIDEO, MKTAG('L', '5', '6', '5') }, + { CODEC_ID_RAWVIDEO, MKTAG('B', '5', '6', '5') }, + { CODEC_ID_RAWVIDEO, MKTAG('2', '4', 'B', 'G') }, + { CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R', 'A') }, + { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 'A') }, + { CODEC_ID_RAWVIDEO, MKTAG('A', 'B', 'G', 'R') }, + { CODEC_ID_R210, MKTAG('r', '2', '1', '0') }, /* UNCOMPRESSED 10BIT RGB */ { CODEC_ID_V210, MKTAG('v', '2', '1', '0') }, /* UNCOMPRESSED 10BIT 4:2:2 */ |