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

Function ghb_dict_get_double

gtk/src/values.c:204–211  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

202}
203
204gdouble
205ghb_dict_get_double(const GhbValue *dict, const gchar *key)
206{
207 const GhbValue* value;
208 value = ghb_dict_get_value(dict, key);
209 if (value == NULL) return 0;
210 return ghb_value_get_double(value);
211}
212
213const gchar*
214ghb_dict_get_string(const GhbValue *dict, const gchar *key)

Callers 15

ghb_settings_to_presetFunction · 0.85
set_destination_settingsFunction · 0.85
set_widget_rangesFunction · 0.85
vquality_changed_cbFunction · 0.85
ptop_update_ui_cbFunction · 0.85
get_ui_qualityFunction · 0.85
audio_codec_changed_cbFunction · 0.85

Calls 1

ghb_dict_get_valueFunction · 0.85

Tested by

no test coverage detected