|
|
@ -676,12 +676,12 @@ static av_cold int decode_init(AVCodecContext *avctx) |
|
|
|
{ |
|
|
|
{ |
|
|
|
ArgoContext *s = avctx->priv_data; |
|
|
|
ArgoContext *s = avctx->priv_data; |
|
|
|
|
|
|
|
|
|
|
|
switch (avctx->bits_per_raw_sample) { |
|
|
|
switch (avctx->bits_per_coded_sample) { |
|
|
|
case 8: s->bpp = 1; |
|
|
|
case 8: s->bpp = 1; |
|
|
|
avctx->pix_fmt = AV_PIX_FMT_PAL8; break; |
|
|
|
avctx->pix_fmt = AV_PIX_FMT_PAL8; break; |
|
|
|
case 24: s->bpp = 4; |
|
|
|
case 24: s->bpp = 4; |
|
|
|
avctx->pix_fmt = AV_PIX_FMT_BGR0; break; |
|
|
|
avctx->pix_fmt = AV_PIX_FMT_BGR0; break; |
|
|
|
default: avpriv_request_sample(s, "depth == %u", avctx->bits_per_raw_sample); |
|
|
|
default: avpriv_request_sample(s, "depth == %u", avctx->bits_per_coded_sample); |
|
|
|
return AVERROR_PATCHWELCOME; |
|
|
|
return AVERROR_PATCHWELCOME; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|