| 115 | } ndi_source_config_t; |
| 116 | |
| 117 | typedef struct ndi_source_t { |
| 118 | obs_source_t *obs_source; |
| 119 | ndi_source_config_t config; |
| 120 | |
| 121 | bool running; |
| 122 | pthread_t av_thread; |
| 123 | |
| 124 | uint32_t width; |
| 125 | uint32_t height; |
| 126 | |
| 127 | uint64_t last_frame_timestamp; |
| 128 | } ndi_source_t; |
| 129 | |
| 130 | static obs_source_t *find_filter_by_id(obs_source_t *context, const char *id) |
| 131 | { |
nothing calls this directly
no outgoing calls
no test coverage detected