Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-08-04 14:17:43 +0400
committerAnton Khirnov <anton@khirnov.net>2012-08-08 22:16:13 +0400
commitcc2133b66abb3fe3dbb4feebe7cc9ceae3f8ec64 (patch)
tree893982a5850152360b854c7381beaea14088ae33 /avconv.c
parent8391602913fff177b2f7ba850f5767eec9f33784 (diff)
avconv: get rid of pointless temporary variable.
Diffstat (limited to 'avconv.c')
-rw-r--r--avconv.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/avconv.c b/avconv.c
index 9a2573dceb..b786d8d1d6 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;