| 119 | } |
| 120 | |
| 121 | static int |
| 122 | live_preview_get_state (void) |
| 123 | { |
| 124 | signal_user_data_t *ud = ghb_ud(); |
| 125 | |
| 126 | if (!ud || !ud->preview) |
| 127 | return PREVIEW_STATE_STOPPED; |
| 128 | |
| 129 | return ud->preview->state; |
| 130 | } |
| 131 | |
| 132 | /* Returns TRUE if the preview video is loaded. */ |
| 133 | static gboolean |
no test coverage detected