HomeSort by relevance Sort by last modified time
    Searched defs:BaseChannel (Results 1 - 4 of 4) sorted by null

  /external/chromium/third_party/libjingle/source/talk/session/phone/
channel.cc 90 BaseChannel::BaseChannel(talk_base::Thread* thread, MediaEngine* media_engine,
110 this, &BaseChannel::OnWritableState);
112 this, &BaseChannel::OnChannelRead);
116 session->SignalState.connect(this, &BaseChannel::OnSessionState);
119 BaseChannel::~BaseChannel() {
134 bool BaseChannel::Enable(bool enable) {
140 bool BaseChannel::Mute(bool mute) {
146 bool BaseChannel::RemoveStream(uint32 ssrc)
    [all...]
channel.h 76 // BaseChannel contains logic common to voice and video, including
79 class BaseChannel
83 BaseChannel(talk_base::Thread* thread, MediaEngine* media_engine,
87 virtual ~BaseChannel();
254 class VoiceChannel : public BaseChannel {
263 return static_cast<VoiceMediaChannel*>(BaseChannel::media_channel());
330 // overrides from BaseChannel
365 class VideoChannel : public BaseChannel {
375 return static_cast<VideoMediaChannel*>(BaseChannel::media_channel());
398 // overrides from BaseChannel
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
channel.h 67 // BaseChannel contains logic common to voice and video, including
73 // vtable, and the media channel's thread using BaseChannel as the
76 class BaseChannel
80 BaseChannel(talk_base::Thread* thread, MediaEngineInterface* media_engine,
83 virtual ~BaseChannel();
226 sigslot::signal1<BaseChannel*> SignalFirstPacketReceived;
229 sigslot::repeater2<BaseChannel*, bool> SignalAutoMuted;
376 class VoiceChannel : public BaseChannel {
388 return static_cast<VoiceMediaChannel*>(BaseChannel::media_channel());
430 // Overrides BaseChannel::MuteStream_w
    [all...]
channel.cc 386 BaseChannel::BaseChannel(talk_base::Thread* thread,
412 BaseChannel::~BaseChannel() {
428 bool BaseChannel::Init(TransportChannel* transport_channel,
443 this, &BaseChannel::OnWritableState);
445 this, &BaseChannel::OnChannelRead);
447 this, &BaseChannel::OnReadyToSend);
450 this, &BaseChannel::OnNewLocalDescription);
452 this, &BaseChannel::OnNewRemoteDescription)
    [all...]

Completed in 790 milliseconds