Commit ae23b269 authored by Reimar Döffinger's avatar Reimar Döffinger

Enable conversions to YUV444P9/YUV444P10, they seem to work fine.

Signed-off-by: 's avatarReimar Döffinger <Reimar.Doeffinger@gmx.de>
parent 85ea5c6e
......@@ -138,10 +138,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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment