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

Function hb_value_json

libhb/hb_dict.c:82–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80}
81
82hb_value_t * hb_value_json(const char *json)
83{
84 json_error_t error;
85 hb_value_t *val = json_loads(json, 0, &error);
86 if (val == NULL)
87 {
88 hb_error("hb_value_json: Failed, error %s", error.text);
89 }
90 return val;
91}
92
93hb_value_t * hb_value_read_json(const char *path)
94{

Callers 14

hb_presets_import_jsonFunction · 0.85
hb_presets_clean_jsonFunction · 0.85
hb_presets_builtin_initFunction · 0.85
hb_presets_add_jsonFunction · 0.85
hb_presets_json_packageFunction · 0.85
hb_json_job_scanFunction · 0.85
hb_json_to_jobFunction · 0.85
hb_preset_job_init_jsonFunction · 0.85
hb_get_preview3_jsonFunction · 0.85
hb_json_to_imageFunction · 0.85

Calls 1

hb_errorFunction · 0.85

Tested by

no test coverage detected