Rename renderFrameAtVsync() to renderFrame() in preparation for further refactoring

This commit is contained in:
Cameron Gutman
2019-02-15 19:31:01 -08:00
parent 6cab2bec61
commit 81c6202582
11 changed files with 16 additions and 16 deletions
@@ -23,7 +23,7 @@ public:
int maxFps,
bool enableVsync) = 0;
virtual bool prepareDecoderContext(AVCodecContext* context) = 0;
virtual void renderFrameAtVsync(AVFrame* frame) = 0;
virtual void renderFrame(AVFrame* frame) = 0;
virtual bool needsTestFrame() = 0;
virtual int getDecoderCapabilities() = 0;
virtual FramePacingConstraint getFramePacingConstraint() = 0;