Re: [FFmpeg-devel] [PATCH] avcodec/libdav1d: export decoder frame delay

2023-05-12 Thread Ronald S. Bultje
Hi, On Thu, May 11, 2023 at 12:04 PM James Almer wrote: > As this is a AV_CODEC_CAP_OTHER_THREADS decoder, threading is handled by > the > underlying library. In this case, the frame delay is calculated by libdav1d > based on the values from avctx->thread_count and the private > max_frame_delay

Re: [FFmpeg-devel] [PATCH] avcodec/libdav1d: export decoder frame delay

2023-05-11 Thread Derek Buitenhuis
On 5/11/2023 5:04 PM, James Almer wrote: > As this is a AV_CODEC_CAP_OTHER_THREADS decoder, threading is handled by the > underlying library. In this case, the frame delay is calculated by libdav1d > based on the values from avctx->thread_count and the private max_frame_delay > option. > Make said

[FFmpeg-devel] [PATCH] avcodec/libdav1d: export decoder frame delay

2023-05-11 Thread James Almer
As this is a AV_CODEC_CAP_OTHER_THREADS decoder, threading is handled by the underlying library. In this case, the frame delay is calculated by libdav1d based on the values from avctx->thread_count and the private max_frame_delay option. Make said max_frame_delay option an exported one, and store t