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:
authorTimo Rothenpieler <timo@rothenpieler.org>2016-08-29 18:44:42 +0300
committerTimo Rothenpieler <timo@rothenpieler.org>2016-08-31 14:19:46 +0300
commit99882d05a6635446d587ed51b095c627abc42587 (patch)
treee9086b3d567fb6b467622d8594a6cefabb55f57f /libswscale/utils.c
parent2625b955a31a94d5f433ba75e933d1acf4259f13 (diff)
swscale: add support for P010LE/BE output
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r--libswscale/utils.c4
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)