diff options
author | Paul B Mahol <onemda@gmail.com> | 2015-07-03 16:13:11 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2015-07-24 03:45:48 +0000 |
commit | 3cb8eee6f7bff275081e640b7529f90c52fb3224 (patch) | |
tree | 61df870889c6a11b2dcfed2f8e368919b7f2d33c /libswscale/utils.c | |
parent | 052f64ecb2f1381e721920dd4f64fd8470c246b5 (diff) | |
download | ffmpeg-3cb8eee6f7bff275081e640b7529f90c52fb3224.tar.gz |
swscale: ayuv64le output support
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index 7dfd43b98b..565c9043ff 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -225,7 +225,7 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = { [AV_PIX_FMT_BAYER_GRBG16BE] = { 1, 0 }, [AV_PIX_FMT_XYZ12BE] = { 1, 1, 1 }, [AV_PIX_FMT_XYZ12LE] = { 1, 1, 1 }, - [AV_PIX_FMT_AYUV64LE] = { 1, 0}, + [AV_PIX_FMT_AYUV64LE] = { 1, 1}, }; int sws_isSupportedInput(enum AVPixelFormat pix_fmt) |