| 231 | } |
| 232 | |
| 233 | void av_parser_close(AVCodecParserContext *s) |
| 234 | { |
| 235 | if(s){ |
| 236 | if (s->parser->parser_close) |
| 237 | s->parser->parser_close(s); |
| 238 | av_free(s->priv_data); |
| 239 | av_free(s); |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | /*****************************************************/ |
| 244 |
no test coverage detected