This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 1c99ba791b126d006f6a91e2331ffb1e4dd65187 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Mon Mar 9 13:32:19 2026 +0100 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Tue Jun 23 19:15:58 2026 +0200 fftools/ffmpeg_mux_init: Remove deprecated source_no_drop Deprecated in commit d2c416fdf1ecc9c354642d7410944a506c4985a6 on 2023-10-10. Signed-off-by: Andreas Rheinhardt <[email protected]> --- fftools/ffmpeg.h | 4 ---- fftools/ffmpeg_mux_init.c | 6 ------ 2 files changed, 10 deletions(-) diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index 7adeddf071..c29e2dc545 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -53,7 +53,6 @@ // deprecated features #define FFMPEG_OPT_TOP 1 -#define FFMPEG_OPT_FORCE_KF_SOURCE_NO_DROP 1 #define FFMPEG_OPT_VSYNC_DROP 1 #define FFMPEG_OPT_VSYNC 1 #define FFMPEG_OPT_FILTER_SCRIPT 1 @@ -603,9 +602,6 @@ typedef struct EncStats { enum { KF_FORCE_SOURCE = 1, -#if FFMPEG_OPT_FORCE_KF_SOURCE_NO_DROP - KF_FORCE_SOURCE_NO_DROP = 2, -#endif // force keyframe if lavfi.scd.time metadata is set KF_FORCE_SCD_METADATA = 3, }; diff --git a/fftools/ffmpeg_mux_init.c b/fftools/ffmpeg_mux_init.c index ac706bf2d4..a857b16118 100644 --- a/fftools/ffmpeg_mux_init.c +++ b/fftools/ffmpeg_mux_init.c @@ -3284,12 +3284,6 @@ static int process_forced_keyframes(Muxer *mux, const OptionsContext *o) // parse it only for static kf timings } else if (!strcmp(forced_keyframes, "source")) { ost->kf.type = KF_FORCE_SOURCE; -#if FFMPEG_OPT_FORCE_KF_SOURCE_NO_DROP - } else if (!strcmp(forced_keyframes, "source_no_drop")) { - av_log(ost, AV_LOG_WARNING, "The 'source_no_drop' value for " - "-force_key_frames is deprecated, use just 'source'\n"); - ost->kf.type = KF_FORCE_SOURCE; -#endif } else if (!strcmp(forced_keyframes, "scd_metadata")) { ost->kf.type = KF_FORCE_SCD_METADATA; } else { _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
