HomeSort by relevance Sort by last modified time
    Searched refs:cricket (Results 76 - 100 of 544) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsessiondescriptionfactory.h 36 namespace cricket { namespace
41 } // namespace cricket
78 const cricket::MediaSessionOptions& options)
85 cricket::MediaSessionOptions options;
98 cricket::ChannelManager* channel_manager,
104 cricket::DataChannelType dct,
119 void set_secure(cricket::SecureMediaPolicy secure_policy);
120 cricket::SecureMediaPolicy secure() const;
156 cricket::TransportDescriptionFactory transport_desc_factory_;
157 cricket::MediaSessionDescriptionFactory session_desc_factory_
    [all...]
jsepsessiondescription.h 40 namespace cricket { namespace
55 bool Initialize(cricket::SessionDescription* description,
59 virtual cricket::SessionDescription* description() {
62 virtual const cricket::SessionDescription* description() const {
92 talk_base::scoped_ptr<cricket::SessionDescription> description_;
mediastreamsignaling.cc 62 cricket::MediaSessionOptions* options, bool is_answer) {
127 static bool EvaluateNeedForBundle(const cricket::MediaSessionOptions& options) {
196 if (id < 0 || id > static_cast<int>(cricket::kMaxSctpSid))
216 } while (last_allocated_sctp_id_ <= static_cast<int>(cricket::kMaxSctpSid) &&
219 if (last_allocated_sctp_id_ > static_cast<int>(cricket::kMaxSctpSid)) {
220 last_allocated_sctp_id_ = cricket::kMaxSctpSid;
283 cricket::MEDIA_TYPE_AUDIO);
295 cricket::MEDIA_TYPE_VIDEO);
309 cricket::MediaSessionOptions* options) {
321 cricket::MediaSessionOptions* options)
    [all...]
peerconnectionfactory.h 66 cricket::VideoCapturer* capturer,
77 virtual cricket::ChannelManager* channel_manager();
87 cricket::WebRtcVideoEncoderFactory* video_encoder_factory,
88 cricket::WebRtcVideoDecoderFactory* video_decoder_factory);
98 cricket::VideoCapturer* capturer,
115 talk_base::scoped_ptr<cricket::ChannelManager> channel_manager_;
118 talk_base::scoped_ptr<cricket::WebRtcVideoEncoderFactory>
122 talk_base::scoped_ptr<cricket::WebRtcVideoDecoderFactory>
portallocatorfactory.h 30 // This implementation creates instances of cricket::HTTPPortAllocator and uses
39 namespace cricket { namespace
55 virtual cricket::PortAllocator* CreatePortAllocator(
videotrackrenderers.h 39 // Class used for rendering cricket::VideoFrames to multiple renderers of type
43 // done on the same thread as the cricket::VideoRenderer.
44 class VideoTrackRenderers : public cricket::VideoRenderer {
49 // Implements cricket::VideoRenderer
51 virtual bool RenderFrame(const cricket::VideoFrame* frame);
datachannel.cc 67 if (session_->data_channel_type() == cricket::DCT_RTP &&
75 } else if (session_->data_channel_type() == cricket::DCT_SCTP) {
113 if (session_->data_channel_type() == cricket::DCT_RTP) {
150 cricket::SendDataResult send_result;
152 if (send_result == cricket::SDR_BLOCK) {
171 if (session_->data_channel_type() == cricket::DCT_RTP) {
176 cricket::SendDataParams send_params;
179 send_params.type = cricket::DMT_CONTROL;
181 cricket::SendDataResult send_result;
184 if (!retval && send_result == cricket::SDR_BLOCK)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
filevideocapturer_unittest.cc 44 capturer_.reset(new cricket::FileVideoCapturer);
48 return capturer_->Init(cricket::GetTestFilePath(filename));
61 void OnFrameCaptured(cricket::VideoCapturer* capturer,
62 const cricket::CapturedFrame* frame) {
85 talk_base::scoped_ptr<cricket::FileVideoCapturer> capturer_;
86 cricket::VideoFormat capture_format_;
112 cricket::VideoFormat desired(
113 3200, 2400, cricket::VideoFormat::FpsToInterval(30), cricket::FOURCC_ANY);
129 cricket::VideoFormat desired = capturer_->GetSupportedFormats()->at(0)
    [all...]
dummydevicemanager_unittest.cc 31 using cricket::Device;
32 using cricket::DummyDeviceManager;
45 EXPECT_EQ((cricket::AUDIO_SEND | cricket::AUDIO_RECV |
46 cricket::VIDEO_SEND | cricket::VIDEO_RECV), capabilities);
65 cricket::DeviceManagerInterface::kDefaultDeviceName, &device));
68 cricket::DeviceManagerInterface::kDefaultDeviceName, &device));
81 cricket::DeviceManagerInterface::kDefaultDeviceName, &device));
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
constants.cc 34 namespace cricket { namespace
162 const buzz::StaticQName QN_UFRAG = { cricket::NS_EMPTY, "ufrag" };
163 const buzz::StaticQName QN_PWD = { cricket::NS_EMPTY, "pwd" };
164 const buzz::StaticQName QN_COMPONENT = { cricket::NS_EMPTY, "component" };
165 const buzz::StaticQName QN_IP = { cricket::NS_EMPTY, "ip" };
166 const buzz::StaticQName QN_PORT = { cricket::NS_EMPTY, "port" };
167 const buzz::StaticQName QN_NETWORK = { cricket::NS_EMPTY, "network" };
168 const buzz::StaticQName QN_GENERATION = { cricket::NS_EMPTY, "generation" };
169 const buzz::StaticQName QN_PRIORITY = { cricket::NS_EMPTY, "priority" };
170 const buzz::StaticQName QN_PROTOCOL = { cricket::NS_EMPTY, "protocol" }
    [all...]
dtlstransportchannel_unittest.cc 67 protocol_(cricket::ICEPROTO_GOOGLE),
74 void SetIceProtocol(cricket::TransportProtocol proto) {
84 void SetupChannels(int count, cricket::IceRole role) {
85 transport_.reset(new cricket::DtlsTransport<cricket::FakeTransport>(
91 (role == cricket::ICEROLE_CONTROLLING) ? 1 : 2);
96 cricket::DtlsTransportChannelWrapper* channel =
97 static_cast<cricket::DtlsTransportChannelWrapper*>(
111 cricket::FakeTransportChannel* GetFakeChannel(int component) {
112 cricket::TransportChannelImpl* ch = transport_->GetChannel(component)
    [all...]
session_unittest.cc 58 using cricket::SignalingProtocol;
59 using cricket::PROTOCOL_HYBRID;
60 using cricket::PROTOCOL_JINGLE;
61 using cricket::PROTOCOL_GINGLE;
602 class TestPortAllocatorSession : public cricket::PortAllocatorSession {
629 ports_[i] = cricket::UDPPort::Create(
641 void AddPort(cricket::Port* port) {
652 void OnPortDestroyed(cricket::PortInterface* port) {
659 void OnPortComplete(cricket::Port* port) {
665 std::vector<cricket::Port*> ports_
    [all...]
p2ptransportchannel_unittest.cc 45 using cricket::kDefaultPortAllocatorFlags;
46 using cricket::kMinimumStepDelay;
47 using cricket::kDefaultStepDelay;
48 using cricket::PORTALLOCATOR_ENABLE_SHARED_UFRAG;
49 using cricket::PORTALLOCATOR_ENABLE_SHARED_SOCKET;
53 static const int kOnlyLocalPorts = cricket::PORTALLOCATOR_DISABLE_STUN |
54 cricket::PORTALLOCATOR_DISABLE_RELAY |
55 cricket::PORTALLOCATOR_DISABLE_TCP;
81 static const SocketAddress kStunAddr("99.99.99.1", cricket::STUN_SERVER_PORT);
137 ep1_.role_ = cricket::ICEROLE_CONTROLLING
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
constants.cc 33 namespace cricket { namespace
139 const buzz::QName QN_UFRAG(true, cricket::NS_EMPTY, "ufrag");
140 const buzz::QName QN_PWD(true, cricket::NS_EMPTY, "pwd");
141 const buzz::QName QN_COMPONENT(true, cricket::NS_EMPTY, "component");
142 const buzz::QName QN_IP(true, cricket::NS_EMPTY, "ip");
143 const buzz::QName QN_PORT(true, cricket::NS_EMPTY, "port");
144 const buzz::QName QN_NETWORK(true, cricket::NS_EMPTY, "network");
145 const buzz::QName QN_GENERATION(true, cricket::NS_EMPTY, "generation");
146 const buzz::QName QN_PRIORITY(true, cricket::NS_EMPTY, "priority");
147 const buzz::QName QN_PROTOCOL(true, cricket::NS_EMPTY, "protocol")
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoengine_unittest.cc 52 static const cricket::VideoCodec kVP8Codec720p(100, "VP8", 1280, 720, 30, 0);
53 static const cricket::VideoCodec kVP8Codec360p(100, "VP8", 640, 360, 30, 0);
54 static const cricket::VideoCodec kVP8Codec270p(100, "VP8", 480, 270, 30, 0);
55 static const cricket::VideoCodec kVP8Codec180p(100, "VP8", 320, 180, 30, 0);
57 static const cricket::VideoCodec kVP8Codec(100, "VP8", 640, 400, 30, 0);
58 static const cricket::VideoCodec kRedCodec(101, "red", 0, 0, 0, 0);
59 static const cricket::VideoCodec kUlpFecCodec(102, "ulpfec", 0, 0, 0, 0);
60 static const cricket::VideoCodec* const kVideoCodecs[] = {
73 class FakeViEWrapper : public cricket::ViEWrapper {
75 explicit FakeViEWrapper(cricket::FakeWebRtcVideoEngine* engine
    [all...]
webrtcvoiceengine_unittest.cc 23 static const cricket::AudioCodec kPcmuCodec(0, "PCMU", 8000, 64000, 1, 0);
24 static const cricket::AudioCodec kIsacCodec(103, "ISAC", 16000, 32000, 1, 0);
25 static const cricket::AudioCodec kCeltCodec(110, "CELT", 32000, 64000, 2, 0);
26 static const cricket::AudioCodec kOpusCodec(111, "opus", 48000, 64000, 2, 0);
27 static const cricket::AudioCodec kRedCodec(117, "red", 8000, 0, 1, 0);
28 static const cricket::AudioCodec kCn8000Codec(13, "CN", 8000, 0, 1, 0);
29 static const cricket::AudioCodec kCn16000Codec(105, "CN", 16000, 0, 1, 0);
30 static const cricket::AudioCodec
32 static const cricket::AudioCodec* const kAudioCodecs[] = {
40 class FakeVoEWrapper : public cricket::VoEWrapper
    [all...]
webrtctexturevideoframe_unittest.cc 48 cricket::WebRtcTextureVideoFrame frame(&handle, 640, 480, 100, 200);
62 cricket::WebRtcTextureVideoFrame frame1(&handle, 640, 480, 100, 200);
63 cricket::VideoFrame* frame2 = frame1.Copy();
75 cricket::WebRtcTextureVideoFrame* frame1 =
76 new cricket::WebRtcTextureVideoFrame(&handle, 640, 480, 100, 200);
78 cricket::VideoFrame* frame2 = frame1->Copy();
webrtcvideocapturer_unittest.cc 37 using cricket::VideoFormat;
42 VideoFormat(640, 400, VideoFormat::FpsToInterval(30), cricket::FOURCC_ANY);
48 capturer_(new cricket::WebRtcVideoCapturer(factory_)),
62 talk_base::scoped_ptr<cricket::WebRtcVideoCapturer> capturer_;
63 cricket::VideoCapturerListener listener_;
74 EXPECT_FALSE(capturer_->Init(cricket::Device("bad-name", "bad-id")));
79 EXPECT_TRUE(capturer_->Init(cricket::Device(kTestDeviceName, kTestDeviceId)));
95 EXPECT_TRUE(capturer_->Init(cricket::Device(kTestDeviceName, kTestDeviceId)));
96 cricket::VideoFormat format(
98 EXPECT_EQ(cricket::CS_STARTING, capturer_->Start(format))
    [all...]
webrtcmediaengine.h 38 namespace cricket { namespace
48 cricket::MediaEngineInterface* CreateWebRtcMediaEngine(
50 cricket::WebRtcVideoEncoderFactory* encoder_factory,
51 cricket::WebRtcVideoDecoderFactory* decoder_factory);
54 void DestroyWebRtcMediaEngine(cricket::MediaEngineInterface* media_engine);
56 namespace cricket { namespace
58 class WebRtcMediaEngine : public cricket::MediaEngineInterface {
63 cricket::WebRtcVideoEncoderFactory* encoder_factory,
64 cricket::WebRtcVideoDecoderFactory* decoder_factory)
162 cricket::MediaEngineInterface* delegate_
171 namespace cricket { namespace
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/client/
sessionmanagertask.h 36 namespace cricket { namespace
83 cricket::SessionSendTask* sender =
84 new cricket::SessionSendTask(GetParent(), session_manager_);
90 } // namespace cricket
  /external/chromium_org/third_party/libjingle/source/talk/p2p/client/
sessionmanagertask.h 36 namespace cricket { namespace
82 cricket::SessionSendTask* sender =
83 new cricket::SessionSendTask(parent_, session_manager_);
91 } // namespace cricket
fakeportallocator.h 19 namespace cricket { namespace
30 cricket::PORTALLOCATOR_ENABLE_SHARED_UFRAG),
42 port_.reset(cricket::UDPPort::Create(worker_thread_, factory_,
56 void AddPort(cricket::Port* port) {
64 void OnPortComplete(cricket::Port* port) {
73 talk_base::scoped_ptr<cricket::Port> port_;
78 class FakePortAllocator : public cricket::PortAllocator {
90 virtual cricket::PortAllocatorSession* CreateSessionInternal(
105 } // namespace cricket
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediasessionclient_unittest.cc 44 using cricket::AudioCodec;
45 using cricket::AudioContentDescription;
46 using cricket::Codec;
47 using cricket::DataCodec;
48 using cricket::DataContentDescription;
49 using cricket::FeedbackParam;
50 using cricket::FeedbackParams;
51 using cricket::VideoCodec;
52 using cricket::VideoContentDescription;
56 static const cricket::AudioCodec kAudioCodecs[] =
    [all...]
  /external/chromium_org/remoting/client/plugin/
pepper_port_allocator.h 15 // 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/third_party/libjingle/source/talk/app/webrtc/test/
fakevideotrackrenderer.h 51 virtual void RenderFrame(const cricket::VideoFrame* frame) {
64 cricket::FakeVideoRenderer fake_renderer_;

Completed in 1400 milliseconds

1 2 34 5 6 7 8 91011>>