1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-12-04 10:37:49 +01:00
libtgvoip/os/darwin/VideoToolboxEncoderSource.cpp

40 lines
751 B
C++
Raw Normal View History

//
// 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){
}