From a50833216cea229378222dd2af0b79e7460c8094 Mon Sep 17 00:00:00 2001 From: Devata Date: Sun, 2 Jul 2023 19:25:28 +0700 Subject: [PATCH] init commit --- README.md | 1 + RELEASE | 2 +- fftools/cmdutils.c | 7 ++++--- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 447347c..40e93dc 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ FFmpeg README ============= +Based on 4.3.6 FFmpeg is a collection of libraries and tools to process multimedia content such as audio, video, subtitles and related metadata. diff --git a/RELEASE b/RELEASE index 4327054..7e7f33c 100644 --- a/RELEASE +++ b/RELEASE @@ -1 +1 @@ -4.3.6 +4.3.7 diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c index 13567a7..130af8f 100644 --- a/fftools/cmdutils.c +++ b/fftools/cmdutils.c @@ -1145,7 +1145,7 @@ static void print_program_info(int flags, int level) { const char *indent = flags & INDENT? " " : ""; - av_log(NULL, level, "%s version " FFMPEG_VERSION, program_name); + av_log(NULL, level, "%s version - Customized for MPD-PHP" FFMPEG_VERSION, program_name); if (flags & SHOW_COPYRIGHT) av_log(NULL, level, " Copyright (c) %d-%d the FFmpeg developers", program_birth_year, CONFIG_THIS_YEAR); @@ -1185,11 +1185,12 @@ void show_banner(int argc, char **argv, const OptionDef *options) { int idx = locate_option(argc, argv, options, "version"); if (hide_banner || idx) + print_program_info (INDENT|SHOW_COPYRIGHT, AV_LOG_INFO); return; print_program_info (INDENT|SHOW_COPYRIGHT, AV_LOG_INFO); - print_all_libs_info(INDENT|SHOW_CONFIG, AV_LOG_INFO); - print_all_libs_info(INDENT|SHOW_VERSION, AV_LOG_INFO); + // print_all_libs_info(INDENT|SHOW_CONFIG, AV_LOG_INFO); + // print_all_libs_info(INDENT|SHOW_VERSION, AV_LOG_INFO); } int show_version(void *optctx, const char *opt, const char *arg)