43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2011 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.
|
|
*/
|
|
|
|
#ifndef WEBRTC_VIDEO_ENGINE_MAIN_TEST_AUTOTEST_INTERFACE_TB_VIDEO_CHANNEL_H_
|
|
#define WEBRTC_VIDEO_ENGINE_MAIN_TEST_AUTOTEST_INTERFACE_TB_VIDEO_CHANNEL_H_
|
|
|
|
#include "tb_interfaces.h"
|
|
class tbVideoChannel
|
|
{
|
|
public:
|
|
tbVideoChannel(tbInterfaces& Engine, int& nrOfErrors,
|
|
webrtc::VideoCodecType sendCodec = webrtc::kVideoCodecVP8,
|
|
int width = 352, int height = 288, int frameRate = 30,
|
|
int startBitrate = 300);
|
|
|
|
~tbVideoChannel(void);
|
|
|
|
void SetFrameSettings(int width, int height, int frameRate);
|
|
|
|
void StartSend(const unsigned short rtpPort = 11000,
|
|
const char* ipAddress = "127.0.0.1");
|
|
|
|
void StopSend();
|
|
|
|
void StartReceive(const unsigned short rtpPort = 11000);
|
|
|
|
void StopReceive();
|
|
|
|
int videoChannel;
|
|
private:
|
|
int& numberOfErrors;
|
|
tbInterfaces& ViE;
|
|
};
|
|
|
|
#endif // WEBRTC_VIDEO_ENGINE_MAIN_TEST_AUTOTEST_INTERFACE_TB_VIDEO_CHANNEL_H_
|