OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:videocapturer
(Results
1 - 25
of
86
) sorted by null
1
2
3
4
/external/webrtc/webrtc/test/
video_capturer.h
23
class
VideoCapturer
{
25
static
VideoCapturer
* Create(VideoCaptureInput* input,
30
virtual ~
VideoCapturer
() {}
36
explicit
VideoCapturer
(VideoCaptureInput* input);
video_capturer.cc
20
class NullCapturer : public
VideoCapturer
{
22
NullCapturer() :
VideoCapturer
(NULL) {}
29
VideoCapturer
::
VideoCapturer
(VideoCaptureInput* input) : input_(input) {
32
VideoCapturer
*
VideoCapturer
::Create(VideoCaptureInput* input,
/external/webrtc/talk/media/base/
capturemanager.h
30
// some class want to listen to same
VideoCapturer
they can't individually stop
37
// called concurrently. Note that callbacks are called by the
VideoCapturer
's
54
class
VideoCapturer
;
68
virtual bool StartVideoCapture(
VideoCapturer
* video_capturer,
70
virtual bool StopVideoCapture(
VideoCapturer
* video_capturer,
77
virtual bool RestartVideoCapture(
VideoCapturer
* video_capturer,
82
virtual bool AddVideoRenderer(
VideoCapturer
* video_capturer,
84
virtual bool RemoveVideoRenderer(
VideoCapturer
* video_capturer,
87
sigslot::repeater2<
VideoCapturer
*, CaptureState> SignalCapturerStateChange;
90
typedef std::map<
VideoCapturer
*, VideoCapturerState*> CaptureStates
[
all
...]
capturerenderadapter.h
29
//
VideoCapturer
to any number of VideoRenders such that the former feeds the
39
#include "talk/media/base/
videocapturer
.h"
45
class
VideoCapturer
;
51
static CaptureRenderAdapter* Create(
VideoCapturer
* video_capturer);
57
VideoCapturer
* video_capturer() { return video_capturer_; }
73
explicit CaptureRenderAdapter(
VideoCapturer
* video_capturer);
77
void OnVideoFrame(
VideoCapturer
* capturer, const VideoFrame* video_frame);
84
VideoCapturer
* video_capturer_;
capturemanager.cc
32
#include "talk/media/base/
videocapturer
.h"
44
static VideoCapturerState* Create(
VideoCapturer
* video_capturer);
49
VideoFormat GetHighestFormat(
VideoCapturer
* video_capturer) const;
57
VideoCapturer
* GetVideoCapturer() {
91
VideoCapturerState* VideoCapturerState::Create(
VideoCapturer
* video_capturer) {
129
VideoCapturer
* video_capturer) const {
183
bool CaptureManager::StartVideoCapture(
VideoCapturer
* video_capturer,
198
//
VideoCapturer
has already been started. Don't start listening to
216
bool CaptureManager::StopVideoCapture(
VideoCapturer
* video_capturer,
235
VideoCapturer
* video_capturer
[
all
...]
videocapturerfactory.h
36
class
VideoCapturer
;
43
virtual
VideoCapturer
* Create(const Device& device) = 0;
51
virtual
VideoCapturer
* Create(const ScreencastId& screenid) = 0;
videocapturer.cc
28
// Implementation file of class
VideoCapturer
.
30
#include "talk/media/base/
videocapturer
.h"
98
// Implementation of class
VideoCapturer
100
VideoCapturer
::
VideoCapturer
()
108
VideoCapturer
::
VideoCapturer
(rtc::Thread* thread)
116
void
VideoCapturer
::Construct() {
121
SignalFrameCaptured.connect(this, &
VideoCapturer
::OnFrameCaptured);
139
const std::vector<VideoFormat>*
VideoCapturer
::GetSupportedFormats() const
[
all
...]
fakecapturemanager.h
40
virtual bool AddVideoRenderer(
VideoCapturer
* video_capturer,
44
virtual bool RemoveVideoRenderer(
VideoCapturer
* video_capturer,
videocapturer.h
28
// Declaration of abstract class
VideoCapturer
102
//
VideoCapturer
is an abstract class that defines the interfaces for video
112
// Create an object of a subclass of
VideoCapturer
128
class
VideoCapturer
134
VideoCapturer
();
135
explicit
VideoCapturer
(rtc::Thread* thread);
136
virtual ~
VideoCapturer
() {}
217
// Tells
videocapturer
whether to apply the pending rotation. By default, the
228
// Caps the
VideoCapturer
's format according to max_format. It can e.g. be
252
sigslot::signal2<
VideoCapturer
*, CaptureState> SignalStateChange
[
all
...]
fakescreencapturerfactory.h
44
virtual cricket::
VideoCapturer
* Create(const ScreencastId& window) {
68
void OnStateChange(cricket::
VideoCapturer
*, cricket::CaptureState state) {
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
VideoCapturer.java
30
/** Java version of cricket::
VideoCapturer
. */
31
public class
VideoCapturer
{
34
protected
VideoCapturer
() {
37
public static
VideoCapturer
create(String deviceName) {
40
return (
VideoCapturer
) (capturer);
44
// Sets |nativeCapturer| to be owned by
VideoCapturer
.
/external/webrtc/talk/app/webrtc/
remotevideocapturer.h
34
#include "talk/media/base/
videocapturer
.h"
39
// RemoteVideoCapturer implements a simple cricket::
VideoCapturer
which
41
// It's used as the remote video source's
VideoCapturer
so that the remote video
42
// can be used as a cricket::
VideoCapturer
and in that way a remote video stream
44
class RemoteVideoCapturer : public cricket::
VideoCapturer
{
49
// cricket::
VideoCapturer
implementation.
androidvideocapturer.h
33
#include "talk/media/base/
videocapturer
.h"
57
// Android implementation of cricket::
VideoCapturer
for use with WebRtc
59
class AndroidVideoCapturer : public cricket::
VideoCapturer
{
80
// cricket::
VideoCapturer
implementation.
85
// cricket::
VideoCapturer
implementation.
87
// cricket::
VideoCapturer
::SignalFrameCaptured on the thread that calls Start.
101
FrameFactory* frame_factory_; // Owned by cricket::
VideoCapturer
.
videosource.h
37
#include "talk/media/base/
videocapturer
.h"
43
// cricket::
VideoCapturer
and make sure the camera is started at a resolution
68
cricket::
VideoCapturer
* capturer,
78
virtual cricket::
VideoCapturer
* GetVideoCapturer() {
92
cricket::
VideoCapturer
* capturer,
98
void OnStateChange(cricket::
VideoCapturer
* capturer,
103
rtc::scoped_ptr<cricket::
VideoCapturer
> video_capturer_;
remotevideocapturer_unittest.cc
35
using cricket::
VideoCapturer
;
74
void OnStateChange(
VideoCapturer
* capturer,
80
void OnVideoFrame(
VideoCapturer
* capturer, const VideoFrame* frame) {
videosourceinterface.h
42
// Get access to the source implementation of cricket::
VideoCapturer
.
45
virtual cricket::
VideoCapturer
* GetVideoCapturer() = 0;
/external/webrtc/talk/app/webrtc/objc/
RTCVideoCapturer.mm
34
#include "talk/media/base/
videocapturer
.h"
38
rtc::scoped_ptr<cricket::
VideoCapturer
> _capturer;
52
rtc::scoped_ptr<cricket::
VideoCapturer
> capturer(
63
- (id)initWithCapturer:(cricket::
VideoCapturer
*)capturer {
70
- (cricket::
VideoCapturer
*)takeNativeCapturer {
RTCVideoCapturer+Internal.h
34
- (cricket::
VideoCapturer
*)takeNativeCapturer;
36
- (id)initWithCapturer:(cricket::
VideoCapturer
*)capturer;
avfoundationvideocapturer.h
31
#include "talk/media/base/
videocapturer
.h"
41
class AVFoundationVideoCapturer : public cricket::
VideoCapturer
{
/external/webrtc/talk/media/webrtc/
webrtcvideocapturer.h
36
#include "talk/media/base/
videocapturer
.h"
58
// WebRTC-based implementation of
VideoCapturer
.
59
class WebRtcVideoCapturer : public
VideoCapturer
,
69
// Override virtual methods of the parent class
VideoCapturer
.
79
// Override virtual methods of the parent class
VideoCapturer
.
90
// With WebRTC's current
VideoCapturer
implementations, this will mean a
/external/webrtc/talk/media/devices/
yuvframescapturer.h
34
#include "talk/media/base/
videocapturer
.h"
48
class YuvFramesCapturer : public
VideoCapturer
{
65
// Override virtual methods of parent class
VideoCapturer
.
72
// Override virtual methods of parent class
VideoCapturer
.
devicemanager.h
53
class
VideoCapturer
;
88
//
videocapturer
.h for more detail.
89
// Note that once a
VideoCapturer
has been created, calling this API will
97
virtual
VideoCapturer
* CreateVideoCapturer(const Device& device) const = 0;
103
virtual
VideoCapturer
* CreateScreenCapturer(
164
virtual
VideoCapturer
* CreateVideoCapturer(const Device& device) const;
170
virtual
VideoCapturer
* CreateScreenCapturer(
197
VideoCapturer
* MaybeConstructFakeVideoCapturer(const Device& device) const;
filevideocapturer.h
34
// FileVideoCapturer, a subclass of
VideoCapturer
, is a simulated video capturer
43
#include "talk/media/base/
videocapturer
.h"
78
class FileVideoCapturer : public
VideoCapturer
{
117
// Override virtual methods of parent class
VideoCapturer
.
124
// Override virtual methods of parent class
VideoCapturer
.
/external/webrtc/talk/session/media/
channelmanager.h
141
VideoCapturer
* capturer) const;
147
bool StartVideoCapture(
VideoCapturer
* video_capturer,
151
bool MuteToBlackThenPause(
VideoCapturer
* video_capturer, bool muted);
152
bool StopVideoCapture(
VideoCapturer
* video_capturer,
154
bool RestartVideoCapture(
VideoCapturer
* video_capturer,
159
bool AddVideoRenderer(
VideoCapturer
* capturer, VideoRenderer* renderer);
160
bool RemoveVideoRenderer(
VideoCapturer
* capturer, VideoRenderer* renderer);
177
sigslot::signal2<
VideoCapturer
*, CaptureState> SignalVideoCaptureStateChange;
210
void OnVideoCaptureStateChange(
VideoCapturer
* capturer,
213
VideoCapturer
* capturer
[
all
...]
channelmanager.cc
41
#include "talk/media/base/
videocapturer
.h"
65
CaptureStateParams(cricket::
VideoCapturer
* c, cricket::CaptureState s)
68
cricket::
VideoCapturer
* capturer;
449
VideoCapturer
* capturer) const {
458
VideoCapturer
* capturer,
470
VideoCapturer
* capturer, const VideoFormat& video_format) {
477
VideoCapturer
* video_capturer, bool muted) {
482
Bind(&
VideoCapturer
::MuteToBlackThenPause, video_capturer, muted));
487
VideoCapturer
* capturer, const VideoFormat& video_format) {
494
VideoCapturer
* video_capturer
[
all
...]
Completed in 298 milliseconds
1
2
3
4