mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-27 21:40:34 +00:00
avcodec/fmvc: use correct pixel format on big-endian for 16 bpp
This commit is contained in:
parent
15a5f49c0b
commit
1f71f0a312
@ -530,7 +530,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
|
||||
|
||||
switch (avctx->bits_per_coded_sample) {
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user