avformat: simplify avformat_close_input

avio_close checks by itself for NULL condition.
This commit is contained in:
Luca Barbato 2012-09-10 07:07:56 +02:00
parent 58139e141b
commit 4d1f443c3d
1 changed files with 2 additions and 2 deletions

View File

@ -2709,8 +2709,8 @@ void avformat_close_input(AVFormatContext **ps)
s->iformat->read_close(s);
avformat_free_context(s);
*ps = NULL;
if (pb)
avio_close(pb);
avio_close(pb);
}
AVStream *avformat_new_stream(AVFormatContext *s, AVCodec *c)