diff options
author | Philip Langdale <philipl@overt.org> | 2016-11-20 14:32:49 -0800 |
---|---|---|
committer | Philip Langdale <philipl@overt.org> | 2017-02-01 14:29:11 -0800 |
commit | 4c2176d45be1a7fbbcdf1f3d01b1ba2bab6f8d0f (patch) | |
tree | 7df69dad2cd3426b2f326a1c4b3e8a34b4d72495 /libswscale/utils.c | |
parent | 15d7e31dcb68f30ebd725c495a191d5917a3b602 (diff) | |
download | ffmpeg-4c2176d45be1a7fbbcdf1f3d01b1ba2bab6f8d0f.tar.gz |
swscale: add P016 input support
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index 60a8e55ba5..caae63ac2b 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -252,6 +252,8 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = { [AV_PIX_FMT_AYUV64LE] = { 1, 1}, [AV_PIX_FMT_P010LE] = { 1, 1 }, [AV_PIX_FMT_P010BE] = { 1, 1 }, + [AV_PIX_FMT_P016LE] = { 1, 0 }, + [AV_PIX_FMT_P016BE] = { 1, 0 }, }; int sws_isSupportedInput(enum AVPixelFormat pix_fmt) |