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:
authorMichael Niedermayer <michael@niedermayer.cc>2016-02-08 14:38:42 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-02-09 21:19:43 +0300
commit331a33d74a0e8a543f511081fa9dd9a880e784f8 (patch)
tree409821ed9fd29fb583bac576cc15f67166e35687 /libavcodec/raw.c
parent43a69655699bb115df6c760e14dbe319ac38e0cd (diff)
nut: Add PAL8 support
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
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 4f7417ae10..bfa2537b5a 100644
--- a/libavcodec/raw.c
+++ b/libavcodec/raw.c
@@ -154,6 +154,7 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = {
{ AV_PIX_FMT_YUVA422P, MKTAG('Y', '4', 10 , 8 ) },
{ AV_PIX_FMT_YUVA444P, MKTAG('Y', '4', 0 , 8 ) },
{ AV_PIX_FMT_YA8, MKTAG('Y', '2', 0 , 8 ) },
+ { AV_PIX_FMT_PAL8, MKTAG('P', 'A', 'L', 8 ) },
{ AV_PIX_FMT_YUVA420P9LE, MKTAG('Y', '4', 11 , 9 ) },
{ AV_PIX_FMT_YUVA420P9BE, MKTAG( 9 , 11 , '4', 'Y') },