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

Function hb_add_json

libhb/hb_json.c:1875–1881  ·  view source on GitHub ↗

* Add a json string job to the hb queue * @param h - Pointer to hb_handle_t instance that job is added to * @param json_job - json string representation of job to add */

Source from the content-addressed store, hash-verified

1873 * @param json_job - json string representation of job to add
1874 */
1875int hb_add_json( hb_handle_t * h, const char * json_job )
1876{
1877 hb_job_t job;
1878
1879 job.json = json_job;
1880 return hb_add(h, &job);
1881}
1882
1883
1884/**

Callers 3

RunQueueJobFunction · 0.85
HandleEventsFunction · 0.85
ghb_add_jobFunction · 0.85

Calls 1

hb_addFunction · 0.85

Tested by 2

RunQueueJobFunction · 0.68
HandleEventsFunction · 0.68