avcodec/bmpenc: Remove redundant pixel format check

ff_encode_preinit() already checked the pixel format via
AVCodec.pix_fmts.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2021-09-28 14:41:16 +02:00
parent eec5a45f05
commit a412b5e792
1 changed files with 0 additions and 3 deletions

View File

@ -58,9 +58,6 @@ static av_cold int bmp_encode_init(AVCodecContext *avctx){
case AV_PIX_FMT_MONOBLACK:
avctx->bits_per_coded_sample = 1;
break;
default:
av_log(avctx, AV_LOG_INFO, "unsupported pixel format\n");
return AVERROR(EINVAL);
}
return 0;