Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-01-06 03:59:08 +0400
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-01-06 03:59:08 +0400
commit09f25a9cb08ddf39dcb16898c36ed793006093fd (patch)
tree3fc44b5d482f6d41dba72890e0271817b13babc0 /libavcodec/raw.c
parentd185278c369e9150fe6b4cf730405753384bca93 (diff)
Allow decoding of uyvy422 CYUV with -vcodec rawvideo.
FourCC CYUV can be Creative YUV and uyvy422 rawvideo.
Diffstat (limited to 'libavcodec/raw.c')
-rw-r--r--libavcodec/raw.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/raw.c b/libavcodec/raw.c
index 42469fdf65..cfa650ee6b 100644
--- a/libavcodec/raw.c
+++ b/libavcodec/raw.c
@@ -63,6 +63,7 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = {
{ PIX_FMT_UYVY422, MKTAG('A', 'V', 'u', 'p') },
{ PIX_FMT_UYVY422, MKTAG('V', 'D', 'T', 'Z') }, /* SoftLab-NSK VideoTizer */
{ PIX_FMT_UYVY422, MKTAG('a', 'u', 'v', '2') },
+ { PIX_FMT_UYVY422, MKTAG('c', 'y', 'u', 'v') }, /* CYUV is also Creative YUV */
{ PIX_FMT_UYYVYY411, MKTAG('Y', '4', '1', '1') },
{ PIX_FMT_GRAY8, MKTAG('G', 'R', 'E', 'Y') },
{ PIX_FMT_NV12, MKTAG('N', 'V', '1', '2') },