Commit 87b6ea84 authored by Michael Niedermayer's avatar Michael Niedermayer

indent

Originally committed as revision 13411 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 99c1c388
......@@ -215,10 +215,10 @@ int av_parser_change(AVCodecParserContext *s,
void av_parser_close(AVCodecParserContext *s)
{
if(s){
if (s->parser->parser_close)
s->parser->parser_close(s);
av_free(s->priv_data);
av_free(s);
if (s->parser->parser_close)
s->parser->parser_close(s);
av_free(s->priv_data);
av_free(s);
}
}
......
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