diff options
author | Paul B Mahol <onemda@gmail.com> | 2015-07-03 12:15:47 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2015-07-24 03:44:58 +0000 |
commit | 052f64ecb2f1381e721920dd4f64fd8470c246b5 (patch) | |
tree | 582a456aa272cc3cd5f814e7743611e1964538eb /libswscale/utils.c | |
parent | f0489a35c034a2c898c917e66176dc7c5c420357 (diff) | |
download | ffmpeg-052f64ecb2f1381e721920dd4f64fd8470c246b5.tar.gz |
swscale: ayuv64le input support
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index 16f187a38f..7dfd43b98b 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -225,6 +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}, }; int sws_isSupportedInput(enum AVPixelFormat pix_fmt) |