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

Function ghb_double_value

gtk/src/values.c:118–127  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

116}
117
118GhbValue*
119ghb_double_value(gdouble dval)
120{
121 static GhbValue *gval = NULL;
122 if (gval == NULL)
123 gval = json_real(dval);
124 else
125 json_real_set(gval, dval);
126 return gval;
127}
128
129GhbValue*
130ghb_boolean_value(gboolean bval)

Callers 3

sanitize_audio_tracksFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected