diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-08-03 13:38:31 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-08-03 13:38:31 +0000 |
commit | f44fd37447497cc1bf8a3fdfd9c5154236b539a1 (patch) | |
tree | 214d329d293ecad09b56e2e5110abf17567186ae /ffmpeg.c | |
parent | aa6de49e95f4cdc99d7e360cebb9fbf22c184ff5 (diff) | |
download | ffmpeg-f44fd37447497cc1bf8a3fdfd9c5154236b539a1.tar.gz |
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.
Originally committed as revision 14520 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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]; |