diff options
author | Baptiste Coudurier | 2010-06-04 23:33:36 +0000 |
---|---|---|
committer | Baptiste Coudurier | 2010-06-04 23:33:36 +0000 |
commit | 3511242d22c24c0a6dae7f0503de788359f676cd (patch) | |
tree | c4ff3f0b57016056ffad7a9ffeee7991e1adddc1 /libavcodec/raw.c | |
parent | 414ba8e35fd2f3d62774659f1cf23444df56461a (diff) |
More mov rawvideo fourcc supported by the rawvideo decoder
Originally committed as revision 23481 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/raw.c')
-rw-r--r-- | libavcodec/raw.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/raw.c b/libavcodec/raw.c index 176b624888..4979160f00 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -114,6 +114,13 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = { { PIX_FMT_YUYV422, MKTAG('y', 'u', 'v', '2') }, { PIX_FMT_YUYV422, MKTAG('y', 'u', 'v', 's') }, { PIX_FMT_PAL8, MKTAG('W', 'R', 'A', 'W') }, + { PIX_FMT_RGB555LE,MKTAG('L', '5', '5', '5') }, + { PIX_FMT_RGB565LE,MKTAG('L', '5', '6', '5') }, + { PIX_FMT_RGB565BE,MKTAG('B', '5', '6', '5') }, + { PIX_FMT_BGR24, MKTAG('2', '4', 'B', 'G') }, + { PIX_FMT_BGRA, MKTAG('B', 'G', 'R', 'A') }, + { PIX_FMT_RGBA, MKTAG('R', 'G', 'B', 'A') }, + { PIX_FMT_ABGR, MKTAG('A', 'B', 'G', 'R') }, /* special */ { PIX_FMT_RGB565LE,MKTAG( 3 , 0 , 0 , 0 ) }, /* flipped RGB565LE */ |