diff options
author | Nico Sabbi <nicola.sabbi@poste.it> | 2007-10-28 22:56:41 +0000 |
---|---|---|
committer | Nico Sabbi <nicola.sabbi@poste.it> | 2007-10-28 22:56:41 +0000 |
commit | c1a4cdf9bfa2ecb1a88979226298fba47a80c369 (patch) | |
tree | b50fcaa8afa3315798934a6a8422396dad7764ed | |
parent | 39f79f26eb7db34020eda2b1c5124d6252716107 (diff) | |
download | ffmpeg-c1a4cdf9bfa2ecb1a88979226298fba47a80c369.tar.gz |
removed unused variables accidentally introduced in stream_index_from_inputs()
Originally committed as revision 10870 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | ffmpeg.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1358,8 +1358,7 @@ static int stream_index_from_inputs(AVFormatContext **input_files, enum CodecType type, int programid) { - int p, q, r, s, z; - AVInputStream *ist; + int p, q, z; for(z=0; z<nb_input_files; z++) { AVFormatContext *ic = input_files[z]; for(p=0; p<ic->nb_programs; p++) { |