Commit 940173d4 authored by Alex Converse's avatar Alex Converse

lavf utils: Remove write-only variable

parent 4439caa4
...@@ -1700,7 +1700,6 @@ static int seek_frame_generic(AVFormatContext *s, ...@@ -1700,7 +1700,6 @@ static int seek_frame_generic(AVFormatContext *s,
return -1; return -1;
if(index < 0 || index==st->nb_index_entries-1){ if(index < 0 || index==st->nb_index_entries-1){
int i;
AVPacket pkt; AVPacket pkt;
if(st->nb_index_entries){ if(st->nb_index_entries){
...@@ -1713,7 +1712,7 @@ static int seek_frame_generic(AVFormatContext *s, ...@@ -1713,7 +1712,7 @@ static int seek_frame_generic(AVFormatContext *s,
if ((ret = avio_seek(s->pb, s->data_offset, SEEK_SET)) < 0) if ((ret = avio_seek(s->pb, s->data_offset, SEEK_SET)) < 0)
return ret; return ret;
} }
for(i=0;; i++) { for (;;) {
int read_status; int read_status;
do{ do{
read_status = av_read_frame(s, &pkt); read_status = av_read_frame(s, &pkt);
......
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