obs_output_t *obs_output_get_ref(obs_output_t *output) { if (!output) return NULL; return obs_weak_output_get_output(output->control); }
inline OBSOutput OBSGetStrongRef(obs_weak_output_t *weak) { return {obs_weak_output_get_output(weak), OBSOutput::TakeOwnership()}; }