avcodec/pnm_parser: add support for PFM parsing

This commit is contained in:
Paul B Mahol 2021-09-03 14:56:21 +02:00
parent f3f9041302
commit a3fd78db12
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ end:
const AVCodecParser ff_pnm_parser = {
.codec_ids = { AV_CODEC_ID_PGM, AV_CODEC_ID_PGMYUV, AV_CODEC_ID_PPM,
AV_CODEC_ID_PBM, AV_CODEC_ID_PAM },
AV_CODEC_ID_PBM, AV_CODEC_ID_PAM, AV_CODEC_ID_PFM },
.priv_data_size = sizeof(PNMParseContext),
.parser_parse = pnm_parse,
.parser_close = ff_parse_close,