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:
authorPhilip Langdale <philipl@overt.org>2016-11-21 01:32:49 +0300
committerPhilip Langdale <philipl@overt.org>2017-02-02 01:29:11 +0300
commit4c2176d45be1a7fbbcdf1f3d01b1ba2bab6f8d0f (patch)
tree7df69dad2cd3426b2f326a1c4b3e8a34b4d72495 /libswscale/utils.c
parent15d7e31dcb68f30ebd725c495a191d5917a3b602 (diff)
swscale: add P016 input support
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r--libswscale/utils.c2
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)