1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-12-02 09:37:52 +01:00
libtgvoip/video/VideoRenderer.h

28 lines
716 B
C
Raw Normal View History

//
// Created by Grishka on 10.08.2018.
//
#ifndef LIBTGVOIP_VIDEORENDERER_H
#define LIBTGVOIP_VIDEORENDERER_H
#include <vector>
#include "../Buffers.h"
namespace tgvoip{
namespace video{
class VideoRenderer{
public:
2019-02-05 12:41:00 +01:00
static std::vector<uint32_t> GetAvailableDecoders();
virtual ~VideoRenderer(){};
virtual void Reset(uint32_t codec, unsigned int width, unsigned int height, std::vector<Buffer>& csd)=0;
2019-02-05 12:41:00 +01:00
virtual void DecodeAndDisplay(Buffer frame, uint32_t pts)=0;
virtual void SetStreamEnabled(bool enabled)=0;
virtual void SetRotation(uint16_t rotation)=0;
virtual void SetStreamPaused(bool paused)=0;
2019-02-05 12:41:00 +01:00
static int GetMaximumResolution();
};
}
}
#endif //LIBTGVOIP_VIDEORENDERER_H