Skip to content
Snippets Groups Projects
Commit 3511242d authored by Baptiste Coudurier's avatar Baptiste Coudurier
Browse files

More mov rawvideo fourcc supported by the rawvideo decoder

Originally committed as revision 23481 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 414ba8e3
No related branches found
No related tags found
No related merge requests found
...@@ -114,6 +114,13 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = { ...@@ -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', '2') },
{ PIX_FMT_YUYV422, MKTAG('y', 'u', 'v', 's') }, { PIX_FMT_YUYV422, MKTAG('y', 'u', 'v', 's') },
{ PIX_FMT_PAL8, MKTAG('W', 'R', 'A', 'W') }, { 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 */ /* special */
{ PIX_FMT_RGB565LE,MKTAG( 3 , 0 , 0 , 0 ) }, /* flipped RGB565LE */ { PIX_FMT_RGB565LE,MKTAG( 3 , 0 , 0 , 0 ) }, /* flipped RGB565LE */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment