mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
aasc: support 16bpp
sample: http://www.datafilehost.com/download-b881f3f6.html Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
cf9812d22b
commit
718b90d4b9
@ -43,7 +43,17 @@ static av_cold int aasc_decode_init(AVCodecContext *avctx)
|
||||
AascContext *s = avctx->priv_data;
|
||||
|
||||
s->avctx = avctx;
|
||||
avctx->pix_fmt = PIX_FMT_BGR24;
|
||||
switch (avctx->bits_per_coded_sample) {
|
||||
case 16:
|
||||
avctx->pix_fmt = PIX_FMT_RGB555;
|
||||
break;
|
||||
case 24:
|
||||
avctx->pix_fmt = PIX_FMT_BGR24;
|
||||
break;
|
||||
default:
|
||||
av_log(avctx, AV_LOG_ERROR, "Unsupported bit depth: %d\n", avctx->bits_per_coded_sample);
|
||||
return -1;
|
||||
}
|
||||
avcodec_get_frame_defaults(&s->frame);
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user