Separate FFmpeg decoder from the Session class (#4)

This commit is contained in:
Cameron Gutman
2018-07-17 20:00:16 -07:00
committed by GitHub
parent ec68f2ae89
commit a89cadc520
12 changed files with 276 additions and 166 deletions
+11
View File
@@ -0,0 +1,11 @@
#pragma once
#include "renderer.h"
// A factory is required to avoid pulling in
// incompatible Objective-C headers.
class VTRendererFactory {
public:
static
IFFmpegRenderer* createRenderer();
};