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

Function av_parser_close

libavcodec/parser.c:207–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

205}
206
207av_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
217int ff_combine_frame(ParseContext *pc, int next,
218 const uint8_t **buf, int *buf_size)

Callers 12

LLVMFuzzerTestOneInputFunction · 0.85
update_stream_avctxFunction · 0.85
parse_packetFunction · 0.85
read_frame_internalFunction · 0.85
ff_read_frame_flushFunction · 0.85
flac_read_timestampFunction · 0.85
ff_free_streamFunction · 0.85
dash_freeFunction · 0.85
old_flac_headerFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85

Calls 3

ffcodecparserFunction · 0.85
av_freepFunction · 0.85
av_freeFunction · 0.50

Tested by

no test coverage detected