aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPiotr Bandurski <ami_stuff@o2.pl>2013-01-28 03:42:07 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-02-05 16:33:37 +0100
commit22561bc0e963cf75c20fb8efd846a343e807dfef (patch)
tree08ab2f730b0fb7e2595ec65b4cad70dc8a279f1b
parent8a4464514fac40988f4d10e6419a8e1632dfba0c (diff)
downloadffmpeg-22561bc0e963cf75c20fb8efd846a343e807dfef.tar.gz
aasc: fix 16bpp on big-endian
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/aasc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aasc.c b/libavcodec/aasc.c
index 0d4704fc3e..245951ab16 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;