From: Paul B Mahol Date: Sat, 26 Jan 2013 11:58:36 +0000 (+0000) Subject: lavc/iff: ilbm: unbreak decoding on big endian X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=25c75525bf1da38179ec67924f0be7a2bd8faa0d;p=ffmpeg lavc/iff: ilbm: unbreak decoding on big endian Fixes #2192. Signed-off-by: Paul B Mahol --- diff --git a/libavcodec/iff.c b/libavcodec/iff.c index c4672b8f913..bebf6a52729 100644 --- a/libavcodec/iff.c +++ b/libavcodec/iff.c @@ -341,7 +341,7 @@ static av_cold int decode_init(AVCodecContext *avctx) avctx->pix_fmt = AV_PIX_FMT_RGB444; } else if (avctx->codec_tag != MKTAG('D','E','E','P')) { if (avctx->bits_per_coded_sample == 24) { - avctx->pix_fmt = AV_PIX_FMT_RGB0; + avctx->pix_fmt = AV_PIX_FMT_0BGR32; } else if (avctx->bits_per_coded_sample == 32) { avctx->pix_fmt = AV_PIX_FMT_BGR32; } else {