diff --git a/src/mynteye/device/standard/device_s.cc b/src/mynteye/device/standard/device_s.cc index 411315e..5da96fc 100644 --- a/src/mynteye/device/standard/device_s.cc +++ b/src/mynteye/device/standard/device_s.cc @@ -35,11 +35,6 @@ Capabilities StandardDevice::GetKeyStreamCapability() const { return Capabilities::STEREO; } -void StandardDevice::StartVideoStreaming() { - // TODO(John) Set img framerate, imu frequency according to stream request - Device::StartVideoStreaming(); -} - void StandardDevice::OnStereoStreamUpdate() { if (motion_tracking_) { auto &&motions = this->motions(); diff --git a/src/mynteye/device/standard/device_s.h b/src/mynteye/device/standard/device_s.h index 40ad33b..0e21055 100644 --- a/src/mynteye/device/standard/device_s.h +++ b/src/mynteye/device/standard/device_s.h @@ -29,8 +29,6 @@ class StandardDevice : public Device { Capabilities GetKeyStreamCapability() const override; - void StartVideoStreaming() override; - void OnStereoStreamUpdate() override; };