1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-01 08:49:59 +02:00

Add missing rawvideo pixel formats to codec tags mappings for nut.

Originally committed as revision 23146 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini 2010-05-16 17:08:47 +00:00
parent 73762de18e
commit ed395eb421

View File

@ -82,6 +82,21 @@ const PixelFormatTag ff_raw_pixelFormatTags[] = {
{ PIX_FMT_ARGB, MKTAG('A', 'R', 'G', 'B') },
{ PIX_FMT_RGB24, MKTAG('R', 'G', 'B', 24 ) },
{ PIX_FMT_BGR24, MKTAG('B', 'G', 'R', 24 ) },
{ PIX_FMT_YUV411P, MKTAG('4', '1', '1', 'P') },
{ PIX_FMT_YUV422P, MKTAG('4', '2', '2', 'P') },
{ PIX_FMT_YUVJ422P, MKTAG('4', '2', '2', 'P') },
{ PIX_FMT_YUV440P, MKTAG('4', '4', '0', 'P') },
{ PIX_FMT_YUVJ440P, MKTAG('4', '4', '0', 'P') },
{ PIX_FMT_YUV444P, MKTAG('4', '4', '4', 'P') },
{ PIX_FMT_YUVJ444P, MKTAG('4', '4', '4', 'P') },
{ PIX_FMT_MONOWHITE,MKTAG('B', '1', 'W', '0') },
{ PIX_FMT_MONOBLACK,MKTAG('B', 'O', 'W', '1') },
{ PIX_FMT_BGR8, MKTAG('B', 'G', 'R', 8 ) },
{ PIX_FMT_RGB8, MKTAG('R', 'G', 'B', 8 ) },
{ PIX_FMT_BGR4, MKTAG('B', 'G', 'R', 4 ) },
{ PIX_FMT_RGB4, MKTAG('R', 'G', 'B', 4 ) },
{ PIX_FMT_RGB48LE, MKTAG('R', 'G', 'B', 48 ) },
{ PIX_FMT_RGB48BE, MKTAG( 48, 'R', 'G', 'B') },
/* quicktime */
{ PIX_FMT_UYVY422, MKTAG('2', 'v', 'u', 'y') },