Home
last modified time | relevance | path

Searched refs:videoCapture (Results 1 – 25 of 68) sorted by relevance

123

/dports/comms/qsstv/qsstv/videocapt/
H A Dvideocapture.cpp58 videoCapture::videoCapture() in videoCapture() function in videoCapture
68 videoCapture::~videoCapture() in ~videoCapture()
74 void videoCapture::close() in close()
83 bool videoCapture::open(QString videoDev) in open()
176 bool videoCapture::setFormat(v4l2_format &fmt) in setFormat()
197 bool videoCapture::getFormat(v4l2_format &fmt) in getFormat()
212 int videoCapture::getFrame() in getFrame()
290 bool videoCapture::captureStop() in captureStop()
307 bool videoCapture::captureStart() in captureStart()
367 bool videoCapture::stopStreaming() in stopStreaming()
[all …]
H A Dvideocapture.h33 class videoCapture : public QObject
38 videoCapture();
39 ~videoCapture();
H A Dcameradialog.h11 class videoCapture; variable
89 videoCapture *videoCapturePtr;
/dports/misc/visp/visp-3.4.0/tutorial/ios/AprilTagLiveCamera/AprilTagLiveCamera/
H A DViewController.swift7 let videoCapture = VideoCapture() variable
12 self.videoCapture.delegate = self in viewDidLoad()
17 self.videoCapture.startCapturing() in viewWillAppear()
29 self.videoCapture.stopCapturing() in viewWillDisappear()
34 self.videoCapture.stopCapturing() in didReceiveMemoryWarning()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/bioinspired/samples/
H A DretinaDemo.cpp62 cv::VideoCapture videoCapture; // in case a video media is used, its manager is declared here in main() local
65 videoCapture.open(parser.get<cv::String>("video")); in main()
69 videoCapture.open(parser.get<int>("camera")); in main()
71 if (videoCapture.isOpened()) in main()
73 videoCapture >> inputFrame; in main()
115 if (videoCapture.isOpened()) in main()
116 videoCapture>>inputFrame; in main()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/bioinspired/samples/cpp/tutorial_code/bioinspired/
H A Dretina_tutorial.cpp56 cv::VideoCapture videoCapture; // in case a video media is used, its manager is declared here in main() local
70 videoCapture.open(0); in main()
74 videoCapture.open(argv[2]); in main()
78 videoCapture>>inputFrame; in main()
127 if (videoCapture.isOpened()) in main()
128 videoCapture>>inputFrame; in main()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/bioinspired/samples/cpp/
H A DretinaDemo.cpp67 cv::VideoCapture videoCapture; // in case a video media is used, its manager is declared here in main() local
81 videoCapture.open(0); in main()
85 videoCapture.open(argv[2]); in main()
89 videoCapture>>inputFrame; in main()
135 if (videoCapture.isOpened()) in main()
136 videoCapture>>inputFrame; in main()
/dports/multimedia/webcamoid/webcamoid-8.8.0/StandAlone/share/qml/
H A DGeneralConfig.qml31 property variant videoCapture: Ak.newElement("VideoCapture",
78 model: videoCapture.captureSubModules
79 currentIndex: model.indexOf(videoCapture.captureLib)
81 onCurrentIndexChanged: videoCapture.captureLib = model[currentIndex]
108 model: videoCapture.codecSubModules
109 currentIndex: model.indexOf(videoCapture.codecLib)
111 onCurrentIndexChanged: videoCapture.codecLib = model[currentIndex]
/dports/multimedia/QtAV/QtAV-1.13.0/examples/videocapture/
H A Dplayerwindow.cpp64 connect(m_player->videoCapture(), SIGNAL(imageCaptured(QImage)), SLOT(updatePreview(QImage))); in PlayerWindow()
65 connect(m_player->videoCapture(), SIGNAL(saved(QString)), SLOT(onCaptureSaved(QString))); in PlayerWindow()
66 connect(m_player->videoCapture(), SIGNAL(failed()), SLOT(onCaptureError())); in PlayerWindow()
98 m_player->videoCapture()->capture(); in capture()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/xfeatures2d/samples/
H A Dpct_webcam.cpp143 VideoCapture videoCapture; in main() local
144 if (!videoCapture.open(0)) in main()
157 videoCapture >> frame; in main()
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/ThirdParty/tgcalls/tgcalls/
H A DManager.cpp94 _videoCapture(std::move(descriptor.videoCapture)),
224 …ng, protocolVersion = _protocolVersion, thread, sendSignalingMessage, videoCapture = _videoCapture… in start()
230 videoCapture, in start()
304 void Manager::setVideoCapture(std::shared_ptr<VideoCaptureInterface> videoCapture) { in setVideoCapture() argument
307 if (_videoCapture == videoCapture) { in setVideoCapture()
310 _videoCapture = videoCapture; in setVideoCapture()
311 _mediaManager->perform(RTC_FROM_HERE, [videoCapture](MediaManager *mediaManager) { in setVideoCapture()
312 mediaManager->setSendVideo(videoCapture); in setVideoCapture()
H A DInstanceImpl.cpp55 void InstanceImpl::setVideoCapture(std::shared_ptr<VideoCaptureInterface> videoCapture) { in setVideoCapture() argument
56 _manager->perform(RTC_FROM_HERE, [videoCapture](Manager *manager) { in setVideoCapture()
57 manager->setVideoCapture(videoCapture); in setVideoCapture()
H A DMediaManager.cpp39 VideoCaptureInterfaceObject *GetVideoCaptureAssumingSameThread(VideoCaptureInterface *videoCapture)… in GetVideoCaptureAssumingSameThread() argument
40 return videoCapture in GetVideoCaptureAssumingSameThread()
41 ? static_cast<VideoCaptureInterfaceImpl*>(videoCapture)->object()->getSyncAssumingSameThread() in GetVideoCaptureAssumingSameThread()
239 std::shared_ptr<VideoCaptureInterface> videoCapture, in MediaManager() argument
256 _outgoingVideoState(videoCapture ? VideoState::Active : VideoState::Inactive), in MediaManager()
257 _videoCapture(std::move(videoCapture)), in MediaManager()
627 void MediaManager::setSendVideo(std::shared_ptr<VideoCaptureInterface> videoCapture) { in setSendVideo() argument
634 _videoCapture = videoCapture; in setSendVideo()
H A DMediaManager.h46 std::shared_ptr<VideoCaptureInterface> videoCapture,
59 void setSendVideo(std::shared_ptr<VideoCaptureInterface> videoCapture);
/dports/multimedia/musique/musique-1.10.1/lib/media/src/qtav/
H A Dmediaqtav.cpp114 auto videoCapture = currentPlayer->videoCapture(); in snapshot() local
115 connect(videoCapture, &QtAV::VideoCapture::imageCaptured, this, &Media::snapshotReady); in snapshot()
116 connect(videoCapture, &QtAV::VideoCapture::failed, this, in snapshot()
118 videoCapture->capture(); in snapshot()
/dports/multimedia/minitube/minitube-3.9.2/lib/media/src/qtav/
H A Dmediaqtav.cpp114 auto videoCapture = currentPlayer->videoCapture(); in snapshot() local
115 connect(videoCapture, &QtAV::VideoCapture::imageCaptured, this, &Media::snapshotReady); in snapshot()
116 connect(videoCapture, &QtAV::VideoCapture::failed, this, in snapshot()
118 videoCapture->capture(); in snapshot()
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/ThirdParty/tgcalls/tgcalls/reference/
H A DInstanceImplReference.cpp30 VideoCaptureInterfaceObject *GetVideoCaptureAssumingSameThread(VideoCaptureInterface *videoCapture)… in GetVideoCaptureAssumingSameThread() argument
31 return videoCapture in GetVideoCaptureAssumingSameThread()
32 … ? static_cast<VideoCaptureInterfaceImpl*>(videoCapture)->object()->getSyncAssumingSameThread() in GetVideoCaptureAssumingSameThread()
210 _videoCapture(descriptor.videoCapture), in InstanceImplReferenceInternal()
397 void setVideoCapture(std::shared_ptr<VideoCaptureInterface> videoCapture) { in setVideoCapture() argument
398 assert(videoCapture != nullptr); in setVideoCapture()
400 _videoCapture = videoCapture; in setVideoCapture()
943 void InstanceImplReference::setVideoCapture(std::shared_ptr<VideoCaptureInterface> videoCapture) { in setVideoCapture() argument
944 internal_->perform(RTC_FROM_HERE, [videoCapture](InstanceImplReferenceInternal *internal) { in setVideoCapture()
945 internal->setVideoCapture(videoCapture); in setVideoCapture()
/dports/www/chromium-legacy/chromium-88.0.4324.182/native_client_sdk/src/examples/api/video_encode/
H A Dexample.dsc19 'PERMISSIONS': ['videoCapture'],
/dports/www/chromium-legacy/chromium-88.0.4324.182/native_client_sdk/src/examples/api/media_stream_video/
H A Dexample.dsc20 'PERMISSIONS': ['videoCapture']
/dports/games/cultivation/Cultivation_8_UnixSource/game2/build/source/
H A DcleanSrc7 rm -r game2/gameSource/videoCapture
/dports/multimedia/QtAV/QtAV-1.13.0/src/
H A DVideoThread.h41 VideoCapture *videoCapture() const;
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/ThirdParty/tgcalls/tgcalls/group/
H A DGroupInstanceImpl.h154 std::shared_ptr<VideoCaptureInterface> videoCapture; // deprecated member
189 virtual void setVideoCapture(std::shared_ptr<VideoCaptureInterface> videoCapture) = 0;
H A DGroupInstanceCustomImpl.h35 void setVideoCapture(std::shared_ptr<VideoCaptureInterface> videoCapture);
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/ThirdParty/tgcalls/tgcalls/v2/
H A DInstanceV2Impl.cpp70 return videoCapture in GetVideoCaptureAssumingSameThread()
891 void setVideoCapture(std::shared_ptr<VideoCaptureInterface> videoCapture) { in setVideoCapture() argument
892 _videoCapture = videoCapture; in setVideoCapture()
966 std::shared_ptr<VideoCaptureInterface> videoCapture() { in videoCapture() function in tgcalls::__anonf6f2390d0111::OutgoingVideoChannel
1158 _videoCapture(descriptor.videoCapture) { in InstanceV2ImplInternal()
1682 if (_outgoingVideoChannel->videoCapture()) { in sendMediaState()
1719 void setVideoCapture(std::shared_ptr<VideoCaptureInterface> videoCapture) { in setVideoCapture() argument
1720 _videoCapture = videoCapture; in setVideoCapture()
1723 _outgoingVideoChannel->setVideoCapture(videoCapture); in setVideoCapture()
1898 _internal->perform(RTC_FROM_HERE, [videoCapture](InstanceV2ImplInternal *internal) { in setVideoCapture()
[all …]
/dports/multimedia/QtAV/QtAV-1.13.0/qml/QmlAV/
H A DQmlAVPlayer.h81 Q_PROPERTY(QtAV::VideoCapture *videoCapture READ videoCapture CONSTANT)
211 QtAV::VideoCapture *videoCapture() const;

123