From 51e9d2dbc8f8e7aed216222a496cc7e588afa217 Mon Sep 17 00:00:00 2001 From: Piotr Bandurski Date: Mon, 28 Jan 2013 11:29:37 +0000 Subject: [PATCH] aasc: fix 16bpp on big-endian --- libavcodec/aasc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/aasc.c b/libavcodec/aasc.c index 0861faee46..1ddf2d9ca8 100644 --- a/libavcodec/aasc.c +++ b/libavcodec/aasc.c @@ -60,7 +60,7 @@ static av_cold int aasc_decode_init(AVCodecContext *avctx) } break; case 16: - avctx->pix_fmt = AV_PIX_FMT_RGB555; + avctx->pix_fmt = AV_PIX_FMT_RGB555LE; break; case 24: avctx->pix_fmt = AV_PIX_FMT_BGR24;