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

Function ghb_int_value

gtk/src/values.c:107–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

105}
106
107GhbValue*
108ghb_int_value(gint64 ival)
109{
110 static GhbValue *gval = NULL;
111 if (gval == NULL)
112 gval = json_integer(ival);
113 else
114 json_integer_set(gval, ival);
115 return gval;
116}
117
118GhbValue*
119ghb_double_value(gdouble dval)

Callers 3

vcodec_changed_cbFunction · 0.85
ghb_backend_eventsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected