diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-05-09 23:04:06 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-05-09 23:04:06 +0000 |
commit | 658e7576fced59bfa6a45254c1c84e649a4f125f (patch) | |
tree | 614cf2062a1c5106f61785b7ef18520ad9d46b90 /libavcodec/raw.c | |
parent | 43451ec247b6e43116d0b324eb5f8eba43d79135 (diff) | |
download | ffmpeg-658e7576fced59bfa6a45254c1c84e649a4f125f.tar.gz |
Reorder nut specific codec tags and add a comment for marking them as
such.
Also put the [3][0][0][0] codec tag, mapped to rgb565le, in a special
section. It needs to be specified *after* the nut RGB[16] codec tag,
otherwise it will be used by default when encoding normal non-flipped
rgb565le, and will be decoded like a flipped format (see
rawdec.c:raw_init_decoder()).
Originally committed as revision 23075 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/raw.c')
-rw-r--r-- | libavcodec/raw.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavcodec/raw.c b/libavcodec/raw.c index 107414210d..06ae440819 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -64,11 +64,12 @@ const PixelFormatTag ff_raw_pixelFormatTags[] = { { PIX_FMT_UYVY422, MKTAG('V', 'D', 'T', 'Z') }, /* SoftLab-NSK VideoTizer */ { PIX_FMT_UYYVYY411, MKTAG('Y', '4', '1', '1') }, { PIX_FMT_GRAY8, MKTAG('G', 'R', 'E', 'Y') }, + + /* nut */ { PIX_FMT_RGB555LE, MKTAG('R', 'G', 'B', 15) }, { PIX_FMT_BGR555LE, MKTAG('B', 'G', 'R', 15) }, { PIX_FMT_RGB565LE, MKTAG('R', 'G', 'B', 16) }, { PIX_FMT_BGR565LE, MKTAG('B', 'G', 'R', 16) }, - { PIX_FMT_RGB565LE, MKTAG( 3 , 0 , 0 , 0) }, { PIX_FMT_RGB555BE, MKTAG(15 , 'B', 'G', 'R') }, { PIX_FMT_BGR555BE, MKTAG(15 , 'R', 'G', 'B') }, { PIX_FMT_RGB565BE, MKTAG(16 , 'B', 'G', 'R') }, @@ -88,6 +89,9 @@ const PixelFormatTag ff_raw_pixelFormatTags[] = { { PIX_FMT_YUYV422, MKTAG('y', 'u', 'v', 's') }, { PIX_FMT_PAL8, MKTAG('W', 'R', 'A', 'W') }, + /* special */ + { PIX_FMT_RGB565LE,MKTAG( 3 , 0 , 0 , 0 ) }, /* flipped RGB565LE */ + { PIX_FMT_NONE, 0 }, }; |