Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-02-23 23:29:31 +0400
committerPaul B Mahol <onemda@gmail.com>2013-05-03 20:58:22 +0400
commite6d4e687558d08187e7a415a7725e4b1a416f782 (patch)
tree1b78c7eab6cdd94a66419d48b61acbbfd4889f75 /libswscale
parentf51aa92b0f165a24c4bd8c3b0b85c159048195d6 (diff)
lavu: add planar 16 bit and 8 bit rgb with alpha
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libswscale')
-rw-r--r--libswscale/utils.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c
index f0139401fc..28fd2e1b73 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -198,6 +198,9 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = {
[AV_PIX_FMT_GBRP16BE] = { 1, 0 },
[AV_PIX_FMT_XYZ12BE] = { 1, 0 },
[AV_PIX_FMT_XYZ12LE] = { 1, 0 },
+ [AV_PIX_FMT_GBRAP] = { 0, 0 },
+ [AV_PIX_FMT_GBRAP16LE] = { 0, 0 },
+ [AV_PIX_FMT_GBRAP16BE] = { 0, 0 },
};
int sws_isSupportedInput(enum AVPixelFormat pix_fmt)