Searched defs:cricket (Results 1 - 25 of 279) sorted by path

1234567891011>>

/external/chromium_org/content/renderer/media/webrtc/
H A Dwebrtc_local_audio_track_adapter.h17 namespace cricket { namespace
33 : NON_EXPORTED_BASE(public cricket::AudioRenderer),
73 // cricket::AudioCapturer implementation.
79 virtual cricket::AudioRenderer* GetRenderer() OVERRIDE;
/external/chromium_org/jingle/glue/
H A Dchannel_socket_adapter.h19 namespace cricket { namespace
21 } // namespace cricket
32 explicit TransportChannelSocketAdapter(cricket::TransportChannel* channel);
55 void OnNewPacket(cricket::TransportChannel* channel,
60 void OnWritableState(cricket::TransportChannel* channel);
61 void OnChannelDestroyed(cricket::TransportChannel* channel);
65 cricket::TransportChannel* channel_;
H A Dutils.h18 namespace cricket { namespace
20 } // namespace cricket
33 std::string SerializeP2PCandidate(const cricket::Candidate& candidate);
35 cricket::Candidate* candidate);
/external/chromium_org/remoting/protocol/
H A Dlibjingle_transport_factory.h14 namespace cricket { namespace
17 } // namespace cricket
39 // cricket::HttpPortAllocatorBase pointer for the |port_allocator|, so that it
43 scoped_ptr<cricket::HttpPortAllocatorBase> port_allocator,
59 scoped_ptr<cricket::HttpPortAllocatorBase> port_allocator_;
H A Dtransport.h33 namespace cricket { namespace
35 } // namespace cricket
76 const cricket::Candidate& candidate) = 0;
101 virtual void AddRemoteCandidate(const cricket::Candidate& candidate) = 0;
/external/chromium_org/third_party/libjingle/overrides/
H A Dinit_webrtc.h18 namespace cricket { namespace
22 } // namespace cricket
30 typedef cricket::MediaEngineInterface* (*CreateWebRtcMediaEngineFunction)(
33 cricket::WebRtcVideoEncoderFactory* encoder_factory,
34 cricket::WebRtcVideoDecoderFactory* decoder_factory);
37 cricket::MediaEngineInterface* media_engine);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Djsep.h39 namespace cricket { namespace
42 } // namespace cricket
67 virtual const cricket::Candidate& candidate() const = 0;
108 virtual cricket::SessionDescription* description() = 0;
109 virtual const cricket::SessionDescription* description() const = 0;
H A Djsepsessiondescription.h40 namespace cricket { namespace
55 bool Initialize(cricket::SessionDescription* description,
59 virtual cricket::SessionDescription* description() {
62 virtual const cricket::SessionDescription* description() const {
92 rtc::scoped_ptr<cricket::SessionDescription> description_;
H A Dmediastreaminterface.h44 namespace cricket { namespace
51 } // namespace cricket
119 virtual void RenderFrame(const cricket::VideoFrame* frame) = 0;
230 virtual cricket::AudioRenderer* GetRenderer() { return NULL; }
H A Dmediastreamprovider.h31 namespace cricket { namespace
39 } // namespace cricket
49 cricket::AudioRenderer* renderer) = 0;
53 const cricket::AudioOptions& options,
54 cricket::AudioRenderer* renderer) = 0;
70 cricket::VideoCapturer* camera) = 0;
73 cricket::VideoRenderer* renderer) = 0;
76 const cricket::VideoOptions* options) = 0;
H A Dpeerconnectioninterface.h87 namespace cricket { namespace
390 // Factory class used for creating cricket::PortAllocator that is used
420 virtual cricket::PortAllocator* CreatePortAllocator(
532 cricket::VideoCapturer* capturer,
572 cricket::WebRtcVideoEncoderFactory* encoder_factory,
573 cricket::WebRtcVideoDecoderFactory* decoder_factory);
H A Dportallocatorfactory.h30 // This implementation creates instances of cricket::HTTPPortAllocator and uses
39 namespace cricket { namespace
55 virtual cricket::PortAllocator* CreatePortAllocator(
H A Dstatscollector_unittest.cc46 using cricket::StatsOptions;
57 namespace cricket { namespace
62 } // namespace cricket
77 explicit MockWebRtcSession(cricket::ChannelManager* channel_manager)
81 MOCK_METHOD0(voice_channel, cricket::VoiceChannel*());
82 MOCK_METHOD0(video_channel, cricket::VideoChannel*());
87 MOCK_METHOD1(GetStats, bool(cricket::SessionStats*));
88 MOCK_METHOD1(GetTransport, cricket::Transport*(const std::string&));
91 class MockVideoMediaChannel : public cricket::FakeVideoMediaChannel {
94 : cricket
[all...]
H A Dvideosource.h41 // cricket::VideoCapturer and make sure the camera is started at a resolution
47 namespace cricket { namespace
51 } // namespace cricket
65 cricket::ChannelManager* channel_manager,
66 cricket::VideoCapturer* capturer,
70 virtual const cricket::VideoOptions* options() const { return &options_; }
71 virtual cricket::VideoRenderer* FrameInput();
73 virtual cricket::VideoCapturer* GetVideoCapturer() {
78 virtual void AddSink(cricket::VideoRenderer* output);
79 virtual void RemoveSink(cricket
[all...]
H A Dwebrtcsdp.cc52 using cricket::AudioContentDescription;
53 using cricket::Candidate;
54 using cricket::Candidates;
55 using cricket::ContentDescription;
56 using cricket::ContentInfo;
57 using cricket::CryptoParams;
58 using cricket::DataContentDescription;
59 using cricket::ICE_CANDIDATE_COMPONENT_RTP;
60 using cricket::ICE_CANDIDATE_COMPONENT_RTCP;
61 using cricket
91 namespace cricket { namespace
[all...]
H A Dwebrtcsession.h44 namespace cricket { namespace
55 } // namespace cricket
104 class WebRtcSession : public cricket::BaseSession,
111 WebRtcSession(cricket::ChannelManager* channel_manager,
114 cricket::PortAllocator* port_allocator,
130 virtual cricket::VoiceChannel* voice_channel() {
133 virtual cricket::VideoChannel* video_channel() {
136 virtual cricket::DataChannel* data_channel() {
140 void SetSdesPolicy(cricket::SecurePolicy secure_policy);
141 cricket
[all...]
H A Dwebrtcsessiondescriptionfactory.h36 namespace cricket { namespace
39 } // namespace cricket
74 const cricket::MediaSessionOptions& options)
81 cricket::MediaSessionOptions options;
94 cricket::ChannelManager* channel_manager,
100 cricket::DataChannelType dct,
115 void SetSdesPolicy(cricket::SecurePolicy secure_policy);
116 cricket::SecurePolicy SdesPolicy() const;
154 cricket::TransportDescriptionFactory transport_desc_factory_;
155 cricket
[all...]
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dcallclient.h70 namespace cricket { namespace
79 } // namespace cricket
88 StaticRenderedView(const cricket::StaticVideoView& view,
89 cricket::VideoRenderer* renderer) :
94 cricket::StaticVideoView view;
95 cricket::VideoRenderer* renderer;
99 typedef std::map<std::pair<cricket::Session*, uint32>,
109 cricket::MediaSessionClient* media_client() const { return media_client_; }
110 void SetMediaEngine(cricket::MediaEngineInterface* media_engine) {
122 void SetDataChannelType(cricket
[all...]
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
H A Dconductor.h47 namespace cricket { namespace
49 } // namespace cricket
78 cricket::VideoCapturer* OpenVideoCaptureDevice();
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Daudioframe.h31 namespace cricket { namespace
62 } // namespace cricket
H A Daudiorenderer.h31 namespace cricket { namespace
74 } // namespace cricket
H A Dcapturemanager.cc37 namespace cricket { namespace
396 } // namespace cricket
H A Dcapturemanager.h53 namespace cricket { namespace
112 } // namespace cricket
H A Dcapturerenderadapter.cc35 namespace cricket { namespace
144 } // namespace cricket
H A Dcapturerenderadapter.h43 namespace cricket { namespace
89 } // namespace cricket

Completed in 320 milliseconds

1234567891011>>