Searched refs:cricket (Results 101 - 125 of 435) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideoframefactory.cc32 namespace cricket { namespace
47 } // namespace cricket
H A Dwebrtcmediaengine.h38 namespace cricket { namespace
47 cricket::MediaEngineInterface* CreateWebRtcMediaEngine(
49 cricket::WebRtcVideoEncoderFactory* encoder_factory,
50 cricket::WebRtcVideoDecoderFactory* decoder_factory);
53 void DestroyWebRtcMediaEngine(cricket::MediaEngineInterface* media_engine);
58 namespace cricket { namespace
77 } // namespace cricket
83 namespace cricket { namespace
87 class DelegatingWebRtcMediaEngine : public cricket::MediaEngineInterface {
194 cricket
[all...]
H A Dwebrtcvideoengine2_unittest.cc40 static const cricket::VideoCodec kVp8Codec720p(100, "VP8", 1280, 720, 30, 0);
41 static const cricket::VideoCodec kVp8Codec360p(100, "VP8", 640, 360, 30, 0);
42 static const cricket::VideoCodec kVp8Codec270p(100, "VP8", 480, 270, 30, 0);
43 static const cricket::VideoCodec kVp8Codec180p(100, "VP8", 320, 180, 30, 0);
45 static const cricket::VideoCodec kVp8Codec(100, "VP8", 640, 400, 30, 0);
46 static const cricket::VideoCodec kVp9Codec(101, "VP9", 640, 400, 30, 0);
47 static const cricket::VideoCodec kRedCodec(116, "red", 0, 0, 0, 0);
48 static const cricket::VideoCodec kUlpfecCodec(117, "ulpfec", 0, 0, 0, 0);
55 void VerifyCodecHasDefaultFeedbackParams(const cricket::VideoCodec& codec) {
56 EXPECT_TRUE(codec.HasFeedbackParam(cricket
68 namespace cricket { namespace
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dtransportinfo.h39 namespace cricket { namespace
58 } // namespace cricket
H A Dp2ptransportchannel_unittest.cc48 using cricket::kDefaultPortAllocatorFlags;
49 using cricket::kMinimumStepDelay;
50 using cricket::kDefaultStepDelay;
51 using cricket::PORTALLOCATOR_ENABLE_SHARED_UFRAG;
52 using cricket::PORTALLOCATOR_ENABLE_SHARED_SOCKET;
53 using cricket::ServerAddresses;
57 static const int kOnlyLocalPorts = cricket::PORTALLOCATOR_DISABLE_STUN |
58 cricket::PORTALLOCATOR_DISABLE_RELAY |
59 cricket::PORTALLOCATOR_DISABLE_TCP;
90 static const SocketAddress kStunAddr("99.99.99.1", cricket
[all...]
H A Dturnport_unittest.cc52 using cricket::Connection;
53 using cricket::Port;
54 using cricket::PortInterface;
55 using cricket::TurnPort;
56 using cricket::UDPPort;
63 cricket::TURN_SERVER_PORT);
65 cricket::TURN_SERVER_PORT);
68 "99.99.99.6", cricket::TURN_SERVER_PORT);
70 "2400:4030:1:2c00:be30:abcd:efab:cdef", cricket::TURN_SERVER_PORT);
82 static const cricket
[all...]
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dmediasink.h31 namespace cricket { namespace
46 } // namespace cricket
H A Dchannel_unittest.cc56 using cricket::CA_OFFER;
57 using cricket::CA_PRANSWER;
58 using cricket::CA_ANSWER;
59 using cricket::CA_UPDATE;
60 using cricket::FakeVoiceMediaChannel;
61 using cricket::ScreencastId;
62 using cricket::StreamParams;
63 using cricket::TransportChannel;
66 static const cricket::AudioCodec kPcmuCodec(0, "PCMU", 64000, 8000, 1, 0);
67 static const cricket
[all...]
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dcallclient.cc196 cricket::CallOptions options;
197 options.video_bandwidth = GetInt(words, 1, cricket::kAutoBandwidth);
214 cricket::CallOptions options;
216 options.video_bandwidth = cricket::kAutoBandwidth;
218 options.AddStream(cricket::MEDIA_TYPE_VIDEO, "", "");
257 cricket::ScreencastId screencastid;
258 cricket::Session* session = GetFirstSession();
268 cricket::Session* session = GetFirstSession();
331 cricket::CallOptions options;
338 int bandwidth = GetInt(words, 2, cricket
[all...]
H A Dcall_main.cc183 static std::vector<cricket::AudioCodec> codecs;
184 static const cricket::AudioCodec ISAC(103, "ISAC", 40000, 16000, 1, 0);
186 cricket::MediaEngineInterface *CreateAndroidMediaEngine() {
187 cricket::FakeMediaEngine *engine = new cricket::FakeMediaEngine();
201 bool GetSecurePolicy(const std::string& in, cricket::SecurePolicy* out) {
203 *out = cricket::SEC_DISABLED;
205 *out = cricket::SEC_ENABLED;
207 *out = cricket::SEC_REQUIRED;
306 cricket
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dwebrtcsdp_unittest.cc45 using cricket::AudioCodec;
46 using cricket::AudioContentDescription;
47 using cricket::Candidate;
48 using cricket::ContentInfo;
49 using cricket::CryptoParams;
50 using cricket::ContentGroup;
51 using cricket::DataCodec;
52 using cricket::DataContentDescription;
53 using cricket::ICE_CANDIDATE_COMPONENT_RTCP;
54 using cricket
[all...]
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 Dmediastreamhandler_unittest.cc60 cricket::AudioRenderer* renderer));
62 const cricket::AudioOptions& options,
63 cricket::AudioRenderer* renderer));
72 cricket::VideoCapturer* camera));
75 cricket::VideoRenderer* renderer));
77 const cricket::VideoOptions* options));
85 virtual cricket::VideoCapturer* GetVideoCapturer() {
88 virtual void AddSink(cricket::VideoRenderer* output) {}
89 virtual void RemoveSink(cricket::VideoRenderer* output) {}
91 virtual const cricket
[all...]
H A Dfakeportallocatorfactory.h29 // This implementation creates instances of cricket::FakePortAllocator.
47 virtual cricket::PortAllocator* CreatePortAllocator(
52 return new cricket::FakePortAllocator(rtc::Thread::Current(), NULL);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
H A Dfakedatachannelprovider.h39 virtual bool SendData(const cricket::SendDataParams& params,
41 cricket::SendDataResult* result) OVERRIDE {
44 *result = cricket::SDR_BLOCK;
49 *result = cricket::SDR_ERROR;
129 cricket::SendDataParams last_send_data_params() const {
146 cricket::SendDataParams last_send_data_params_;
H A Dfakevideotrackrenderer.h51 virtual void RenderFrame(const cricket::VideoFrame* frame) {
64 cricket::FakeVideoRenderer fake_renderer_;
/external/chromium_org/remoting/client/plugin/
H A Dpepper_port_allocator.h15 // An implementation of cricket::PortAllocator for libjingle that is
17 // cricket::HttpPortAllocator:
24 class PepperPortAllocator : public cricket::HttpPortAllocatorBase {
30 // cricket::HttpPortAllocatorBase overrides.
31 virtual cricket::PortAllocatorSession* CreateSessionInternal(
/external/chromium_org/remoting/protocol/
H A Dchromium_port_allocator.h23 // An implementation of cricket::PortAllocator for libjingle that
26 class ChromiumPortAllocator : public cricket::HttpPortAllocatorBase {
34 // cricket::HttpPortAllocatorBase overrides.
35 virtual cricket::PortAllocatorSession* CreateSessionInternal(
/external/chromium_org/remoting/test/
H A Dfake_port_allocator.h19 class FakePortAllocator : public cricket::HttpPortAllocatorBase {
28 // cricket::BasicPortAllocator overrides.
29 virtual cricket::PortAllocatorSession* CreateSessionInternal(
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/
H A Dautoportallocator.h41 class AutoPortAllocator : public cricket::HttpPortAllocator {
45 : cricket::HttpPortAllocator(network_manager, user_agent) {
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
H A DRTCI420Frame.mm34 rtc::scoped_ptr<cricket::VideoFrame> _videoFrame;
85 - (instancetype)initWithVideoFrame:(cricket::VideoFrame*)videoFrame {
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Daudiorenderer.h31 namespace cricket { namespace
74 } // namespace cricket
H A Ddevice.h32 namespace cricket { namespace
48 } // namespace cricket
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Dgdivideorenderer.h27 // cricket::VideoRenderer via GDI on Windows.
36 namespace cricket { namespace
57 } // namespace cricket
H A Dgtkvideorenderer.h27 // cricket::VideoRenderer via GTK.
38 namespace cricket { namespace
67 } // namespace cricket

Completed in 406 milliseconds

1234567891011>>