d4233867eb
* VideoDecoderFactory wrapper * wip * fix compilation * add notes * upgrade webrtc version
16 lines
416 B
C++
16 lines
416 B
C++
#ifndef OBJC_VIDEO_FACTORY_H
|
|
#define OBJC_VIDEO_FACTORY_H
|
|
|
|
#include <memory>
|
|
#include "api/video_codecs/video_decoder_factory.h"
|
|
#include "api/video_codecs/video_encoder_factory.h"
|
|
|
|
namespace livekit {
|
|
|
|
std::unique_ptr<webrtc::VideoEncoderFactory> CreateObjCVideoEncoderFactory();
|
|
std::unique_ptr<webrtc::VideoDecoderFactory> CreateObjCVideoDecoderFactory();
|
|
|
|
} // namespace livekit
|
|
|
|
#endif // OBJC_VIDEO_FACTORY_H
|