mirror of
https://github.com/danog/libtgvoip.git
synced 2024-12-04 10:37:49 +01:00
40 lines
751 B
C++
40 lines
751 B
C++
|
//
|
||
|
// libtgvoip is free and unencumbered public domain software.
|
||
|
// For more information, see http://unlicense.org or the UNLICENSE file
|
||
|
// you should have received with this source code distribution.
|
||
|
//
|
||
|
|
||
|
#include "VideoToolboxEncoderSource.h"
|
||
|
#include "../../PrivateDefines.h"
|
||
|
|
||
|
using namespace tgvoip;
|
||
|
using namespace tgvoip::video;
|
||
|
|
||
|
VideoToolboxEncoderSource::VideoToolboxEncoderSource(){
|
||
|
|
||
|
}
|
||
|
|
||
|
VideoToolboxEncoderSource::~VideoToolboxEncoderSource(){
|
||
|
|
||
|
}
|
||
|
|
||
|
void VideoToolboxEncoderSource::Start(){
|
||
|
|
||
|
}
|
||
|
|
||
|
void VideoToolboxEncoderSource::Stop(){
|
||
|
|
||
|
}
|
||
|
|
||
|
void VideoToolboxEncoderSource::Reset(uint32_t codec, int maxResolution){
|
||
|
|
||
|
}
|
||
|
|
||
|
void VideoToolboxEncoderSource::RequestKeyFrame(){
|
||
|
|
||
|
}
|
||
|
|
||
|
void VideoToolboxEncoderSource::EncodeFrame(CMSampleBufferRef frame){
|
||
|
|
||
|
}
|