mirror of https://git.ffmpeg.org/ffmpeg.git
ffmpeg: move a local variable definition later.
Fix a segfault when using the -map option without input files.
This commit is contained in:
parent
d23b8462b5
commit
449704b475
|
@ -1719,7 +1719,6 @@ static int open_output_file(OptionsContext *o, const char *filename)
|
|||
} else {
|
||||
for (i = 0; i < o->nb_stream_maps; i++) {
|
||||
StreamMap *map = &o->stream_maps[i];
|
||||
int src_idx = input_files[map->file_index]->ist_index + map->stream_index;
|
||||
|
||||
if (map->disabled)
|
||||
continue;
|
||||
|
@ -1747,6 +1746,8 @@ loop_end:
|
|||
}
|
||||
init_output_filter(ofilter, o, oc);
|
||||
} else {
|
||||
int src_idx = input_files[map->file_index]->ist_index + map->stream_index;
|
||||
|
||||
ist = input_streams[input_files[map->file_index]->ist_index + map->stream_index];
|
||||
if(o->subtitle_disable && ist->st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE)
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue