| 851 | } |
| 852 | |
| 853 | void ndi_source_thread_start(ndi_source_t *s) |
| 854 | { |
| 855 | s->config.reset_ndi_receiver = true; |
| 856 | s->running = true; |
| 857 | pthread_create(&s->av_thread, nullptr, ndi_source_thread, s); |
| 858 | obs_log(LOG_INFO, "'Started Receiver Thread for OBS source: '%s' and NDI Source Name: %s'", |
| 859 | obs_source_get_name(s->obs_source), s->config.ndi_source_name); |
| 860 | obs_log(LOG_DEBUG, "'%s' ndi_source_thread_start: Started A/V ndi_source_thread for NDI source '%s'", |
| 861 | obs_source_get_name(s->obs_source), s->config.ndi_source_name); |
| 862 | } |
| 863 | |
| 864 | void ndi_source_thread_stop(ndi_source_t *s) |
| 865 | { |
no outgoing calls
no test coverage detected