From 73762de18e87b4e8f50f503ba726d7fabd9b2179 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sun, 16 May 2010 07:56:31 +0000 Subject: Add NV12 and NV21 AVI tags. Both are listed in fourcc.org. Originally committed as revision 23145 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/raw.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/raw.c') diff --git a/libavcodec/raw.c b/libavcodec/raw.c index 06ae440819..b72dd25d05 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -64,6 +64,8 @@ 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') }, + { PIX_FMT_NV12, MKTAG('N', 'V', '1', '2') }, + { PIX_FMT_NV21, MKTAG('N', 'V', '2', '1') }, /* nut */ { PIX_FMT_RGB555LE, MKTAG('R', 'G', 'B', 15) }, -- cgit v1.2.3