Re: [FFmpeg-devel] [PATCH] avcodec/avcodec: Allow up to seven codec ids per parser

2021-09-01 Thread Andreas Rheinhardt
Andreas Rheinhardt: > ff_pnm_parser and ff_vp3_parser already hit the current limit; > an addition to the former (to handle pfm) is planned. > > Signed-off-by: Andreas Rheinhardt > --- > If this API were not intended to be deprecated soon, I would make > the codec_ids an array of enum AVCodecID

Re: [FFmpeg-devel] [PATCH] avcodec/avcodec: Allow up to seven codec ids per parser

2021-09-01 Thread Paul B Mahol
lgtm ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH] avcodec/avcodec: Allow up to seven codec ids per parser

2021-09-01 Thread Andreas Rheinhardt
ff_pnm_parser and ff_vp3_parser already hit the current limit; an addition to the former (to handle pfm) is planned. Signed-off-by: Andreas Rheinhardt --- If this API were not intended to be deprecated soon, I would make the codec_ids an array of enum AVCodecID and change av_parser_init()