HomeSort by relevance Sort by last modified time
    Searched refs:cricket (Results 51 - 75 of 454) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
portallocatorfactory.cc 55 cricket::PortAllocator* PortAllocatorFactory::CreatePortAllocator(
68 scoped_ptr<cricket::BasicPortAllocator> allocator(
69 new cricket::BasicPortAllocator(
73 cricket::RelayCredentials credentials(turn[i].username, turn[i].password);
74 cricket::RelayServerConfig relay_server(cricket::RELAY_TURN);
75 cricket::ProtocolType protocol;
76 if (cricket::StringToProto(turn[i].transport_type.c_str(), &protocol)) {
77 relay_server.ports.push_back(cricket::ProtocolAddress(
remotevideocapturer_unittest.cc 34 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::FOURCC_I420, fourccs.at(0))
    [all...]
audiotrackrenderer.h 44 class AudioTrackRenderer : public cricket::AudioRenderer {
49 // Implements cricket::AudioRenderer.
jsepicecandidate.h 45 const cricket::Candidate& candidate);
49 void SetCandidate(const cricket::Candidate& candidate) {
55 virtual const cricket::Candidate& candidate() const {
64 cricket::Candidate candidate_;
localaudiosource.h 52 virtual const cricket::AudioOptions& options() const { return options_; }
66 cricket::AudioOptions options_;
datachannel.cc 47 cricket::DataChannelType dct,
60 cricket::DataChannelType dct,
77 if (data_channel_type_ == cricket::DCT_RTP &&
85 } else if (data_channel_type_ == cricket::DCT_SCTP) {
133 if (data_channel_type_ == cricket::DCT_RTP) {
168 if (data_channel_type_ == cricket::DCT_RTP) {
176 cricket::SendDataResult send_result;
178 if (data_channel_type_ == cricket::DCT_RTP) {
181 if (send_result != cricket::SDR_BLOCK || !QueueSendData(buffer)) {
193 ASSERT(data_channel_type_ == cricket::DCT_SCTP &
    [all...]
webrtcsessiondescriptionfactory.h 36 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::MediaSessionDescriptionFactory session_desc_factory_
    [all...]
mediastreamsignaling.cc 56 cricket::MediaSessionOptions* options, bool is_answer) {
121 static bool EvaluateNeedForBundle(const cricket::MediaSessionOptions& options) {
130 cricket::ChannelManager* channel_manager)
169 cricket::ChannelManager* channel_manager_;
175 cricket::ChannelManager* channel_manager)
199 if (sid < 0 || sid > static_cast<int>(cricket::kMaxSctpSid))
215 } while (last_id <= static_cast<int>(cricket::kMaxSctpSid) &&
218 if (last_id > static_cast<int>(cricket::kMaxSctpSid)) {
232 if (data_channel->data_channel_type() == cricket::DCT_RTP) {
241 ASSERT(data_channel->data_channel_type() == cricket::DCT_SCTP)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transportdescriptionfactory_unittest.cc 38 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::TransportOptions options
    [all...]
dtlstransportchannel_unittest.cc 60 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::Transport* transport() { return transport_.get();
    [all...]
teststunserver.h 35 namespace cricket { namespace
50 cricket::StunServer server_;
53 } // namespace cricket
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...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
capturemanager_unittest.cc 39 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::CaptureState capture_state() { return capture_state_;
    [all...]
fakecapturemanager.h 33 namespace cricket { namespace
50 } // namespace cricket
videorenderer.h 37 namespace cricket { namespace
56 } // namespace cricket
videoframe_unittest.h 78 bool success = LoadFrame(kImageFilename, cricket::FOURCC_I420,
134 talk_base::Pathname path(cricket::GetTestFilePath(filename));
154 const cricket::VideoFrame& frame) {
158 size_t out_size = cricket::VideoFrame::SizeOf(frame.GetWidth(),
349 if (fourcc == cricket::FOURCC_YUY2) {
351 } else if (fourcc == cricket::FOURCC_UYVY) {
361 if (fourcc == cricket::FOURCC_RAW) {
363 } else if (fourcc == cricket::FOURCC_24BG) {
365 } else if (fourcc == cricket::FOURCC_ABGR) {
367 } else if (fourcc == cricket::FOURCC_BGRA)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
deviceinfo.h 35 namespace cricket { namespace
40 } // namespace cricket
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...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideodecoderfactory.h 38 namespace cricket { namespace
51 } // namespace cricket
webrtcvoiceengine_unittest.cc 47 using cricket::kRtpAudioLevelHeaderExtension;
48 using cricket::kRtpAbsoluteSenderTimeHeaderExtension;
50 static const cricket::AudioCodec kPcmuCodec(0, "PCMU", 8000, 64000, 1, 0);
51 static const cricket::AudioCodec kIsacCodec(103, "ISAC", 16000, 32000, 1, 0);
52 static const cricket::AudioCodec kCeltCodec(110, "CELT", 32000, 64000, 2, 0);
53 static const cricket::AudioCodec kOpusCodec(111, "opus", 48000, 64000, 2, 0);
54 static const cricket::AudioCodec kRedCodec(117, "red", 8000, 0, 1, 0);
55 static const cricket::AudioCodec kCn8000Codec(13, "CN", 8000, 0, 1, 0);
56 static const cricket::AudioCodec kCn16000Codec(105, "CN", 16000, 0, 1, 0);
57 static const cricket::AudioCode
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediasink.h 31 namespace cricket { namespace
46 } // namespace cricket
currentspeakermonitor.h 39 namespace cricket { namespace
48 sigslot::signal2<AudioSourceContext*, const cricket::AudioInfo&>
50 sigslot::signal2<AudioSourceContext*, cricket::BaseSession*>
52 sigslot::signal4<AudioSourceContext*, cricket::BaseSession*,
53 const cricket::MediaStreams&, const cricket::MediaStreams&>
  /external/chromium_org/third_party/libjingle/source/talk/sound/
platformsoundsystemfactory.cc 33 namespace cricket { namespace
57 } // namespace cricket
soundsysteminterface.cc 32 namespace cricket { namespace
46 } // namespace cricket
  /external/chromium_org/jingle/glue/
channel_socket_adapter.h 19 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_;

Completed in 696 milliseconds

1 23 4 5 6 7 8 91011>>