Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2022-10-18 13:05:37 +0300
committerAnton Khirnov <anton@khirnov.net>2022-10-25 12:11:35 +0300
commit006df0b6fe5fda26784484f1f90133c7b385fac6 (patch)
tree2a45d174559af9fb9763acc168f37b6231477ebf /fftools
parentccab8235599062b4ebbec86cb7096c43b85261c5 (diff)
fftools/ffmpeg_mux_init: stop modifying some OptionsContext fields
Specifically recording_time and stop_time - use local variables instead. OptionsContext should be input-only to this code. Will allow making it const in future commits.
Diffstat (limited to 'fftools')
-rw-r--r--fftools/ffmpeg_mux_init.c21
1 files changed, 12 insertions, 9 deletions
diff --git a/fftools/ffmpeg_mux_init.c b/fftools/ffmpeg_mux_init.c
index ac1be87d4c..3b5ec5b7b2 100644
--- a/fftools/ffmpeg_mux_init.c
+++ b/fftools/ffmpeg_mux_init.c
@@ -1587,7 +1587,7 @@ static void copy_meta(Muxer *mux, OptionsContext *o)
if (!o->metadata_global_manual && nb_input_files){
av_dict_copy(&oc->metadata, input_files[0]->ctx->metadata,
AV_DICT_DONT_OVERWRITE);
- if(o->recording_time != INT64_MAX)
+ if (of->recording_time != INT64_MAX)
av_dict_set(&oc->metadata, "duration", NULL, 0);
av_dict_set(&oc->metadata, "creation_time", NULL, 0);
av_dict_set(&oc->metadata, "company_name", NULL, 0);
@@ -1683,18 +1683,21 @@ int of_open(OptionsContext *o, const char *filename)
AVDictionary *unused_opts = NULL;
const AVDictionaryEntry *e = NULL;
- if (o->stop_time != INT64_MAX && o->recording_time != INT64_MAX) {
- o->stop_time = INT64_MAX;
+ int64_t recording_time = o->recording_time;
+ int64_t stop_time = o->stop_time;
+
+ if (stop_time != INT64_MAX && recording_time != INT64_MAX) {
+ stop_time = INT64_MAX;
av_log(NULL, AV_LOG_WARNING, "-t and -to cannot be used together; using -t.\n");
}
- if (o->stop_time != INT64_MAX && o->recording_time == INT64_MAX) {
+ if (stop_time != INT64_MAX && recording_time == INT64_MAX) {
int64_t start_time = o->start_time == AV_NOPTS_VALUE ? 0 : o->start_time;
- if (o->stop_time <= start_time) {
+ if (stop_time <= start_time) {
av_log(NULL, AV_LOG_ERROR, "-to value smaller than -ss; aborting.\n");
exit_program(1);
} else {
- o->recording_time = o->stop_time - start_time;
+ recording_time = stop_time - start_time;
}
}
@@ -1702,7 +1705,7 @@ int of_open(OptionsContext *o, const char *filename)
of = &mux->of;
of->index = nb_output_files - 1;
- of->recording_time = o->recording_time;
+ of->recording_time = recording_time;
of->start_time = o->start_time;
of->shortest = o->shortest;
@@ -1724,8 +1727,8 @@ int of_open(OptionsContext *o, const char *filename)
want_sdp = 0;
of->format = oc->oformat;
- if (o->recording_time != INT64_MAX)
- oc->duration = o->recording_time;
+ if (recording_time != INT64_MAX)
+ oc->duration = recording_time;
oc->interrupt_callback = int_cb;