diff options
author | Janne Grunau <janne-libav@jannau.net> | 2013-04-26 14:47:50 +0200 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2013-05-06 21:48:14 +0200 |
commit | 9cfa21c8c2b81146aab574f55c93f27e5c2d435c (patch) | |
tree | 56e93b84a0e8e8e4d4aeeff320cc59f9f21f6b94 /libswscale/utils.c | |
parent | c1eb3e7fecdc270e03a700d61ef941600a6af491 (diff) | |
download | ffmpeg-9cfa21c8c2b81146aab574f55c93f27e5c2d435c.tar.gz |
swscale: support endianness conversion for AV_PIX_FMT_XYZ12
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index 538a3df665..e20a5f1cee 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -172,6 +172,8 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = { [AV_PIX_FMT_GBRP10BE] = { 1, 1 }, [AV_PIX_FMT_GBRP16LE] = { 1, 0 }, [AV_PIX_FMT_GBRP16BE] = { 1, 0 }, + [AV_PIX_FMT_XYZ12BE] = { 0, 0, 1 }, + [AV_PIX_FMT_XYZ12LE] = { 0, 0, 1 }, }; int sws_isSupportedInput(enum AVPixelFormat pix_fmt) |