You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
fftools/ffmpeg_opt: reduce indentation in map_auto_audio()
Fix indentation after the previous commit. Also use an early return to save one extra indentation level.
This commit is contained in:
@@ -2545,10 +2545,12 @@ static void map_auto_audio(OutputFile *of, AVFormatContext *oc,
|
|||||||
OptionsContext *o)
|
OptionsContext *o)
|
||||||
{
|
{
|
||||||
InputStream *ist;
|
InputStream *ist;
|
||||||
|
int best_score = 0, idx = -1;
|
||||||
|
|
||||||
/* audio: most channels */
|
/* audio: most channels */
|
||||||
if (av_guess_codec(oc->oformat, NULL, oc->url, NULL, AVMEDIA_TYPE_AUDIO) != AV_CODEC_ID_NONE) {
|
if (av_guess_codec(oc->oformat, NULL, oc->url, NULL, AVMEDIA_TYPE_AUDIO) == AV_CODEC_ID_NONE)
|
||||||
int best_score = 0, idx = -1;
|
return;
|
||||||
|
|
||||||
for (int j = 0; j < nb_input_files; j++) {
|
for (int j = 0; j < nb_input_files; j++) {
|
||||||
InputFile *ifile = input_files[j];
|
InputFile *ifile = input_files[j];
|
||||||
int file_best_score = 0, file_best_idx = -1;
|
int file_best_score = 0, file_best_idx = -1;
|
||||||
@@ -2576,7 +2578,6 @@ static void map_auto_audio(OutputFile *of, AVFormatContext *oc,
|
|||||||
}
|
}
|
||||||
if (idx >= 0)
|
if (idx >= 0)
|
||||||
new_audio_stream(o, oc, idx);
|
new_audio_stream(o, oc, idx);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int open_output_file(OptionsContext *o, const char *filename)
|
static int open_output_file(OptionsContext *o, const char *filename)
|
||||||
|
Reference in New Issue
Block a user