| 3848 | } |
| 3849 | |
| 3850 | void |
| 3851 | ghb_track_status (void) |
| 3852 | { |
| 3853 | hb_state_t state; |
| 3854 | |
| 3855 | if (h_scan == NULL) return; |
| 3856 | hb_get_state( h_scan, &state ); |
| 3857 | update_status(&state, &hb_status.scan); |
| 3858 | hb_get_state( h_queue, &state ); |
| 3859 | update_status(&state, &hb_status.queue); |
| 3860 | hb_get_state( h_live, &state ); |
| 3861 | update_status(&state, &hb_status.live); |
| 3862 | } |
| 3863 | |
| 3864 | hb_audio_config_t* |
| 3865 | ghb_get_audio_info(const hb_title_t *title, gint track) |
no test coverage detected