Commit e72fddd2 authored by stefano's avatar stefano

Increase the maximum number of supported stream mappings in ffmpeg.c.

The new value is given by maximum_files_nb * maximum_streams_per_file_nb,
which looks also more correct in respect to the previous value.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14520 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a5aeb8d9
......@@ -92,7 +92,7 @@ static int nb_input_files = 0;
static AVFormatContext *output_files[MAX_FILES];
static int nb_output_files = 0;
static AVStreamMap stream_maps[MAX_FILES];
static AVStreamMap stream_maps[MAX_FILES*MAX_STREAMS];
static int nb_stream_maps;
static AVMetaDataMap meta_data_maps[MAX_FILES];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment