summaryrefslogtreecommitdiff
path: root/libswscale/utils.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-10-09 19:33:30 +0200
committerAnton Khirnov <anton@khirnov.net>2011-10-12 08:27:30 +0200
commit04de1569cd6aa23c49ba60f96f544cbe20f3f3f1 (patch)
tree504369e842d6e24d18acc8da27e863c76c0de12b /libswscale/utils.c
parent5f3fb599536dd5bceb1d45cb73cd0b0ce3e5560c (diff)
sws: support yuv444p9/10 output.
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r--libswscale/utils.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c
index 409657462e..cfe4be9e20 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -131,10 +131,10 @@ const static FormatEntry format_entries[PIX_FMT_NB] = {
[PIX_FMT_YUV420P10LE] = { 1 , 1 },
[PIX_FMT_YUV422P10BE] = { 1 , 1 },
[PIX_FMT_YUV422P10LE] = { 1 , 1 },
- [PIX_FMT_YUV444P9BE] = { 1 , 0 },
- [PIX_FMT_YUV444P9LE] = { 1 , 0 },
- [PIX_FMT_YUV444P10BE] = { 1 , 0 },
- [PIX_FMT_YUV444P10LE] = { 1 , 0 },
+ [PIX_FMT_YUV444P9BE] = { 1 , 1 },
+ [PIX_FMT_YUV444P9LE] = { 1 , 1 },
+ [PIX_FMT_YUV444P10BE] = { 1 , 1 },
+ [PIX_FMT_YUV444P10LE] = { 1 , 1 },
};
int sws_isSupportedInput(enum PixelFormat pix_fmt)