From 9b2802f0d3296059a61b0f323ee0fc86eba48bf5 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Tue, 8 Sep 2015 10:18:16 +0200 Subject: lavc/dxv: Support more real-world old version samples. --- libavcodec/dxv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/dxv.c') diff --git a/libavcodec/dxv.c b/libavcodec/dxv.c index 69bd2a1e20..e20e940fed 100644 --- a/libavcodec/dxv.c +++ b/libavcodec/dxv.c @@ -356,7 +356,7 @@ static int dxv_decode(AVCodecContext *avctx, void *data, av_log(avctx, AV_LOG_DEBUG, "LZF compression and DXT5 texture "); ctx->tex_funct = ctx->texdsp.dxt5_block; ctx->tex_step = 16; - } else if (old_type & 0x20) { + } else if (old_type & 0x20 || old_type & 0x2) { av_log(avctx, AV_LOG_DEBUG, "LZF compression and DXT1 texture "); ctx->tex_funct = ctx->texdsp.dxt1_block; ctx->tex_step = 8; -- cgit v1.2.3