MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / hb_buffer_list_clear

Function hb_buffer_list_clear

libhb/common.c:4047–4058  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4045}
4046
4047hb_buffer_t* hb_buffer_list_clear(hb_buffer_list_t *list)
4048{
4049 if (list == NULL)
4050 {
4051 return NULL;
4052 }
4053 hb_buffer_t *head = list->head;
4054 list->head = list->tail = NULL;
4055 list->count = 0;
4056 list->size = 0;
4057 return head;
4058}
4059
4060void hb_buffer_list_close(hb_buffer_list_t *list)
4061{

Callers 15

encavcodecaWorkFunction · 0.85
encvorbisWorkFunction · 0.85
CreateSilenceBufFunction · 0.85
CreateBlackBufFunction · 0.85
InitSubtitleFunction · 0.85
findOverlapFunction · 0.85
mergeSubtitleOverlapsFunction · 0.85
mergeSubtitlesFunction · 0.85
sanitizeSubtitleFunction · 0.85
hb_buffer_list_closeFunction · 0.85
comb_detect_initFunction · 0.85
comb_detect_workFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected