Commit 49c2d290 authored by David Conrad's avatar David Conrad

oggdec: Remove write-only variable

Originally committed as revision 22889 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent adef229e
...@@ -462,7 +462,6 @@ ogg_get_length (AVFormatContext * s) ...@@ -462,7 +462,6 @@ ogg_get_length (AVFormatContext * s)
s->streams[idx]->duration -= s->streams[idx]->start_time; s->streams[idx]->duration -= s->streams[idx]->start_time;
} }
ogg->size = size;
ogg_restore (s, 0); ogg_restore (s, 0);
return 0; return 0;
......
...@@ -91,7 +91,6 @@ struct ogg { ...@@ -91,7 +91,6 @@ struct ogg {
int nstreams; int nstreams;
int headers; int headers;
int curidx; int curidx;
uint64_t size;
struct ogg_state *state; struct ogg_state *state;
}; };
......
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