mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-13 22:27:13 +02:00
remove unneeded AudioInjectorPointer constructor
This commit is contained in:
parent
084a989a7a
commit
b556ddc0ef
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ bool AudioInjectorManager::threadInjector(const AudioInjectorPointer& injector)
|
|||
injector->moveToThread(_thread);
|
||||
|
||||
// add the injector to the queue with a send timestamp of now
|
||||
_injectors.emplace(usecTimestampNow(), AudioInjectorPointer { injector });
|
||||
_injectors.emplace(usecTimestampNow(), injector);
|
||||
|
||||
// notify our wait condition so we can inject two frames for this injector immediately
|
||||
_injectorReady.notify_one();
|
||||
|
|
Loading…
Reference in a new issue