diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2016-08-29 17:44:42 +0200 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2016-08-31 13:19:46 +0200 |
commit | 99882d05a6635446d587ed51b095c627abc42587 (patch) | |
tree | e9086b3d567fb6b467622d8594a6cefabb55f57f /libswscale/utils.c | |
parent | 2625b955a31a94d5f433ba75e933d1acf4259f13 (diff) | |
download | ffmpeg-99882d05a6635446d587ed51b095c627abc42587.tar.gz |
swscale: add support for P010LE/BE output
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index 576d8f0d5a..0aef672041 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -246,8 +246,8 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = { [AV_PIX_FMT_XYZ12BE] = { 1, 1, 1 }, [AV_PIX_FMT_XYZ12LE] = { 1, 1, 1 }, [AV_PIX_FMT_AYUV64LE] = { 1, 1}, - [AV_PIX_FMT_P010LE] = { 1, 0 }, - [AV_PIX_FMT_P010BE] = { 1, 0 }, + [AV_PIX_FMT_P010LE] = { 1, 1 }, + [AV_PIX_FMT_P010BE] = { 1, 1 }, }; int sws_isSupportedInput(enum AVPixelFormat pix_fmt) |