diff options
Diffstat (limited to 'video-opencv')
-rw-r--r-- | video-opencv/impl-camera.cpp | 2 | ||||
-rw-r--r-- | video-opencv/impl.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/video-opencv/impl-camera.cpp b/video-opencv/impl-camera.cpp index dddd463f..8a540134 100644 --- a/video-opencv/impl-camera.cpp +++ b/video-opencv/impl-camera.cpp @@ -30,7 +30,7 @@ bool cam::is_open() return !!cap; } -bool cam::start(const info& args) +bool cam::start(info& args) { stop(); cap.emplace(idx); diff --git a/video-opencv/impl.hpp b/video-opencv/impl.hpp index f756fb19..3d793490 100644 --- a/video-opencv/impl.hpp +++ b/video-opencv/impl.hpp @@ -34,7 +34,7 @@ struct cam final : camera cam(int idx); ~cam() override; - bool start(const info& args) override; + bool start(info& args) override; void stop() override; bool is_open() override; std::tuple<const frame&, bool> get_frame() override; |