| 188 | } |
| 189 | |
| 190 | static char * |
| 191 | chapter_time_end (GhbValue *chapter, gint64 *time_pts) |
| 192 | { |
| 193 | GhbValue *duration; |
| 194 | gint64 pts; |
| 195 | |
| 196 | duration = ghb_dict_get(chapter, "Duration"); |
| 197 | pts = ghb_dict_get_int(duration, "Ticks"); |
| 198 | |
| 199 | *time_pts += pts; |
| 200 | return pts_to_xml_time(*time_pts); |
| 201 | } |
| 202 | |
| 203 | static void |
| 204 | chapter_list_export_xml (const gchar *filename, GhbValue *chapter_dict) |
no test coverage detected