2018-07-13 09:28:10 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <SDL.h>
|
|
|
|
|
2019-02-13 02:43:38 +00:00
|
|
|
#include "streaming/video/overlaymanager.h"
|
|
|
|
|
2018-07-13 09:28:10 +00:00
|
|
|
extern "C" {
|
|
|
|
#include <libavcodec/avcodec.h>
|
|
|
|
}
|
|
|
|
|
2019-02-13 02:43:38 +00:00
|
|
|
class IFFmpegRenderer : public Overlay::IOverlayRenderer {
|
2018-07-13 09:28:10 +00:00
|
|
|
public:
|
2018-12-25 20:57:00 +00:00
|
|
|
enum FramePacingConstraint {
|
|
|
|
PACING_FORCE_OFF,
|
|
|
|
PACING_FORCE_ON,
|
|
|
|
PACING_ANY
|
2018-09-04 00:57:09 +00:00
|
|
|
};
|
|
|
|
|
2018-07-13 09:28:10 +00:00
|
|
|
virtual bool initialize(SDL_Window* window,
|
|
|
|
int videoFormat,
|
|
|
|
int width,
|
2018-08-16 03:41:19 +00:00
|
|
|
int height,
|
2018-08-21 01:19:42 +00:00
|
|
|
int maxFps,
|
|
|
|
bool enableVsync) = 0;
|
2018-07-13 09:28:10 +00:00
|
|
|
virtual bool prepareDecoderContext(AVCodecContext* context) = 0;
|
2019-02-16 03:31:01 +00:00
|
|
|
virtual void renderFrame(AVFrame* frame) = 0;
|
2018-08-19 07:59:04 +00:00
|
|
|
virtual bool needsTestFrame() = 0;
|
2018-08-25 19:38:04 +00:00
|
|
|
virtual int getDecoderCapabilities() = 0;
|
2018-12-25 20:57:00 +00:00
|
|
|
virtual FramePacingConstraint getFramePacingConstraint() = 0;
|
2019-02-13 02:43:38 +00:00
|
|
|
|
|
|
|
// IOverlayRenderer
|
|
|
|
virtual void notifyOverlayUpdated(Overlay::OverlayType) override {
|
|
|
|
// Nothing
|
|
|
|
}
|
2018-07-13 09:28:10 +00:00
|
|
|
};
|