Rename VideoCall to Call.

Call should encompass more than video, there's no point in calling it
VideoCall.

BUG=
R=mflodman@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/2191005

git-svn-id: http://webrtc.googlecode.com/svn/trunk@4704 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/webrtc/video_engine/internal/call.cc b/webrtc/video_engine/internal/call.cc
new file mode 100644
index 0000000..acb65bf
--- /dev/null
+++ b/webrtc/video_engine/internal/call.cc
@@ -0,0 +1,229 @@
+/*
+ *  Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
+ *
+ *  Use of this source code is governed by a BSD-style license
+ *  that can be found in the LICENSE file in the root of the source
+ *  tree. An additional intellectual property rights grant can be found
+ *  in the file PATENTS.  All contributing project authors may
+ *  be found in the AUTHORS file in the root of the source tree.
+ */
+
+#include "webrtc/video_engine/internal/call.h"
+
+#include <assert.h>
+#include <string.h>
+
+#include <map>
+#include <vector>
+
+#include "webrtc/video_engine/include/vie_base.h"
+#include "webrtc/video_engine/include/vie_codec.h"
+#include "webrtc/video_engine/include/vie_rtp_rtcp.h"
+#include "webrtc/video_engine/internal/video_receive_stream.h"
+#include "webrtc/video_engine/internal/video_send_stream.h"
+
+namespace webrtc {
+
+Call* Call::Create(const Call::Config& config) {
+  VideoEngine* video_engine = VideoEngine::Create();
+  assert(video_engine != NULL);
+
+  return new internal::Call(video_engine, config);
+}
+
+namespace internal {
+
+Call::Call(webrtc::VideoEngine* video_engine, const Call::Config& config)
+    : config_(config),
+      receive_lock_(RWLockWrapper::CreateRWLock()),
+      send_lock_(RWLockWrapper::CreateRWLock()),
+      rtp_header_parser_(RtpHeaderParser::Create()),
+      video_engine_(video_engine) {
+  assert(video_engine != NULL);
+  assert(config.send_transport != NULL);
+
+  rtp_rtcp_ = ViERTP_RTCP::GetInterface(video_engine_);
+  assert(rtp_rtcp_ != NULL);
+
+  codec_ = ViECodec::GetInterface(video_engine_);
+  assert(codec_ != NULL);
+}
+
+Call::~Call() {
+  codec_->Release();
+  rtp_rtcp_->Release();
+  webrtc::VideoEngine::Delete(video_engine_);
+}
+
+PacketReceiver* Call::Receiver() { return this; }
+
+std::vector<VideoCodec> Call::GetVideoCodecs() {
+  std::vector<VideoCodec> codecs;
+
+  VideoCodec codec;
+  for (size_t i = 0; i < static_cast<size_t>(codec_->NumberOfCodecs()); ++i) {
+    if (codec_->GetCodec(i, codec) == 0) {
+      codecs.push_back(codec);
+    }
+  }
+  return codecs;
+}
+
+VideoSendStream::Config Call::GetDefaultSendConfig() {
+  VideoSendStream::Config config;
+  codec_->GetCodec(0, config.codec);
+  return config;
+}
+
+VideoSendStream* Call::CreateSendStream(const VideoSendStream::Config& config) {
+  assert(config.rtp.ssrcs.size() > 0);
+  assert(config.codec.numberOfSimulcastStreams == 0 ||
+         config.codec.numberOfSimulcastStreams == config.rtp.ssrcs.size());
+
+  VideoSendStream* send_stream = new VideoSendStream(
+      config_.send_transport, config_.overuse_detection, video_engine_, config);
+
+  WriteLockScoped write_lock(*send_lock_);
+  for (size_t i = 0; i < config.rtp.ssrcs.size(); ++i) {
+    assert(send_ssrcs_.find(config.rtp.ssrcs[i]) == send_ssrcs_.end());
+    send_ssrcs_[config.rtp.ssrcs[i]] = send_stream;
+  }
+  return send_stream;
+}
+
+SendStreamState* Call::DestroySendStream(webrtc::VideoSendStream* send_stream) {
+  assert(send_stream != NULL);
+
+  VideoSendStream* send_stream_impl = NULL;
+  {
+    WriteLockScoped write_lock(*send_lock_);
+    for (std::map<uint32_t, VideoSendStream*>::iterator it =
+             send_ssrcs_.begin();
+         it != send_ssrcs_.end();
+         ++it) {
+      if (it->second == static_cast<VideoSendStream*>(send_stream)) {
+        send_stream_impl = it->second;
+        send_ssrcs_.erase(it);
+        break;
+      }
+    }
+  }
+
+  assert(send_stream_impl != NULL);
+  delete send_stream_impl;
+
+  // TODO(pbos): Return its previous state
+  return NULL;
+}
+
+VideoReceiveStream::Config Call::GetDefaultReceiveConfig() {
+  return VideoReceiveStream::Config();
+}
+
+VideoReceiveStream* Call::CreateReceiveStream(
+    const VideoReceiveStream::Config& config) {
+  VideoReceiveStream* receive_stream =
+      new VideoReceiveStream(video_engine_, config, config_.send_transport);
+
+  WriteLockScoped write_lock(*receive_lock_);
+  assert(receive_ssrcs_.find(config.rtp.ssrc) == receive_ssrcs_.end());
+  receive_ssrcs_[config.rtp.ssrc] = receive_stream;
+  return receive_stream;
+}
+
+void Call::DestroyReceiveStream(webrtc::VideoReceiveStream* receive_stream) {
+  assert(receive_stream != NULL);
+
+  VideoReceiveStream* receive_stream_impl = NULL;
+  {
+    WriteLockScoped write_lock(*receive_lock_);
+    for (std::map<uint32_t, VideoReceiveStream*>::iterator it =
+             receive_ssrcs_.begin();
+         it != receive_ssrcs_.end();
+         ++it) {
+      if (it->second == static_cast<VideoReceiveStream*>(receive_stream)) {
+        receive_stream_impl = it->second;
+        receive_ssrcs_.erase(it);
+        break;
+      }
+    }
+  }
+
+  assert(receive_stream_impl != NULL);
+  delete receive_stream_impl;
+}
+
+uint32_t Call::SendBitrateEstimate() {
+  // TODO(pbos): Return send-bitrate estimate
+  return 0;
+}
+
+uint32_t Call::ReceiveBitrateEstimate() {
+  // TODO(pbos): Return receive-bitrate estimate
+  return 0;
+}
+
+bool Call::DeliverRtcp(const uint8_t* packet, size_t length) {
+  // TODO(pbos): Figure out what channel needs it actually.
+  //             Do NOT broadcast! Also make sure it's a valid packet.
+  bool rtcp_delivered = false;
+  {
+    ReadLockScoped read_lock(*receive_lock_);
+    for (std::map<uint32_t, VideoReceiveStream*>::iterator it =
+             receive_ssrcs_.begin();
+         it != receive_ssrcs_.end();
+         ++it) {
+      if (it->second->DeliverRtcp(static_cast<const uint8_t*>(packet),
+                                  length)) {
+        rtcp_delivered = true;
+      }
+    }
+  }
+
+  {
+    ReadLockScoped read_lock(*send_lock_);
+    for (std::map<uint32_t, VideoSendStream*>::iterator it =
+             send_ssrcs_.begin();
+         it != send_ssrcs_.end();
+         ++it) {
+      if (it->second->DeliverRtcp(static_cast<const uint8_t*>(packet),
+                                  length)) {
+        rtcp_delivered = true;
+      }
+    }
+  }
+  return rtcp_delivered;
+}
+
+bool Call::DeliverRtp(const RTPHeader& header,
+                      const uint8_t* packet,
+                      size_t length) {
+  VideoReceiveStream* receiver;
+  {
+    ReadLockScoped read_lock(*receive_lock_);
+    std::map<uint32_t, VideoReceiveStream*>::iterator it =
+        receive_ssrcs_.find(header.ssrc);
+    if (it == receive_ssrcs_.end()) {
+      // TODO(pbos): Log some warning, SSRC without receiver.
+      return false;
+    }
+
+    receiver = it->second;
+  }
+  return receiver->DeliverRtp(static_cast<const uint8_t*>(packet), length);
+}
+
+bool Call::DeliverPacket(const uint8_t* packet, size_t length) {
+  // TODO(pbos): ExtensionMap if there are extensions.
+  if (RtpHeaderParser::IsRtcp(packet, static_cast<int>(length)))
+    return DeliverRtcp(packet, length);
+
+  RTPHeader rtp_header;
+  if (!rtp_header_parser_->Parse(packet, static_cast<int>(length), &rtp_header))
+    return false;
+
+  return DeliverRtp(rtp_header, packet, length);
+}
+
+}  // namespace internal
+}  // namespace webrtc