summaryrefslogtreecommitdiff
path: root/libavcodec/aasc.c
diff options
context:
space:
mode:
authorPiotr Bandurski <ami_stuff@o2.pl>2013-01-28 11:29:37 +0000
committerPaul B Mahol <onemda@gmail.com>2013-01-28 11:29:37 +0000
commit51e9d2dbc8f8e7aed216222a496cc7e588afa217 (patch)
tree5bb3236c8ed72e0ab8325e73c11df7ea574ac5d3 /libavcodec/aasc.c
parent0501d0646849c34bdd09802fbe244626b81203b2 (diff)
aasc: fix 16bpp on big-endian
Diffstat (limited to 'libavcodec/aasc.c')
-rw-r--r--libavcodec/aasc.c2
1 files changed, 1 insertions, 1 deletions
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;