diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-08-21 13:48:08 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-08-21 13:48:08 +0200 |
commit | 26ec392a0e30409fbb0738a5173a9b71a9c99df0 (patch) | |
tree | b7f39259acf68e471bb77be26a0c1bd07a3b1609 | |
parent | 3dba9e19c8836cbb156953df20acdc3f52d0d568 (diff) | |
download | ffmpeg-26ec392a0e30409fbb0738a5173a9b71a9c99df0.tar.gz |
lavf: remove unused AVStream pointer.
-rw-r--r-- | libavformat/utils.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index eec302b263..251cd11d02 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -3018,7 +3018,6 @@ void ff_free_stream(AVFormatContext *s, AVStream *st){ void avformat_free_context(AVFormatContext *s) { int i; - AVStream *st; av_opt_free(s); if (s->iformat && s->iformat->priv_class && s->priv_data) |