[FFmpeg-cvslog] fftools/ffmpeg_enc: move dup_warning global variable to Encoder

Anton Khirnov git at videolan.org
Mon Jun 19 12:11:13 EEST 2023


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Sat Jun  3 10:08:44 2023 +0200| [a934392db048c51b1f3d0f93319ebe351c872ed3] | committer: Anton Khirnov

fftools/ffmpeg_enc: move dup_warning global variable to Encoder

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

 fftools/ffmpeg_enc.c | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/fftools/ffmpeg_enc.c b/fftools/ffmpeg_enc.c
index 2bf4782a9f..0fdf7e7c4d 100644
--- a/fftools/ffmpeg_enc.c
+++ b/fftools/ffmpeg_enc.c
@@ -66,11 +66,11 @@ struct Encoder {
     // number of packets received from the encoder
     uint64_t packets_encoded;
 
+    uint64_t dup_warning;
+
     int opened;
 };
 
-static uint64_t dup_warning = 1000;
-
 void enc_free(Encoder **penc)
 {
     Encoder *enc = *penc;
@@ -106,6 +106,8 @@ int enc_alloc(Encoder **penc, const AVCodec *codec)
     if (!enc->pkt)
         goto fail;
 
+    enc->dup_warning = 1000;
+
     *penc = enc;
 
     return 0;
@@ -1070,9 +1072,9 @@ static void do_video_out(OutputFile *of, OutputStream *ost, AVFrame *frame)
         }
         ost->nb_frames_dup += nb_frames - (nb_frames_prev && ost->last_dropped) - (nb_frames > nb_frames_prev);
         av_log(ost, AV_LOG_VERBOSE, "*** %"PRId64" dup!\n", nb_frames - 1);
-        if (ost->nb_frames_dup > dup_warning) {
-            av_log(ost, AV_LOG_WARNING, "More than %"PRIu64" frames duplicated\n", dup_warning);
-            dup_warning *= 10;
+        if (ost->nb_frames_dup > e->dup_warning) {
+            av_log(ost, AV_LOG_WARNING, "More than %"PRIu64" frames duplicated\n", e->dup_warning);
+            e->dup_warning *= 10;
         }
     }
     ost->last_dropped = nb_frames == nb_frames_prev && frame;



More information about the ffmpeg-cvslog mailing list