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:28:50 +0300
committerAnton Khirnov <anton@khirnov.net>2022-10-25 12:12:05 +0300
commit69da53ade99d5ae67a49f49bc052117ce0a20336 (patch)
treec0ce780249a0601f2b64a06e117964455109b886 /fftools
parent006df0b6fe5fda26784484f1f90133c7b385fac6 (diff)
fftools/ffmpeg_mux_init: move code creating streams into a new function
Makes it easy to see where all the streams are created. Will also be useful in the following commit.
Diffstat (limited to 'fftools')
-rw-r--r--fftools/ffmpeg_mux_init.c72
1 files changed, 39 insertions, 33 deletions
diff --git a/fftools/ffmpeg_mux_init.c b/fftools/ffmpeg_mux_init.c
index 3b5ec5b7b2..0f61fb2e4b 100644
--- a/fftools/ffmpeg_mux_init.c
+++ b/fftools/ffmpeg_mux_init.c
@@ -1062,6 +1062,42 @@ loop_end:
}
}
+static void create_streams(Muxer *mux, OptionsContext *o)
+{
+ /* create streams for all unlabeled output pads */
+ for (int i = 0; i < nb_filtergraphs; i++) {
+ FilterGraph *fg = filtergraphs[i];
+ for (int j = 0; j < fg->nb_outputs; j++) {
+ OutputFilter *ofilter = fg->outputs[j];
+
+ if (!ofilter->out_tmp || ofilter->out_tmp->name)
+ continue;
+
+ switch (ofilter->type) {
+ case AVMEDIA_TYPE_VIDEO: o->video_disable = 1; break;
+ case AVMEDIA_TYPE_AUDIO: o->audio_disable = 1; break;
+ case AVMEDIA_TYPE_SUBTITLE: o->subtitle_disable = 1; break;
+ }
+ init_output_filter(ofilter, o, mux);
+ }
+ }
+
+ if (!o->nb_stream_maps) {
+ /* pick the "best" stream of each type */
+ if (!o->video_disable)
+ map_auto_video(mux, o);
+ if (!o->audio_disable)
+ map_auto_audio(mux, o);
+ if (!o->subtitle_disable)
+ map_auto_subtitle(mux, o);
+ if (!o->data_disable)
+ map_auto_data(mux, o);
+ } else {
+ for (int i = 0; i < o->nb_stream_maps; i++)
+ map_manual(mux, o, &o->stream_maps[i]);
+ }
+}
+
static int setup_sync_queues(Muxer *mux, AVFormatContext *oc, int64_t buf_size_us)
{
OutputFile *of = &mux->of;
@@ -1678,7 +1714,7 @@ int of_open(OptionsContext *o, const char *filename)
{
Muxer *mux;
AVFormatContext *oc;
- int i, j, err;
+ int err;
OutputFile *of;
AVDictionary *unused_opts = NULL;
const AVDictionaryEntry *e = NULL;
@@ -1740,38 +1776,8 @@ int of_open(OptionsContext *o, const char *filename)
AVFMT_FLAG_BITEXACT);
}
- /* create streams for all unlabeled output pads */
- for (i = 0; i < nb_filtergraphs; i++) {
- FilterGraph *fg = filtergraphs[i];
- for (j = 0; j < fg->nb_outputs; j++) {
- OutputFilter *ofilter = fg->outputs[j];
-
- if (!ofilter->out_tmp || ofilter->out_tmp->name)
- continue;
-
- switch (ofilter->type) {
- case AVMEDIA_TYPE_VIDEO: o->video_disable = 1; break;
- case AVMEDIA_TYPE_AUDIO: o->audio_disable = 1; break;
- case AVMEDIA_TYPE_SUBTITLE: o->subtitle_disable = 1; break;
- }
- init_output_filter(ofilter, o, mux);
- }
- }
-
- if (!o->nb_stream_maps) {
- /* pick the "best" stream of each type */
- if (!o->video_disable)
- map_auto_video(mux, o);
- if (!o->audio_disable)
- map_auto_audio(mux, o);
- if (!o->subtitle_disable)
- map_auto_subtitle(mux, o);
- if (!o->data_disable)
- map_auto_data(mux, o);
- } else {
- for (int i = 0; i < o->nb_stream_maps; i++)
- map_manual(mux, o, &o->stream_maps[i]);
- }
+ /* create all output streams for this file */
+ create_streams(mux, o);
of_add_attachments(mux, o);