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

Function hb_register

libhb/hb.c:173–177  ·  view source on GitHub ↗

* Registers work objects, by adding the work object to a liked list. * @param w Handle to hb_work_object_t to register. */

Source from the content-addressed store, hash-verified

171 * @param w Handle to hb_work_object_t to register.
172 */
173void hb_register( hb_work_object_t * w )
174{
175 w->next = hb_objects;
176 hb_objects = w;
177}
178
179void (*hb_log_callback)(const char* message);
180static void redirect_thread_func(void *);

Callers 1

hb_global_initFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected