Skip to content
Snippets Groups Projects
Commit 35ccafac authored by Pierre Nicolas's avatar Pierre Nicolas :joy: Committed by Adrien Béraud
Browse files

video: remove legacy code

Removed legacy code that was causing options to be cleared unnecessarily.

Change-Id: I02b32221acc6abfef634ba843549c6391c2058c8
parent 73a1e806
No related branches found
No related tags found
No related merge requests found
......@@ -387,13 +387,6 @@ VideoInput::deleteDecoder()
decoder_.reset();
}
void
VideoInput::stopInput()
{
clearOptions();
loop_.stop();
}
void
VideoInput::clearOptions()
{
......
......@@ -83,17 +83,6 @@ public:
void setRecorderCallback(const std::function<void(const MediaStream& ms)>& cb);
#if VIDEO_CLIENT_INPUT
/*
* these functions are used to pass buffer from/to the daemon
* on the Android and UWP builds
*/
void* obtainFrame(int length);
void releaseFrame(void* frame);
#else
void stopInput();
#endif
void setSuccessfulSetupCb(const std::function<void(MediaType, bool)>& cb)
{
onSuccessfulSetup_ = cb;
......
......@@ -142,11 +142,6 @@ VideoMixer::stopInput(const std::shared_ptr<VideoFrameActiveWriter>& input)
{
// Detach videoInputs from mixer
input->detach(this);
#if !VIDEO_CLIENT_INPUT
// Stop old VideoInput
if (auto oldInput = std::dynamic_pointer_cast<VideoInput>(input))
oldInput->stopInput();
#endif
}
void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment