[FFmpeg-cvslog] avcodec/libdav1d: let libdav1d choose optimal max frame delay

James Almer git at videolan.org
Tue Sep 21 21:11:55 EEST 2021


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Tue Sep 21 15:07:20 2021 -0300| [9a7fe439d969485de698569faa0b42e948cbd753] | committer: James Almer

avcodec/libdav1d: let libdav1d choose optimal max frame delay

Signed-off-by: James Almer <jamrial at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9a7fe439d969485de698569faa0b42e948cbd753
---

 libavcodec/libdav1d.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/libdav1d.c b/libavcodec/libdav1d.c
index e4fdaf7229..2807210e50 100644
--- a/libavcodec/libdav1d.c
+++ b/libavcodec/libdav1d.c
@@ -237,7 +237,7 @@ static av_cold int libdav1d_init(AVCodecContext *c)
         s.n_threads = FFMAX(dav1d->frame_threads, dav1d->tile_threads);
     else
         s.n_threads = FFMIN(threads, DAV1D_MAX_THREADS);
-    s.max_frame_delay = (c->flags & AV_CODEC_FLAG_LOW_DELAY) ? 1 : s.n_threads;
+    s.max_frame_delay = (c->flags & AV_CODEC_FLAG_LOW_DELAY) ? 1 : 0;
     av_log(c, AV_LOG_DEBUG, "Using %d threads, %d max_frame_delay\n",
            s.n_threads, s.max_frame_delay);
 #else



More information about the ffmpeg-cvslog mailing list