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:
authorPiotr Bandurski <ami_stuff@o2.pl>2016-01-14 20:38:08 +0300
committerPaul B Mahol <onemda@gmail.com>2016-01-15 21:14:51 +0300
commit23ac355487e7c871f907b5c57809948805d17ca2 (patch)
tree28a106573da79d50d7db22a7f29313b8237090e5 /libavcodec/raw.c
parent7d76294ce006692d341beedada7a5cde017f1697 (diff)
avformat/riff: add YUYV FourCC (Drastic YUYV)
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 62ad338b9f..cda70ac52d 100644
--- a/libavcodec/raw.c
+++ b/libavcodec/raw.c
@@ -53,6 +53,7 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = {
{ AV_PIX_FMT_YUYV422, MKTAG('V', '4', '2', '2') },
{ AV_PIX_FMT_YUYV422, MKTAG('V', 'Y', 'U', 'Y') },
{ AV_PIX_FMT_YUYV422, MKTAG('Y', 'U', 'N', 'V') },
+ { AV_PIX_FMT_YUYV422, MKTAG('Y', 'U', 'Y', 'V') },
{ AV_PIX_FMT_YVYU422, MKTAG('Y', 'V', 'Y', 'U') }, /* Philips */
{ AV_PIX_FMT_UYVY422, MKTAG('U', 'Y', 'V', 'Y') },
{ AV_PIX_FMT_UYVY422, MKTAG('H', 'D', 'Y', 'C') },