2011-07-07 08:21:25 +00:00
|
|
|
/*
|
2012-03-05 17:12:41 +00:00
|
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
2011-07-07 08:21:25 +00:00
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2012-06-29 13:20:14 +00:00
|
|
|
#ifndef WEBRTC_VIDEO_ENGINE_VIE_BASE_IMPL_H_
|
|
|
|
|
#define WEBRTC_VIDEO_ENGINE_VIE_BASE_IMPL_H_
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2012-06-21 10:02:13 +00:00
|
|
|
#include "video_engine/include/vie_base.h"
|
|
|
|
|
#include "video_engine/vie_defines.h"
|
|
|
|
|
#include "video_engine/vie_ref_count.h"
|
|
|
|
|
#include "video_engine/vie_shared_data.h"
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2011-11-30 18:04:26 +00:00
|
|
|
namespace webrtc {
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
class Module;
|
2011-11-30 18:04:26 +00:00
|
|
|
class VoiceEngine;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2011-11-30 18:04:26 +00:00
|
|
|
class ViEBaseImpl
|
2012-01-25 13:42:03 +00:00
|
|
|
: public ViEBase,
|
2011-11-30 18:04:26 +00:00
|
|
|
public ViERefCount {
|
|
|
|
|
public:
|
|
|
|
|
virtual int Release();
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2012-03-05 17:12:41 +00:00
|
|
|
// Implements ViEBase.
|
2011-11-30 18:04:26 +00:00
|
|
|
virtual int Init();
|
|
|
|
|
virtual int SetVoiceEngine(VoiceEngine* voice_engine);
|
2012-06-21 10:02:13 +00:00
|
|
|
virtual int CreateChannel(int& video_channel); // NOLINT
|
|
|
|
|
virtual int CreateChannel(int& video_channel, // NOLINT
|
|
|
|
|
int original_channel);
|
|
|
|
|
virtual int CreateReceiveChannel(int& video_channel, // NOLINT
|
|
|
|
|
int original_channel);
|
2011-11-30 18:04:26 +00:00
|
|
|
virtual int DeleteChannel(const int video_channel);
|
|
|
|
|
virtual int ConnectAudioChannel(const int video_channel,
|
|
|
|
|
const int audio_channel);
|
|
|
|
|
virtual int DisconnectAudioChannel(const int video_channel);
|
|
|
|
|
virtual int StartSend(const int video_channel);
|
|
|
|
|
virtual int StopSend(const int video_channel);
|
|
|
|
|
virtual int StartReceive(const int video_channel);
|
|
|
|
|
virtual int StopReceive(const int video_channel);
|
|
|
|
|
virtual int GetVersion(char version[1024]);
|
|
|
|
|
virtual int LastError();
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2011-11-30 18:04:26 +00:00
|
|
|
protected:
|
|
|
|
|
ViEBaseImpl();
|
|
|
|
|
virtual ~ViEBaseImpl();
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2012-01-25 13:42:03 +00:00
|
|
|
ViESharedData* shared_data() { return &shared_data_; }
|
|
|
|
|
|
2011-11-30 18:04:26 +00:00
|
|
|
private:
|
|
|
|
|
// Version functions.
|
2013-04-09 13:41:51 +00:00
|
|
|
int32_t AddViEVersion(char* str) const;
|
|
|
|
|
int32_t AddBuildInfo(char* str) const;
|
|
|
|
|
int32_t AddExternalTransportBuild(char* str) const;
|
2012-01-25 13:42:03 +00:00
|
|
|
|
2012-06-21 10:02:13 +00:00
|
|
|
int CreateChannel(int& video_channel, int original_channel, // NOLINT
|
|
|
|
|
bool sender);
|
2012-03-05 17:12:41 +00:00
|
|
|
|
2012-01-25 13:42:03 +00:00
|
|
|
// ViEBaseImpl owns ViESharedData used by all interface implementations.
|
|
|
|
|
ViESharedData shared_data_;
|
2011-07-07 08:21:25 +00:00
|
|
|
};
|
|
|
|
|
|
2011-11-30 18:04:26 +00:00
|
|
|
} // namespace webrtc
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2012-06-29 13:20:14 +00:00
|
|
|
#endif // WEBRTC_VIDEO_ENGINE_VIE_BASE_IMPL_H_
|