indent
Originally committed as revision 13411 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
99c1c3887d
commit
87b6ea8458
1 changed files with 4 additions and 4 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue