From: Anton Khirnov Date: Sat, 4 Aug 2012 10:17:43 +0000 (+0200) Subject: avconv: get rid of pointless temporary variable. X-Git-Tag: v9_beta1~765 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cc2133b66abb3fe3dbb4feebe7cc9ceae3f8ec64;p=platform%2Fupstream%2Flibav.git avconv: get rid of pointless temporary variable. --- diff --git a/avconv.c b/avconv.c index 9a2573dce..b786d8d1d 100644 --- a/avconv.c +++ b/avconv.c @@ -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;