Searched refs:cricket (Results 26 - 50 of 435) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dconstants.h30 namespace cricket { namespace
44 } // namespace cricket
H A Dwebrtcvideocapturerfactory.h33 namespace cricket { namespace
35 // Creates instances of cricket::WebRtcVideoCapturer.
41 } // namespace cricket
H A Dwebrtcmediaengine.cc41 namespace cricket { namespace
74 } // namespace cricket
77 cricket::MediaEngineInterface* CreateWebRtcMediaEngine(
80 cricket::WebRtcVideoEncoderFactory* encoder_factory,
81 cricket::WebRtcVideoDecoderFactory* decoder_factory) {
84 return new cricket::WebRtcMediaEngine2(
88 return new cricket::WebRtcMediaEngine(
93 void DestroyWebRtcMediaEngine(cricket::MediaEngineInterface* media_engine) {
97 namespace cricket { namespace
102 return new 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/app/webrtc/
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 Dvideosource.cc36 using cricket::CaptureState;
52 static const cricket::VideoFormatPod kDefaultFormat =
53 {640, 480, FPS_TO_INTERVAL(30), cricket::FOURCC_ANY};
56 static const cricket::VideoFormatPod kVideoFormats[] = {
57 {1920, 1080, FPS_TO_INTERVAL(30), cricket::FOURCC_ANY},
58 {1280, 720, FPS_TO_INTERVAL(30), cricket::FOURCC_ANY},
59 {960, 720, FPS_TO_INTERVAL(30), cricket::FOURCC_ANY},
60 {640, 360, FPS_TO_INTERVAL(30), cricket::FOURCC_ANY},
61 {640, 480, FPS_TO_INTERVAL(30), cricket::FOURCC_ANY},
62 {320, 240, FPS_TO_INTERVAL(30), cricket
[all...]
H A Dportallocatorfactory.cc55 cricket::PortAllocator* PortAllocatorFactory::CreatePortAllocator(
58 cricket::ServerAddresses stun_hosts;
64 scoped_ptr<cricket::BasicPortAllocator> allocator(
65 new cricket::BasicPortAllocator(
69 cricket::RelayCredentials credentials(turn[i].username, turn[i].password);
70 cricket::RelayServerConfig relay_server(cricket::RELAY_TURN);
71 cricket::ProtocolType protocol;
72 if (cricket::StringToProto(turn[i].transport_type.c_str(), &protocol)) {
73 relay_server.ports.push_back(cricket
[all...]
H A Djsepsessiondescription_unittest.cc58 static cricket::SessionDescription* CreateCricketSessionDescription() {
59 cricket::SessionDescription* desc(new cricket::SessionDescription());
61 scoped_ptr<cricket::AudioContentDescription> audio(
62 new cricket::AudioContentDescription());
65 scoped_ptr<cricket::VideoContentDescription> video(
66 new cricket::VideoContentDescription());
68 audio->AddCodec(cricket::AudioCodec(103, "ISAC", 16000, 0, 0, 0));
69 desc->AddContent(cricket::CN_AUDIO, cricket
[all...]
H A Dremotevideocapturer_unittest.cc34 using cricket::CaptureState;
35 using cricket::VideoCapturer;
36 using cricket::VideoFormat;
37 using cricket::VideoFormatPod;
38 using cricket::VideoFrame;
42 {640, 480, FPS_TO_INTERVAL(30), cricket::FOURCC_ANY};
49 capture_state_(cricket::CS_STOPPED) {}
93 EXPECT_TRUE_WAIT((cricket::CS_RUNNING == capture_state()), kMaxWaitMs);
100 EXPECT_TRUE_WAIT((cricket::CS_STOPPED == capture_state()), kMaxWaitMs);
110 EXPECT_EQ(cricket
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
H A DRTCVideoCapturer.mm38 rtc::scoped_ptr<cricket::VideoCapturer> _capturer;
43 rtc::scoped_ptr<cricket::DeviceManagerInterface> device_manager(
44 cricket::DeviceManagerFactory::Create());
47 cricket::Device device;
52 rtc::scoped_ptr<cricket::VideoCapturer> capturer(
63 - (id)initWithCapturer:(cricket::VideoCapturer*)capturer {
70 - (cricket::VideoCapturer*)takeNativeCapturer {
/external/chromium_org/content/renderer/media/webrtc/
H A Dwebrtc_video_capturer_adapter.h20 // WebRtcVideoCapturerAdapter implements a simple cricket::VideoCapturer that is
23 // PeerConnection access cricket::VideoCapturer from a libJingle worker thread.
29 : NON_EXPORTED_BASE(public cricket::VideoCapturer) {
40 // cricket::VideoCapturer implementation.
42 virtual cricket::CaptureState Start(
43 const cricket::VideoFormat& capture_format) OVERRIDE;
47 virtual bool GetBestCaptureFormat(const cricket::VideoFormat& desired,
48 cricket::VideoFormat* best_format) OVERRIDE;
/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/session/media/
H A Dmediamessages_unittest.cc41 namespace cricket { namespace
53 // CreateMediaSessionDescription uses a static variable cricket::NS_JINGLE_RTP
76 static cricket::StreamParams CreateStream(const std::string& nick,
89 cricket::SsrcGroup(semantics, stream.ssrcs));
144 static cricket::SessionDescription* CreateMediaSessionDescription(
147 cricket::SessionDescription* desc = new cricket::SessionDescription();
148 desc->AddContent(audio_content_name, cricket::NS_JINGLE_RTP,
149 new cricket::AudioContentDescription());
150 desc->AddContent(video_content_name, cricket
[all...]
/external/chromium_org/remoting/host/
H A Dcast_video_capturer_adapter.cc43 // Convert the webrtc::DesktopFrame to a cricket::CapturedFrame.
44 cricket::CapturedFrame captured_frame;
59 captured_frame.fourcc = cricket::FOURCC_ARGB;
65 const cricket::VideoFormat& desired,
66 cricket::VideoFormat* best_format) {
72 best_format->fourcc = cricket::FOURCC_ARGB;
77 cricket::CaptureState CastVideoCapturerAdapter::Start(
78 const cricket::VideoFormat& capture_format) {
81 DCHECK_EQ(capture_format.fourcc, (static_cast<uint32>(cricket::FOURCC_ARGB)));
85 return cricket
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/sctp/
H A Dsctpdataengine_unittest.cc59 class SctpFakeNetworkInterface : public cricket::MediaChannel::NetworkInterface,
67 void SetDestination(cricket::DataMediaChannel* dest) { dest_ = dest; }
117 cricket::DataMediaChannel* dest_;
132 last_params_ = cricket::ReceiveDataParams();
135 virtual void OnDataReceived(const cricket::ReceiveDataParams& params,
144 cricket::ReceiveDataParams last_params() const { return last_params_; }
149 cricket::ReceiveDataParams last_params_;
173 void BindSelf(cricket::SctpDataMediaChannel* channel) {
196 SignalChannelClosedReopener(cricket::SctpDataMediaChannel* channel,
197 cricket
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Drtpdataengine_unittest.cc62 const cricket::ReceiveDataParams& params,
73 cricket::ReceiveDataParams last_received_data_params() const {
81 cricket::ReceiveDataParams last_received_data_params_;
96 iface_.reset(new cricket::FakeNetworkInterface());
106 cricket::RtpDataEngine* CreateEngine(FakeTiming* timing) {
107 cricket::RtpDataEngine* dme = new cricket::RtpDataEngine();
112 cricket::RtpDataMediaChannel* CreateChannel() {
116 cricket::RtpDataMediaChannel* CreateChannel(cricket
[all...]
H A Dcapturemanager_unittest.cc39 const cricket::VideoFormatPod kCameraFormats[] = {
40 {640, 480, cricket::VideoFormat::FpsToInterval(kFps), cricket::FOURCC_I420},
41 {320, 240, cricket::VideoFormat::FpsToInterval(kFps), cricket::FOURCC_I420}
54 capture_state_ = cricket::CS_STOPPED;
60 std::vector<cricket::VideoFormat> formats;
62 formats.push_back(cricket::VideoFormat(kCameraFormats[i]));
68 bool WasRenderedResolution(cricket::VideoFormat format) {
72 cricket
[all...]
H A Dnullvideorenderer.h33 namespace cricket { namespace
46 } // namespace cricket
H A Dvideoframefactory.h30 namespace cricket { namespace
35 // Creates cricket::VideoFrames, or a subclass of cricket::VideoFrame
50 } // namespace cricket
H A Dvideoprocessor.h34 namespace cricket { namespace
49 } // namespace cricket
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Drelayport_unittest.cc54 // (cricket::RelayServer) using all currently available protocols. The
73 relay_port_(cricket::RelayPort::Create(main_, &socket_factory_,
77 relay_server_(new cricket::RelayServer(main_)) {
87 void OnConnectFailure(const cricket::ProtocolAddress* addr) {
91 void OnSoftTimeout(const cricket::ProtocolAddress* addr) {
134 relay_server_->AddInternalServerSocket(server_socket, cricket::PROTO_TCP);
138 cricket::ProtocolAddress(kRelayUdpAddr, cricket::PROTO_UDP));
140 cricket::ProtocolAddress(kRelayTcpAddr, cricket
[all...]
H A Dtransportdescriptionfactory_unittest.cc38 using cricket::TransportDescriptionFactory;
39 using cricket::TransportDescription;
40 using cricket::TransportOptions;
55 EXPECT_EQ(static_cast<size_t>(cricket::ICE_UFRAG_LENGTH),
57 EXPECT_EQ(static_cast<size_t>(cricket::ICE_PWD_LENGTH),
78 f1_.set_secure(cricket::SEC_ENABLED);
79 f2_.set_secure(cricket::SEC_ENABLED);
83 f1_.set_secure(cricket::SEC_DISABLED);
84 f2_.set_secure(cricket::SEC_DISABLED);
87 cricket
[all...]
H A Ddtlstransportchannel_unittest.cc60 using cricket::ConnectionRole;
72 protocol_(cricket::ICEPROTO_GOOGLE),
79 void SetIceProtocol(cricket::TransportProtocol proto) {
90 void SetupChannels(int count, cricket::IceRole role) {
91 transport_.reset(new cricket::DtlsTransport<cricket::FakeTransport>(
97 (role == cricket::ICEROLE_CONTROLLING) ? 1 : 2);
102 cricket::DtlsTransportChannelWrapper* channel =
103 static_cast<cricket::DtlsTransportChannelWrapper*>(
118 cricket
[all...]
/external/chromium_org/jingle/glue/
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/third_party/libjingle/source/talk/media/devices/
H A Ddeviceinfo.h35 namespace cricket { namespace
40 } // namespace cricket

Completed in 460 milliseconds

1234567891011>>