avconv: get rid of pointless temporary variable.
This commit is contained in:
parent
8391602913
commit
cc2133b66a
5
avconv.c
5
avconv.c
@ -2139,7 +2139,6 @@ static int transcode(void)
|
|||||||
|
|
||||||
while (!received_sigterm) {
|
while (!received_sigterm) {
|
||||||
InputFile *ifile;
|
InputFile *ifile;
|
||||||
int ist_index;
|
|
||||||
AVPacket pkt;
|
AVPacket pkt;
|
||||||
|
|
||||||
/* check if there's any stream where output is still needed */
|
/* 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 */
|
dynamically in stream : we ignore them */
|
||||||
if (pkt.stream_index >= ifile->nb_streams)
|
if (pkt.stream_index >= ifile->nb_streams)
|
||||||
goto discard_packet;
|
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)
|
if (ist->discard)
|
||||||
goto discard_packet;
|
goto discard_packet;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user