MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / av_parser_close

Function av_parser_close

libavcodec/parser.c:233–241  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

231}
232
233void 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

Callers 5

ff_read_frame_flushFunction · 0.85
av_close_input_streamFunction · 0.85
ff_free_parser_stateFunction · 0.85

Calls 1

av_freeFunction · 0.85

Tested by

no test coverage detected