Revert "virtualcam-module: Don't send frames on initial pause"

This reverts commit bcb73cb599.

Annoyingly, this breaks WebEx, likely due to their own bug. This only
breaks Discord under very specific circumstances due to their own bug,
so if I'm going to choose between Discord breaking under very specific
circumstances that rarely occur versus choosing WebEx not working at
all, I'm going to just let Discord be broken under specific/rare
circumstances.

I hate DirectShow.
This commit is contained in:
Jim 2022-11-18 05:45:09 -08:00
parent 53ffaf56c1
commit 6693f39288

View file

@ -146,7 +146,7 @@ STDMETHODIMP VCamFilter::Pause()
return hr;
}
os_atomic_set_bool(&active, false);
os_atomic_set_bool(&active, true);
SetEvent(thread_start);
return S_OK;
}