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

Function hb_bitvec_new

libhb/muxcommon.c:88–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86}
87
88static hb_bitvec_t* hb_bitvec_new(int size)
89{
90 hb_bitvec_t *bv = calloc(sizeof(hb_bitvec_t), 1);
91 if (bv)
92 {
93 hb_bitvec_add_bits(bv, size);
94 }
95 return bv;
96}
97
98static void hb_bitvec_free(hb_bitvec_t **_bv)
99{

Callers 2

muxWorkFunction · 0.85
muxInitFunction · 0.85

Calls 1

hb_bitvec_add_bitsFunction · 0.85

Tested by

no test coverage detected