This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit d77b5234b509c8323bdf5e0c6f07cbf4beb252c1
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Mon Mar 9 12:54:47 2026 +0100
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Tue Jun 23 19:15:57 2026 +0200

    fftools/ffmpeg_opt: Remove deprecated no-op -qphist option
    
    Deprecated and disabled in commit 2f24290c8edd14262ee8a674a64b1223e1cbbf41
    on 2023-04-13.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 fftools/ffmpeg.h     |  1 -
 fftools/ffmpeg_opt.c | 13 -------------
 2 files changed, 14 deletions(-)

diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h
index 8c85f1ef7f..55aa5462f5 100644
--- a/fftools/ffmpeg.h
+++ b/fftools/ffmpeg.h
@@ -52,7 +52,6 @@
 #include "libswresample/swresample.h"
 
 // deprecated features
-#define FFMPEG_OPT_QPHIST 1
 #define FFMPEG_OPT_ADRIFT_THRESHOLD 1
 #define FFMPEG_OPT_ENC_TIME_BASE_NUM 1
 #define FFMPEG_OPT_TOP 1
diff --git a/fftools/ffmpeg_opt.c b/fftools/ffmpeg_opt.c
index 28e6cee741..06e3f089e6 100644
--- a/fftools/ffmpeg_opt.c
+++ b/fftools/ffmpeg_opt.c
@@ -1597,14 +1597,6 @@ int opt_timelimit(void *optctx, const char *opt, const 
char *arg)
     return 0;
 }
 
-#if FFMPEG_OPT_QPHIST
-static int opt_qphist(void *optctx, const char *opt, const char *arg)
-{
-    av_log(NULL, AV_LOG_WARNING, "Option -%s is deprecated and has no 
effect\n", opt);
-    return 0;
-}
-#endif
-
 #if FFMPEG_OPT_ADRIFT_THRESHOLD
 static int opt_adrift_threshold(void *optctx, const char *opt, const char *arg)
 {
@@ -2192,11 +2184,6 @@ const OptionDef options[] = {
         { .off = OFFSET(top_field_first) },
         "deprecated, use the setfield video filter", "" },
 #endif
-#if FFMPEG_OPT_QPHIST
-    { "qphist", OPT_TYPE_FUNC, OPT_VIDEO | OPT_EXPERT,
-        { .func_arg = opt_qphist },
-        "deprecated, does nothing" },
-#endif
 #if FFMPEG_OPT_VSYNC
     { "vsync",                  OPT_TYPE_FUNC, OPT_FUNC_ARG | OPT_EXPERT,
         { .func_arg = opt_vsync },

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to