| 3873 | } |
| 3874 | |
| 3875 | hb_subtitle_t* |
| 3876 | ghb_get_subtitle_info(const hb_title_t *title, gint track) |
| 3877 | { |
| 3878 | if (title == NULL) return NULL; |
| 3879 | if (!hb_list_count(title->list_subtitle)) |
| 3880 | { |
| 3881 | return NULL; |
| 3882 | } |
| 3883 | return hb_list_item(title->list_subtitle, track); |
| 3884 | } |
| 3885 | |
| 3886 | hb_list_t * |
| 3887 | ghb_get_title_list (void) |
no test coverage detected