[FFmpeg-devel] [PATCH 01/11] avcodec/tests/avcodec: Mark frame-thrd encoder incompatible with delay

Andreas Rheinhardt andreas.rheinhardt at outlook.com
Fri Aug 26 03:31:56 EEST 2022


Andreas Rheinhardt:
> The API for frame-threaded encoders only works
> for one-in-one-out encoders.
> 
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> ---
>  libavcodec/tests/avcodec.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/libavcodec/tests/avcodec.c b/libavcodec/tests/avcodec.c
> index 08b5fbede1..3288a85f64 100644
> --- a/libavcodec/tests/avcodec.c
> +++ b/libavcodec/tests/avcodec.c
> @@ -155,6 +155,9 @@ int main(void){
>              if (codec->capabilities & AV_CODEC_CAP_FRAME_THREADS &&
>                  codec->capabilities & AV_CODEC_CAP_ENCODER_FLUSH)
>                  ERR("Frame-threaded encoder %s claims to support flushing\n");
> +            if (codec->capabilities & AV_CODEC_CAP_FRAME_THREADS &&
> +                codec->capabilities & AV_CODEC_CAP_DELAY)
> +                ERR("Frame-threaded encoder %s claims to have delay\n");
>          } else {
>              if ((codec->type == AVMEDIA_TYPE_SUBTITLE) != (codec2->cb_type == FF_CODEC_CB_TYPE_DECODE_SUB))
>                  ERR("Subtitle decoder %s does not implement decode_sub callback\n");

Will apply the first eleven patches of this patchset (with v2 of #11)
tonight unless there are objections.

- Andreas


More information about the ffmpeg-devel mailing list