From 911fa05b514e1be009e00b79d7004b93717c023b Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Sat, 19 Apr 2014 18:51:38 +0300 Subject: mvc: Specify the pixel format for the mv-mvc* tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Also set the RGBA pixel format correctly as the native endian format, which is what it returns. This fixes the tests on big endian. Signed-off-by: Martin Storsjö --- libavcodec/mvcdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec') diff --git a/libavcodec/mvcdec.c b/libavcodec/mvcdec.c index fefb705bb9..7cc0329257 100644 --- a/libavcodec/mvcdec.c +++ b/libavcodec/mvcdec.c @@ -52,7 +52,7 @@ static av_cold int mvc_decode_init(AVCodecContext *avctx) return ret; avctx->pix_fmt = (avctx->codec_id == AV_CODEC_ID_MVC1) ? AV_PIX_FMT_RGB555 - : AV_PIX_FMT_BGRA; + : AV_PIX_FMT_RGB32; s->frame = av_frame_alloc(); if (!s->frame) return AVERROR(ENOMEM); -- cgit v1.2.3