diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2013-01-28 11:29:37 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-01-28 11:29:37 +0000 |
commit | 51e9d2dbc8f8e7aed216222a496cc7e588afa217 (patch) | |
tree | 5bb3236c8ed72e0ab8325e73c11df7ea574ac5d3 /libavcodec | |
parent | 0501d0646849c34bdd09802fbe244626b81203b2 (diff) | |
download | ffmpeg-51e9d2dbc8f8e7aed216222a496cc7e588afa217.tar.gz |
aasc: fix 16bpp on big-endian
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/aasc.c | 2 |
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; |