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 66 // BaseChannel contains logic common to voice and video, including
69 class BaseChannel
73 BaseChannel(talk_base::Thread* thread, MediaEngineInterface* media_engine,
76 virtual ~BaseChannel();
218 sigslot::signal1<BaseChannel*> SignalFirstPacketReceived;
221 sigslot::repeater2<BaseChannel*, bool> SignalAutoMuted;
359 class VoiceChannel : public BaseChannel {
371 return static_cast<VoiceMediaChannel*>(BaseChannel::media_channel());
413 // Overrides BaseChannel::MuteStream_w.
429 // overrides from BaseChannel
    [all...]
channel.cc 379 BaseChannel::BaseChannel(talk_base::Thread* thread,
406 BaseChannel::~BaseChannel() {
421 bool BaseChannel::Init(TransportChannel* transport_channel,
437 this, &BaseChannel::OnWritableState);
439 this, &BaseChannel::OnChannelRead);
441 this, &BaseChannel::OnReadyToSend);
444 this, &BaseChannel::OnNewLocalDescription);
446 this, &BaseChannel::OnNewRemoteDescription)
    [all...]

Completed in 77 milliseconds