mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00

git-subtree-dir: submodules/libtgvoip git-subtree-mainline: d153fe0f21174c4d6e1c3602e852e7a0e53051f0 git-subtree-split: dcbbfd9ec40ee8702852a768d75362142becc727
45 lines
974 B
C++
Executable File
45 lines
974 B
C++
Executable File
//
|
|
// Created by Grishka on 10.08.2018.
|
|
//
|
|
|
|
#include "VideoSource.h"
|
|
|
|
#ifdef __ANDROID__
|
|
#include "../os/android/VideoSourceAndroid.h"
|
|
#elif defined(__APPLE__) && !defined(TARGET_OSX32)
|
|
#include "../os/darwin/VideoToolboxEncoderSource.h"
|
|
#endif
|
|
|
|
using namespace tgvoip;
|
|
using namespace tgvoip::video;
|
|
|
|
std::shared_ptr<VideoSource> VideoSource::Create(){
|
|
#ifdef __ANDROID__
|
|
//return std::make_shared<VideoSourceAndroid>();
|
|
return nullptr;
|
|
#endif
|
|
return nullptr;
|
|
}
|
|
|
|
|
|
void VideoSource::SetCallback(std::function<void(const Buffer &, uint32_t)> callback){
|
|
this->callback=callback;
|
|
}
|
|
|
|
bool VideoSource::Failed(){
|
|
return failed;
|
|
}
|
|
|
|
std::string VideoSource::GetErrorDescription(){
|
|
return error;
|
|
}
|
|
|
|
std::vector<uint32_t> VideoSource::GetAvailableEncoders(){
|
|
#ifdef __ANDROID__
|
|
return VideoSourceAndroid::availableEncoders;
|
|
#elif defined(__APPLE__) && !defined(TARGET_OSX32)
|
|
return VideoToolboxEncoderSource::GetAvailableEncoders();
|
|
#endif
|
|
return std::vector<uint32_t>();
|
|
}
|