| 1129 | } |
| 1130 | |
| 1131 | void 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 | |
| 1138 | static gint64 |
| 1139 | title_range_get_duration (GhbValue * settings, const hb_title_t * title) |
no outgoing calls
no test coverage detected