Browse Source

aasc: fix 16bpp on big-endian

tags/n1.2
Piotr Bandurski Paul B Mahol 13 years ago
parent
commit
51e9d2dbc8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/aasc.c

+ 1
- 1
libavcodec/aasc.c View File

@@ -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;


Loading…
Cancel
Save