lavf utils: Remove write-only variable
This commit is contained in:
parent
4439caa482
commit
940173d4d1
@ -1700,7 +1700,6 @@ static int seek_frame_generic(AVFormatContext *s,
|
||||
return -1;
|
||||
|
||||
if(index < 0 || index==st->nb_index_entries-1){
|
||||
int i;
|
||||
AVPacket pkt;
|
||||
|
||||
if(st->nb_index_entries){
|
||||
@ -1713,7 +1712,7 @@ static int seek_frame_generic(AVFormatContext *s,
|
||||
if ((ret = avio_seek(s->pb, s->data_offset, SEEK_SET)) < 0)
|
||||
return ret;
|
||||
}
|
||||
for(i=0;; i++) {
|
||||
for (;;) {
|
||||
int read_status;
|
||||
do{
|
||||
read_status = av_read_frame(s, &pkt);
|
||||
|
Loading…
x
Reference in New Issue
Block a user