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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2016-04-15 22:06:34 +0300
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2016-04-15 22:06:34 +0300
commit139cbeb75e0f5e3176b2b09660d2570b1bcc2408 (patch)
tree319c3880ec358435c40c981c7d77df0587096bda
parentf07923253a1b64911bee623d789c2ee74b14493c (diff)
lavc/dds: Fix GRAY8A decoding.
Fixes ticket #4667.
-rw-r--r--libavcodec/dds.c6
-rw-r--r--libavcodec/version.h2
-rw-r--r--tests/ref/fate/dds-ya2
3 files changed, 6 insertions, 4 deletions
diff --git a/libavcodec/dds.c b/libavcodec/dds.c
index 9577b67f0f..feaaba5a24 100644
--- a/libavcodec/dds.c
+++ b/libavcodec/dds.c
@@ -356,6 +356,10 @@ static int parse_pixel_format(AVCodecContext *avctx)
/* 16 bpp */
else if (bpp == 16 && r == 0xff && g == 0 && b == 0 && a == 0xff00)
avctx->pix_fmt = AV_PIX_FMT_YA8;
+ else if (bpp == 16 && r == 0xff00 && g == 0 && b == 0 && a == 0xff) {
+ avctx->pix_fmt = AV_PIX_FMT_YA8;
+ ctx->postproc = DDS_SWAP_ALPHA;
+ }
else if (bpp == 16 && r == 0xffff && g == 0 && b == 0 && a == 0)
avctx->pix_fmt = AV_PIX_FMT_GRAY16LE;
else if (bpp == 16 && r == 0xf800 && g == 0x7e0 && b == 0x1f && a == 0)
@@ -387,8 +391,6 @@ static int parse_pixel_format(AVCodecContext *avctx)
ctx->postproc = DDS_NORMAL_MAP;
else if (ycocg_classic && !ctx->compressed)
ctx->postproc = DDS_RAW_YCOCG;
- else if (avctx->pix_fmt == AV_PIX_FMT_YA8)
- ctx->postproc = DDS_SWAP_ALPHA;
/* ATI/NVidia variants sometimes add swizzling in bpp. */
switch (bpp) {
diff --git a/libavcodec/version.h b/libavcodec/version.h
index 8f0522b5d5..c24f0fc42c 100644
--- a/libavcodec/version.h
+++ b/libavcodec/version.h
@@ -29,7 +29,7 @@
#define LIBAVCODEC_VERSION_MAJOR 57
#define LIBAVCODEC_VERSION_MINOR 34
-#define LIBAVCODEC_VERSION_MICRO 101
+#define LIBAVCODEC_VERSION_MICRO 102
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \
diff --git a/tests/ref/fate/dds-ya b/tests/ref/fate/dds-ya
index 1de0436b83..a0f12b5634 100644
--- a/tests/ref/fate/dds-ya
+++ b/tests/ref/fate/dds-ya
@@ -3,4 +3,4 @@
#codec_id 0: rawvideo
#dimensions 0: 220x64
#sar 0: 0/1
-0, 0, 0, 1, 28160, 0xd3981fcb
+0, 0, 0, 1, 28160, 0x5aa41fcb