diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-05-02 18:46:36 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-05-02 18:55:46 +0200 |
commit | bac58c2d5e45d838e32bc1d5cc0b12a19365c569 (patch) | |
tree | 500ee959c9b3925f2230ef362218bff82a29e798 /video/camera.hpp | |
parent | 79ae08ed646f6cb2d242274ed04a79d669090143 (diff) |
video: fallback to first available camera
Diffstat (limited to 'video/camera.hpp')
-rw-r--r-- | video/camera.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/video/camera.hpp b/video/camera.hpp index 9ff2821b..250bad36 100644 --- a/video/camera.hpp +++ b/video/camera.hpp @@ -85,8 +85,8 @@ namespace video { using camera_impl = impl::camera; -OTR_VIDEO_EXPORT -std::unique_ptr<camera_impl> make_camera(const QString& name); +OTR_VIDEO_EXPORT std::unique_ptr<camera_impl> make_camera(const QString& name); +OTR_VIDEO_EXPORT std::unique_ptr<camera_impl> make_camera_(const QString& name); OTR_VIDEO_EXPORT std::vector<QString> camera_names(); |