Remove the local declarations of the VP interface functions

There's no need to define them manually here, the normal
declarations in IWelsVP.h work just fine even if not loading
the WelsVP library dynamically.
This commit is contained in:
Martin Storsjö 2014-02-19 15:06:39 +02:00
parent 19efc59fae
commit 21e9c83746

View File

@ -45,11 +45,6 @@
#include "encoder_context.h"
#include "utils.h"
#ifdef NO_DYNAMIC_VP
EResult CreateVpInterface (void** ppCtx, int iVersion);
EResult DestroyVpInterface (void** ppCtx, int iVersion);
#endif
namespace WelsSVCEnc {
#define WelsSafeDelete(p) if(p){ delete (p); (p) = NULL; }