| 205 | } |
| 206 | |
| 207 | av_cold void av_parser_close(AVCodecParserContext *s) |
| 208 | { |
| 209 | if (s) { |
| 210 | if (ffcodecparser(s->parser)->close) |
| 211 | ffcodecparser(s->parser)->close(s); |
| 212 | av_freep(&s->priv_data); |
| 213 | av_free(s); |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | int ff_combine_frame(ParseContext *pc, int next, |
| 218 | const uint8_t **buf, int *buf_size) |
no test coverage detected