| 195 | } |
| 196 | |
| 197 | static av_cold void close(AVCodecParserContext *s) |
| 198 | { |
| 199 | APVParseContext *p = s->priv_data; |
| 200 | ParseContext *pc = &p->pc; |
| 201 | |
| 202 | av_freep(&pc->buffer); |
| 203 | ff_cbs_fragment_free(&p->au); |
| 204 | ff_cbs_close(&p->cbc); |
| 205 | } |
| 206 | |
| 207 | const FFCodecParser ff_apv_parser = { |
| 208 | PARSER_CODEC_LIST(AV_CODEC_ID_APV), |
no test coverage detected