pam: Reject 64bpp rgba.

Fixes ticket #883
This commit is contained in:
ami_stuff 2012-01-06 01:25:54 +01:00 committed by Carl Eugen Hoyos
parent 09f25a9cb0
commit febf75f3d2

View File

@ -125,7 +125,12 @@ int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s)
avctx->pix_fmt = PIX_FMT_RGB48BE;
}
} else if (depth == 4) {
avctx->pix_fmt = PIX_FMT_RGB32;
if (maxval < 256) {
avctx->pix_fmt = PIX_FMT_RGB32;
} else {
av_log(avctx, AV_LOG_ERROR, "Unsupported bit depth\n");
return -1;
}
} else {
return -1;
}