| 862 | } |
| 863 | |
| 864 | void ndi_source_thread_stop(ndi_source_t *s) |
| 865 | { |
| 866 | if (s->running) { |
| 867 | s->running = false; |
| 868 | pthread_join(s->av_thread, NULL); |
| 869 | auto obs_source = s->obs_source; |
| 870 | auto obs_source_name = obs_source_get_name(obs_source); |
| 871 | obs_log(LOG_DEBUG, "'%s' ndi_source_thread_stop: Stopped A/V ndi_source_thread for NDI source '%s'", |
| 872 | obs_source_name, s->config.ndi_source_name); |
| 873 | } |
| 874 | } |
| 875 | |
| 876 | int safe_strcmp(const char *str1, const char *str2) |
| 877 | { |
no outgoing calls
no test coverage detected