| 174 | } |
| 175 | |
| 176 | static char * |
| 177 | pts_to_xml_time (gint64 pts) |
| 178 | { |
| 179 | int hrs, mins; |
| 180 | double fsecs; |
| 181 | gchar *str; |
| 182 | |
| 183 | hrs = pts / (90000 * 3600); |
| 184 | mins = (pts % (90000 * 3600)) / (90000 * 60); |
| 185 | fsecs = (pts % (90000 * 60)) / 90000.0; |
| 186 | str = g_strdup_printf("%02d:%02d:%06.03f000000", hrs, mins, fsecs); |
| 187 | return str; |
| 188 | } |
| 189 | |
| 190 | static char * |
| 191 | chapter_time_end (GhbValue *chapter, gint64 *time_pts) |
no outgoing calls
no test coverage detected