Commit cc2133b6 authored by Anton Khirnov's avatar Anton Khirnov

avconv: get rid of pointless temporary variable.

parent 83916029
......@@ -2139,7 +2139,6 @@ static int transcode(void)
while (!received_sigterm) {
InputFile *ifile;
int ist_index;
AVPacket pkt;
/* check if there's any stream where output is still needed */
......@@ -2198,8 +2197,8 @@ static int transcode(void)
dynamically in stream : we ignore them */
if (pkt.stream_index >= ifile->nb_streams)
goto discard_packet;
ist_index = ifile->ist_index + pkt.stream_index;
ist = input_streams[ist_index];
ist = input_streams[ifile->ist_index + pkt.stream_index];
if (ist->discard)
goto discard_packet;
......
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