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/swscale_internal.h | |
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/swscale_internal.h')
-rw-r--r-- | libswscale/swscale_internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index 2299aa5c87..737c179bf7 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -790,6 +790,8 @@ static av_always_inline int isALPHA(enum AVPixelFormat pix_fmt) || (x)==AV_PIX_FMT_YA8 \ || (x)==AV_PIX_FMT_YA16LE \ || (x)==AV_PIX_FMT_YA16BE \ + || (x)==AV_PIX_FMT_AYUV64LE \ + || (x)==AV_PIX_FMT_AYUV64BE \ || isRGBinInt(x) \ || isBGRinInt(x) \ ) |