diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-12-08 11:53:54 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-07-02 09:35:41 +0200 |
commit | e78e5b735fd559bc7aa3f5a01e9c8d37dc2ec6d8 (patch) | |
tree | baa5e3b3f35f307390edad3bf1ae380d6be1f8ca /libswscale/utils.c | |
parent | b7c5f885233a7b8692140c920d9f43220dc830d9 (diff) | |
download | ffmpeg-e78e5b735fd559bc7aa3f5a01e9c8d37dc2ec6d8.tar.gz |
swscale: add P010 input support
Signed-off-by: Anton Khirnov <anton@khirnov.net>
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 ee309bc18c..129643a526 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -185,6 +185,8 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = { [AV_PIX_FMT_GBRAP16BE] = { 1, 0 }, [AV_PIX_FMT_XYZ12BE] = { 0, 0, 1 }, [AV_PIX_FMT_XYZ12LE] = { 0, 0, 1 }, + [AV_PIX_FMT_P010LE] = { 1, 0 }, + [AV_PIX_FMT_P010BE] = { 1, 0 }, }; int sws_isSupportedInput(enum AVPixelFormat pix_fmt) |