From 3dc10d4742803d91d6c8b2dd45d730f865f7b1f2 Mon Sep 17 00:00:00 2001 From: Todd Kirby Date: Mon, 26 Jul 2004 16:39:01 +0000 Subject: [PATCH] Add UYVY support to libavcodec/raw.c patch by ("Todd.Kirby" ) Originally committed as revision 3346 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/raw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/raw.c b/libavcodec/raw.c index b6fe0534ef..a8a009bad1 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -47,7 +47,7 @@ const PixelFormatTag pixelFormatTags[] = { { PIX_FMT_YUV422, MKTAG('Y', '4', '2', '2') }, /* Packed formats */ - { PIX_FMT_YUV422, MKTAG('U', 'Y', 'V', 'Y') }, + { PIX_FMT_UYVY422, MKTAG('U', 'Y', 'V', 'Y') }, { PIX_FMT_GRAY8, MKTAG('G', 'R', 'E', 'Y') }, { -1, 0 },