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

Function hb_add

libhb/hb.c:1934–1942  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1932}
1933
1934int hb_add( hb_handle_t * h, hb_job_t * job )
1935{
1936 hb_job_t *job_copy = hb_job_copy(job);
1937 job_copy->h = h;
1938 job_copy->sequence_id = ++h->sequence_id;
1939 hb_list_add(h->jobs, job_copy);
1940
1941 return job_copy->sequence_id;
1942}
1943
1944void hb_job_setup_passes(hb_handle_t * h, hb_job_t * job, hb_list_t * list_pass)
1945{

Callers 1

hb_add_jsonFunction · 0.85

Calls 2

hb_job_copyFunction · 0.85
hb_list_addFunction · 0.85

Tested by

no test coverage detected