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

Function hb_job_init

libhb/common.c:4952–4963  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4950}
4951
4952hb_job_t * hb_job_init( hb_title_t * title )
4953{
4954 hb_job_t * job;
4955
4956 if ( title == NULL )
4957 return NULL;
4958
4959 job = calloc( sizeof( hb_job_t ), 1 );
4960 job_setup(job, title);
4961
4962 return job;
4963}
4964
4965/**********************************************************************
4966 * hb_job_close

Callers 2

hb_preset_job_initFunction · 0.85
hb_job_init_by_indexFunction · 0.85

Calls 1

job_setupFunction · 0.85

Tested by

no test coverage detected