HomeSort by relevance Sort by last modified time
    Searched refs:cricket (Results 1 - 25 of 327) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/p2p/base/
sessionid.h 16 namespace cricket { namespace
18 } // namespace cricket
transportdescription.cc 17 namespace cricket { namespace
38 case cricket::CONNECTIONROLE_ACTIVE:
39 *role_str = cricket::CONNECTIONROLE_ACTIVE_STR;
41 case cricket::CONNECTIONROLE_ACTPASS:
42 *role_str = cricket::CONNECTIONROLE_ACTPASS_STR;
44 case cricket::CONNECTIONROLE_PASSIVE:
45 *role_str = cricket::CONNECTIONROLE_PASSIVE_STR;
47 case cricket::CONNECTIONROLE_HOLDCONN:
48 *role_str = cricket::CONNECTIONROLE_HOLDCONN_STR;
56 } // namespace cricket
    [all...]
transport_unittest.cc 17 using cricket::Candidate;
18 using cricket::Candidates;
19 using cricket::Transport;
20 using cricket::FakeTransport;
21 using cricket::TransportChannel;
22 using cricket::FakeTransportChannel;
23 using cricket::IceRole;
24 using cricket::TransportDescription;
63 transport_->SetIceRole(cricket::ICEROLE_CONTROLLING);
65 cricket::TransportDescription local_desc(kIceUfrag1, kIcePwd1)
    [all...]
  /external/webrtc/talk/media/base/
cpuid_unittest.cc 38 << cricket::CpuInfo::TestCpuFlag(cricket::CpuInfo::kCpuHasARM);
40 << cricket::CpuInfo::TestCpuFlag(cricket::CpuInfo::kCpuHasNEON);
42 << cricket::CpuInfo::TestCpuFlag(cricket::CpuInfo::kCpuHasX86);
44 << cricket::CpuInfo::TestCpuFlag(cricket::CpuInfo::kCpuHasSSE2);
46 << cricket::CpuInfo::TestCpuFlag(cricket::CpuInfo::kCpuHasSSSE3)
    [all...]
fakescreencapturerfactory.h 34 namespace cricket { namespace
37 : public cricket::ScreenCapturerFactory,
42 capture_state_(cricket::CS_STOPPED) {}
44 virtual cricket::VideoCapturer* Create(const ScreencastId& window) {
48 window_capturer_ = new cricket::FakeVideoCapturer;
58 cricket::FakeVideoCapturer* window_capturer() { return window_capturer_; }
60 cricket::CaptureState capture_state() { return capture_state_; }
63 void OnWindowCapturerDestroyed(cricket::FakeVideoCapturer* capturer) {
68 void OnStateChange(cricket::VideoCapturer*, cricket::CaptureState state)
    [all...]
videocapturer_unittest.cc 39 using cricket::FakeVideoCapturer;
55 : capture_state_(cricket::CS_STOPPED),
69 void OnVideoFrame(cricket::VideoCapturer*, const cricket::VideoFrame* frame) {
78 void OnStateChange(cricket::VideoCapturer*,
79 cricket::CaptureState capture_state) {
83 cricket::CaptureState capture_state() { return capture_state_; }
89 cricket::FakeVideoCapturer capturer_;
90 cricket::CaptureState capture_state_;
93 cricket::FakeVideoRenderer renderer_
    [all...]
mediacommon.h 33 namespace cricket { namespace
42 } // namespace cricket
fakevideocapturer.h 43 namespace cricket { namespace
46 class FakeVideoCapturer : public cricket::VideoCapturer {
55 set_frame_factory(new cricket::WebRtcVideoFrameFactory());
58 std::vector<cricket::VideoFormat> formats;
59 formats.push_back(cricket::VideoFormat(1280, 720,
60 cricket::VideoFormat::FpsToInterval(30), cricket::FOURCC_I420));
61 formats.push_back(cricket::VideoFormat(640, 480,
62 cricket::VideoFormat::FpsToInterval(30), cricket::FOURCC_I420))
    [all...]
streamparams_unittest.cc 38 static cricket::StreamParams CreateStreamParamsWithSsrcGroup(
42 cricket::StreamParams stream;
44 cricket::SsrcGroup sg(semantics, ssrcs);
51 cricket::SsrcGroup ssrc_groups[] = {
52 cricket::SsrcGroup("ABC", MAKE_VECTOR(kSsrcs1)),
53 cricket::SsrcGroup("ABC", MAKE_VECTOR(kSsrcs2)),
54 cricket::SsrcGroup("Abc", MAKE_VECTOR(kSsrcs2)),
55 cricket::SsrcGroup("abc", MAKE_VECTOR(kSsrcs2)),
67 cricket::SsrcGroup sg1("ABC", MAKE_VECTOR(kSsrcs1));
70 cricket::SsrcGroup sg2("Abc", MAKE_VECTOR(kSsrcs1))
    [all...]
  /external/webrtc/talk/app/webrtc/test/
fakeperiodicvideocapturer.h 28 // FakePeriodicVideoCapturer implements a fake cricket::VideoCapturer that
39 class FakePeriodicVideoCapturer : public cricket::FakeVideoCapturer {
42 std::vector<cricket::VideoFormat> formats;
43 formats.push_back(cricket::VideoFormat(1280, 720,
44 cricket::VideoFormat::FpsToInterval(30), cricket::FOURCC_I420));
45 formats.push_back(cricket::VideoFormat(640, 480,
46 cricket::VideoFormat::FpsToInterval(30), cricket::FOURCC_I420));
47 formats.push_back(cricket::VideoFormat(640, 360
    [all...]
  /external/webrtc/talk/app/webrtc/
videosourceinterface.h 42 // Get access to the source implementation of cricket::VideoCapturer.
45 virtual cricket::VideoCapturer* GetVideoCapturer() = 0;
52 virtual void AddSink(cricket::VideoRenderer* output) = 0;
53 virtual void RemoveSink(cricket::VideoRenderer* output) = 0;
54 virtual const cricket::VideoOptions* options() const = 0;
55 virtual cricket::VideoRenderer* FrameInput() = 0;
videosource.h 43 // cricket::VideoCapturer and make sure the camera is started at a resolution
49 namespace cricket { namespace
53 } // namespace cricket
67 cricket::ChannelManager* channel_manager,
68 cricket::VideoCapturer* capturer,
75 virtual const cricket::VideoOptions* options() const { return &options_; }
76 virtual cricket::VideoRenderer* FrameInput();
78 virtual cricket::VideoCapturer* GetVideoCapturer() {
87 virtual void AddSink(cricket::VideoRenderer* output);
88 virtual void RemoveSink(cricket::VideoRenderer* output)
    [all...]
remotevideocapturer.cc 39 cricket::CaptureState RemoteVideoCapturer::Start(
40 const cricket::VideoFormat& capture_format) {
41 if (capture_state() == cricket::CS_RUNNING) {
49 return cricket::CS_RUNNING;
53 if (capture_state() == cricket::CS_STOPPED) {
61 SetCaptureState(cricket::CS_STOPPED);
65 return capture_state() == cricket::CS_RUNNING;
71 fourccs->push_back(cricket::FOURCC_I420);
76 const cricket::VideoFormat& desired, cricket::VideoFormat* best_format)
    [all...]
remotevideocapturer.h 39 // RemoteVideoCapturer implements a simple cricket::VideoCapturer which
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.
50 cricket::CaptureState Start(
51 const cricket::VideoFormat& capture_format) override;
55 bool GetBestCaptureFormat(const cricket::VideoFormat& desired,
56 cricket::VideoFormat* best_format) override;
videosourceproxy.h 42 PROXY_METHOD0(cricket::VideoCapturer*, GetVideoCapturer)
45 PROXY_METHOD1(void, AddSink, cricket::VideoRenderer*)
46 PROXY_METHOD1(void, RemoveSink, cricket::VideoRenderer*)
47 PROXY_CONSTMETHOD0(const cricket::VideoOptions*, options)
48 PROXY_METHOD0(cricket::VideoRenderer*, FrameInput)
mediacontroller.h 33 namespace cricket { namespace
35 } // namespace cricket
47 cricket::ChannelManager* channel_manager);
51 virtual cricket::ChannelManager* channel_manager() const = 0;
mediastreamprovider.h 34 namespace cricket { namespace
42 } // namespace cricket
66 const cricket::AudioOptions& options,
67 cricket::AudioRenderer* renderer) = 0;
89 cricket::VideoCapturer* camera) = 0;
93 cricket::VideoRenderer* renderer) = 0;
97 const cricket::VideoOptions* options) = 0;
fakemediacontroller.h 34 namespace cricket { namespace
38 explicit FakeMediaController(cricket::ChannelManager* channel_manager,
46 cricket::ChannelManager* channel_manager() const override {
51 cricket::ChannelManager* channel_manager_;
54 } // namespace cricket
  /external/webrtc/talk/app/webrtc/objc/
RTCVideoCapturer+Internal.h 34 - (cricket::VideoCapturer*)takeNativeCapturer;
36 - (id)initWithCapturer:(cricket::VideoCapturer*)capturer;
RTCI420Frame+Internal.h 34 - (instancetype)initWithVideoFrame:(const cricket::VideoFrame*)videoFrame;
avfoundationvideocapturer.h 41 class AVFoundationVideoCapturer : public cricket::VideoCapturer {
46 cricket::CaptureState Start(const cricket::VideoFormat& format) override;
53 fourccs->push_back(cricket::FOURCC_NV12);
64 // Converts the sample buffer into a cricket::CapturedFrame and signals the
70 void SignalFrameCapturedOnStartThread(const cricket::CapturedFrame* frame);
  /external/webrtc/talk/media/devices/
dummydevicemanager.cc 30 namespace cricket { namespace
38 }; // namespace cricket
  /external/webrtc/talk/session/media/
rtcpmuxfilter_unittest.cc 34 cricket::RtcpMuxFilter filter;
41 filter.SetOffer(true, cricket::CS_LOCAL);
44 filter.SetAnswer(true, cricket::CS_REMOTE);
49 cricket::RtcpMuxFilter filter;
56 filter.SetOffer(true, cricket::CS_REMOTE);
59 filter.SetAnswer(true, cricket::CS_LOCAL);
64 cricket::RtcpMuxFilter filter;
68 filter.SetOffer(true, cricket::CS_REMOTE);
70 filter.SetProvisionalAnswer(false, cricket::CS_LOCAL);
73 filter.SetProvisionalAnswer(true, cricket::CS_LOCAL)
    [all...]
  /external/webrtc/talk/media/webrtc/
constants.h 31 namespace cricket { namespace
42 } // namespace cricket
webrtcvideocapturerfactory.h 34 namespace cricket { namespace
36 // Creates instances of cricket::WebRtcVideoCapturer.
42 } // namespace cricket

Completed in 631 milliseconds

1 2 3 4 5 6 7 8 91011>>