2018-07-13 09:28:10 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <SDL.h>
|
|
|
|
|
2019-04-12 05:27:20 +00:00
|
|
|
#include "streaming/video/decoder.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
|
|
|
};
|
|
|
|
|
2019-04-12 05:27:20 +00:00
|
|
|
virtual bool initialize(PDECODER_PARAMETERS params) = 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-04-10 04:46:14 +00:00
|
|
|
virtual bool isRenderThreadSupported() = 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
|
|
|
};
|