/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
webrtcsession.cc | 51 using cricket::ContentInfo; 52 using cricket::ContentInfos; 53 using cricket::MediaContentDescription; 54 using cricket::SessionDescription; 55 using cricket::TransportInfo; 176 static void UpdateSessionDescriptionSecurePolicy(cricket::CryptoType type, 184 for (cricket::ContentInfos::iterator iter = sdesc->contents().begin(); 186 if (cricket::IsMediaContent(&*iter)) { 199 const cricket::ContentInfo* audio_info = 200 cricket::GetFirstAudioContent(session_description) [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.h | 114 // MediaStreamSignaling works as a glue between MediaStreams and a cricket 116 // It is used for creating cricket::MediaSessionOptions given the local 120 // SessionDescription and creating cricket::MediaSessionOptions given 165 cricket::ChannelManager* channel_manager); 199 bool AddDataChannelFromOpenMessage(const cricket::ReceiveDataParams& params, 207 cricket::MediaSessionOptions* options); 213 cricket::MediaSessionOptions* options); 299 const std::vector<cricket::StreamParams>& streams, 300 cricket::MediaType media_type, 310 cricket::MediaType media_type) [all...] |
videotrack_unittest.cc | 51 talk_base::scoped_ptr<cricket::ChannelManager> channel_manager_; 53 new cricket::ChannelManager(new cricket::FakeMediaEngine(), 54 new cricket::FakeDeviceManager(), 66 cricket::VideoRenderer* render_input = video_track->GetSource()->FrameInput(); 69 cricket::WebRtcVideoFrame frame;
|
peerconnectionfactory.h | 64 cricket::VideoCapturer* capturer, 77 virtual cricket::ChannelManager* channel_manager(); 88 cricket::WebRtcVideoEncoderFactory* video_encoder_factory, 89 cricket::WebRtcVideoDecoderFactory* video_decoder_factory); 98 cricket::VideoCapturer* capturer, 120 talk_base::scoped_ptr<cricket::ChannelManager> channel_manager_; 123 talk_base::scoped_ptr<cricket::WebRtcVideoEncoderFactory> 127 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);
|
webrtcsession_unittest.cc | 67 using cricket::BaseSession; 68 using cricket::DF_PLAY; 69 using cricket::DF_SEND; 70 using cricket::FakeVoiceMediaChannel; 71 using cricket::NS_GINGLE_P2P; 72 using cricket::NS_JINGLE_ICE_UDP; 73 using cricket::TransportInfo; 197 std::vector<cricket::Candidate> mline_0_candidates_; 198 std::vector<cricket::Candidate> mline_1_candidates_; 205 WebRtcSessionForTest(cricket::ChannelManager* cmgr [all...] |
videosource_unittest.cc | 56 // TestVideoCapturer extends cricket::FakeVideoCapturer so it can be used for 58 // It keeps its own lists of cricket::VideoFormats for the unit tests in this 60 class TestVideoCapturer : public cricket::FakeVideoCapturer { 63 std::vector<cricket::VideoFormat> formats; 64 formats.push_back(cricket::VideoFormat(1280, 720, 65 cricket::VideoFormat::FpsToInterval(30), cricket::FOURCC_I420)); 66 formats.push_back(cricket::VideoFormat(640, 480, 67 cricket::VideoFormat::FpsToInterval(30), cricket::FOURCC_I420)) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/devices/ |
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/media/base/ |
hybridvideoengine_unittest.cc | 36 static const cricket::VideoCodec kGenericCodec(97, "Generic", 640, 360, 30, 0); 37 static const cricket::VideoCodec kVp8Codec(100, "VP8", 640, 360, 30, 0); 38 static const cricket::VideoCodec kCodecsVp8Only[] = { kVp8Codec }; 39 static const cricket::VideoCodec kCodecsGenericOnly[] = { kGenericCodec }; 40 static const cricket::VideoCodec kCodecsVp8First[] = { kVp8Codec, 42 static const cricket::VideoCodec kCodecsGenericFirst[] = { kGenericCodec, 45 using cricket::StreamParams; 47 class FakeVp8VideoEngine : public cricket::FakeVideoEngine { 53 class FakeGenericVideoEngine : public cricket::FakeVideoEngine { 63 virtual bool FindCodec(const cricket::VideoCodec& codec) [all...] |
videoengine_unittest.h | 68 inline bool IsEqualRes(const cricket::VideoCodec& a, int w, int h, int fps) { 72 inline bool IsEqualCodec(const cricket::VideoCodec& a, 73 const cricket::VideoCodec& b) { 79 inline std::ostream& operator<<(std::ostream& s, const cricket::VideoCodec& c) { 86 inline int TimeBetweenSend(const cricket::VideoCodec& codec) { 88 cricket::VideoFormat::FpsToInterval(codec.framerate) / 106 cricket::VideoCapturer* video_capturer = T::GetVideoCapturer(); 114 void OnLocalFrame(cricket::VideoCapturer*, 115 const cricket::VideoFrame*) { 117 void OnLocalFrameFormat(cricket::VideoCapturer* [all...] |
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
session_unittest.cc | 59 using cricket::SignalingProtocol; 60 using cricket::PROTOCOL_HYBRID; 61 using cricket::PROTOCOL_JINGLE; 62 using cricket::PROTOCOL_GINGLE; 590 class TestPortAllocatorSession : public cricket::PortAllocatorSession { 617 ports_[i] = cricket::UDPPort::Create( 629 void AddPort(cricket::Port* port) { 640 void OnPortDestroyed(cricket::PortInterface* port) { 647 void OnPortComplete(cricket::Port* port) { 653 std::vector<cricket::Port*> ports_ [all...] |
portallocatorsessionproxy_unittest.cc | 38 using cricket::Candidate; 39 using cricket::PortAllocatorSession; 40 using cricket::PortAllocatorSessionMuxer; 41 using cricket::PortAllocatorSessionProxy; 75 cricket::PortInterface* port) { 107 session_(new cricket::FakePortAllocatorSession( 129 cricket::FakePortAllocator allocator_; 130 cricket::FakePortAllocatorSession* session_;
|
/external/chromium_org/remoting/protocol/ |
libjingle_transport_factory.h | 14 namespace cricket { namespace 17 } // namespace cricket 39 // cricket::HttpPortAllocatorBase pointer for the |port_allocator|, so that it 43 scoped_ptr<cricket::HttpPortAllocatorBase> port_allocator, 60 scoped_ptr<cricket::HttpPortAllocatorBase> port_allocator_;
|
/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...] |
channelmanager_unittest.cc | 38 namespace cricket { namespace 58 fme_ = new cricket::FakeMediaEngine(); 61 fdme_ = new cricket::FakeDataEngine(); 62 fdm_ = new cricket::FakeDeviceManager(); 63 fcm_ = new cricket::FakeCaptureManager(); 64 cm_ = new cricket::ChannelManager( 66 session_ = new cricket::FakeSession(true); 91 cricket::FakeMediaEngine* fme_; 92 cricket::FakeDataEngine* fdme_; 93 cricket::FakeDeviceManager* fdm_ [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
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...] |
webrtcvideoengine_unittest.cc | 53 using cricket::kRtpTimestampOffsetHeaderExtension; 54 using cricket::kRtpAbsoluteSenderTimeHeaderExtension; 56 static const cricket::VideoCodec kVP8Codec720p(100, "VP8", 1280, 720, 30, 0); 57 static const cricket::VideoCodec kVP8Codec360p(100, "VP8", 640, 360, 30, 0); 58 static const cricket::VideoCodec kVP8Codec270p(100, "VP8", 480, 270, 30, 0); 59 static const cricket::VideoCodec kVP8Codec180p(100, "VP8", 320, 180, 30, 0); 61 static const cricket::VideoCodec kVP8Codec(100, "VP8", 640, 400, 30, 0); 62 static const cricket::VideoCodec kRedCodec(101, "red", 0, 0, 0, 0); 63 static const cricket::VideoCodec kUlpFecCodec(102, "ulpfec", 0, 0, 0, 0); 64 static const cricket::VideoCodec* const kVideoCodecs[] = [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) 171 cricket::MediaEngineInterface* delegate_ 183 namespace cricket { namespace [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_;
|