Mercurial > libavcodec.hg
comparison parser.c @ 6892:ef70c05f77e8 libavcodec
indent
| author | michael |
|---|---|
| date | Mon, 26 May 2008 02:00:18 +0000 |
| parents | d7051562c2b3 |
| children | de032bcdeff9 |
comparison
equal
deleted
inserted
replaced
| 6891:d7051562c2b3 | 6892:ef70c05f77e8 |
|---|---|
| 213 } | 213 } |
| 214 | 214 |
| 215 void av_parser_close(AVCodecParserContext *s) | 215 void av_parser_close(AVCodecParserContext *s) |
| 216 { | 216 { |
| 217 if(s){ | 217 if(s){ |
| 218 if (s->parser->parser_close) | 218 if (s->parser->parser_close) |
| 219 s->parser->parser_close(s); | 219 s->parser->parser_close(s); |
| 220 av_free(s->priv_data); | 220 av_free(s->priv_data); |
| 221 av_free(s); | 221 av_free(s); |
| 222 } | 222 } |
| 223 } | 223 } |
| 224 | 224 |
| 225 /*****************************************************/ | 225 /*****************************************************/ |
| 226 | 226 |
