diff options
author | Todd Kirby <doubleshot@pacbell.net> | 2004-07-26 16:39:01 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-07-26 16:39:01 +0000 |
commit | 3dc10d4742803d91d6c8b2dd45d730f865f7b1f2 (patch) | |
tree | 2b12299392957f9828a8eb16084eeb772be85d15 /libavcodec | |
parent | c5c97a8d1329218181a51f3b990626b5bd55c3c6 (diff) | |
download | ffmpeg-3dc10d4742803d91d6c8b2dd45d730f865f7b1f2.tar.gz |
Add UYVY support to libavcodec/raw.c patch by ("Todd.Kirby" <doubleshot at pacbell dot net>)
Originally committed as revision 3346 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/raw.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 }, |