mirror of
https://github.com/danog/libtgvoip.git
synced 2024-12-03 10:07:45 +01:00
49 lines
883 B
Plaintext
49 lines
883 B
Plaintext
|
//
|
||
|
// 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.
|
||
|
//
|
||
|
|
||
|
#import "TGVVideoSource.h"
|
||
|
#include "VideoToolboxEncoderSource.h"
|
||
|
|
||
|
@implementation TGVVideoSource{
|
||
|
tgvoip::video::VideoToolboxEncoderSource* nativeSource;
|
||
|
}
|
||
|
|
||
|
- (instancetype)init{
|
||
|
self=[super init];
|
||
|
nativeSource=new tgvoip::video::VideoToolboxEncoderSource();
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
- (void)dealloc{
|
||
|
delete nativeSource;
|
||
|
}
|
||
|
|
||
|
- (void)sendVideoFrame: (CMSampleBufferRef)buffer{
|
||
|
nativeSource->EncodeFrame(buffer);
|
||
|
}
|
||
|
|
||
|
- (TGVVideoResolution)maximumSupportedVideoResolution{
|
||
|
return TGVVideoResolution1080;
|
||
|
}
|
||
|
|
||
|
- (void)setVideoRotation: (int)rotation{
|
||
|
|
||
|
}
|
||
|
|
||
|
- (void)pauseStream{
|
||
|
|
||
|
}
|
||
|
|
||
|
- (void)resumeStream{
|
||
|
|
||
|
}
|
||
|
|
||
|
- (tgvoip::video::VideoSource*)nativeVideoSource{
|
||
|
return nativeSource;
|
||
|
}
|
||
|
|
||
|
@end
|