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

Function ghb_break_duration

gtk/src/callbacks.c:1131–1136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1129}
1130
1131void ghb_break_duration(gint64 duration, gint *hh, gint *mm, gint *ss)
1132{
1133 *hh = duration / (60*60);
1134 *mm = (duration / 60) % 60;
1135 *ss = duration % 60;
1136}
1137
1138static gint64
1139title_range_get_duration (GhbValue * settings, const hb_title_t * title)

Callers 3

update_title_durationFunction · 0.85
queue_update_statsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected