Basic VT decoding without rendering

This commit is contained in:
Cameron Gutman
2018-07-15 12:48:17 -07:00
parent babbae87d3
commit 5787deeee1
3 changed files with 59 additions and 3 deletions
+3
View File
@@ -2,6 +2,8 @@
#include "renderer.h"
#import <VideoToolbox/VideoToolbox.h>
class VTRenderer : public IRenderer
{
public:
@@ -15,4 +17,5 @@ public:
virtual void renderFrame(AVFrame* frame);
private:
AVBufferRef* m_HwContext;
};