diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-28 15:53:20 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-28 15:53:20 +0200 |
commit | 2fa08abdb636ed54877c7c82a4813005315b8308 (patch) | |
tree | 84ae804f4dafd9e34315aa7746c98f9e8da16252 | |
parent | 7f17e0ff6a2bd169228b75fa5ea752328df42c2d (diff) | |
download | ffmpeg-2fa08abdb636ed54877c7c82a4813005315b8308.tar.gz |
sws: enable xyz12, this for now is just for swaping between le and be
Needed for fixing fate
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 ca7c2c4a28..94a43a2fea 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -196,6 +196,8 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = { [AV_PIX_FMT_GBRP14BE] = { 1, 1 }, [AV_PIX_FMT_GBRP16LE] = { 1, 0 }, [AV_PIX_FMT_GBRP16BE] = { 1, 0 }, + [AV_PIX_FMT_XYZ12BE] = { 1, 0 }, + [AV_PIX_FMT_XYZ12LE] = { 0, 1 }, }; int sws_isSupportedInput(enum AVPixelFormat pix_fmt) |