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

Function hb_chapter_queue_init

libhb/common.c:6973–6988  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6971}
6972
6973hb_chapter_queue_t * hb_chapter_queue_init(void)
6974{
6975 hb_chapter_queue_t * q;
6976
6977 q = calloc(1, sizeof(*q));
6978 if (q != NULL)
6979 {
6980 q->list_chapter = hb_list_init();
6981 if (q->list_chapter == NULL)
6982 {
6983 free(q);
6984 q = NULL;
6985 }
6986 }
6987 return q;
6988}
6989
6990void hb_chapter_queue_close(hb_chapter_queue_t **_q)
6991{

Callers 5

encx265InitFunction · 0.85
encsvtInitFunction · 0.85
encx264InitFunction · 0.85
encavcodecInitFunction · 0.85
encvt_initFunction · 0.85

Calls 1

hb_list_initFunction · 0.85

Tested by

no test coverage detected