diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-05-16 17:08:47 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-05-16 17:08:47 +0000 |
commit | ed395eb421903a4a963dcff814adbc68bbffd6b9 (patch) | |
tree | 505ee67310239bd9165fa9619695eda99482afd9 /libavcodec/raw.c | |
parent | 73762de18e87b4e8f50f503ba726d7fabd9b2179 (diff) | |
download | ffmpeg-ed395eb421903a4a963dcff814adbc68bbffd6b9.tar.gz |
Add missing rawvideo pixel formats to codec tags mappings for nut.
Originally committed as revision 23146 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/raw.c')
-rw-r--r-- | libavcodec/raw.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libavcodec/raw.c b/libavcodec/raw.c index b72dd25d05..68502641d7 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -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') }, |