2006-01-16 22:02:54 +01:00
|
|
|
// Copyright (c) 2005, Rodrigo Braz Monteiro
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
|
|
|
/// @file avisynth_wrap.cpp
|
|
|
|
/// @brief Wrapper-layer for Avisynth
|
|
|
|
/// @ingroup video_input audio_input
|
|
|
|
///
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2008-01-22 03:54:16 +01:00
|
|
|
#ifdef WITH_AVISYNTH
|
|
|
|
#include "avisynth_wrap.h"
|
2012-01-18 21:08:32 +01:00
|
|
|
|
|
|
|
#include "avisynth.h"
|
2013-01-07 02:50:09 +01:00
|
|
|
#include "options.h"
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include <mutex>
|
|
|
|
|
2020-03-06 06:15:07 +01:00
|
|
|
#ifndef _WIN32
|
|
|
|
#include <dlfcn.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#define AVISYNTH_SO "avisynth.dll"
|
|
|
|
#else
|
|
|
|
#define AVISYNTH_SO "libavisynth.so"
|
|
|
|
#endif
|
|
|
|
|
2009-08-01 05:41:42 +02:00
|
|
|
// Allocate storage for and initialise static members
|
2012-01-18 21:08:32 +01:00
|
|
|
namespace {
|
|
|
|
int avs_refcount = 0;
|
2020-03-06 06:15:07 +01:00
|
|
|
#ifdef _WIN32
|
2012-11-13 17:51:01 +01:00
|
|
|
HINSTANCE hLib = nullptr;
|
2020-03-06 06:15:07 +01:00
|
|
|
#else
|
|
|
|
void* hLib = nullptr;
|
|
|
|
#endif
|
2012-11-13 17:51:01 +01:00
|
|
|
IScriptEnvironment *env = nullptr;
|
2013-01-04 16:01:50 +01:00
|
|
|
std::mutex AviSynthMutex;
|
2012-01-18 21:08:32 +01:00
|
|
|
}
|
2022-07-05 01:12:10 +02:00
|
|
|
// This needs to be visible so Avisynth sees it
|
|
|
|
const AVS_Linkage *AVS_linkage = nullptr;
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2012-01-18 21:08:32 +01:00
|
|
|
typedef IScriptEnvironment* __stdcall FUNC(int);
|
2010-08-02 08:32:01 +02:00
|
|
|
|
2006-01-16 22:02:54 +01:00
|
|
|
AviSynthWrapper::AviSynthWrapper() {
|
2012-01-18 21:08:32 +01:00
|
|
|
if (!avs_refcount++) {
|
2020-03-06 06:15:07 +01:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define CONCATENATE(x, y) x ## y
|
|
|
|
#define _Lstr(x) CONCATENATE(L, x)
|
|
|
|
hLib = LoadLibraryW(_Lstr(AVISYNTH_SO));
|
|
|
|
#undef _Lstr
|
|
|
|
#undef CONCATENATE
|
|
|
|
#else
|
|
|
|
hLib = dlopen(AVISYNTH_SO, RTLD_LAZY | RTLD_LOCAL | RTLD_DEEPBIND);
|
|
|
|
#endif
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2012-01-18 21:08:32 +01:00
|
|
|
if (!hLib)
|
2020-03-06 06:15:07 +01:00
|
|
|
throw AvisynthError("Could not load " AVISYNTH_SO);
|
2010-07-23 22:34:23 +02:00
|
|
|
|
2020-03-06 06:15:07 +01:00
|
|
|
#ifdef _WIN32
|
|
|
|
FUNC* CreateScriptEnv = (FUNC*)GetProcAddress(hLib, "CreateScriptEnvironment");
|
|
|
|
#else
|
|
|
|
FUNC* CreateScriptEnv = (FUNC*)dlsym(hLib, "CreateScriptEnvironment");
|
|
|
|
#endif
|
2012-01-18 21:08:32 +01:00
|
|
|
if (!CreateScriptEnv)
|
2020-03-06 06:15:07 +01:00
|
|
|
throw AvisynthError("Failed to get address of CreateScriptEnv from " AVISYNTH_SO);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2022-07-05 02:01:35 +02:00
|
|
|
env = CreateScriptEnv(AVISYNTH_INTERFACE_VERSION);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2012-01-18 21:08:32 +01:00
|
|
|
if (!env)
|
2013-01-04 16:01:50 +01:00
|
|
|
throw AvisynthError("Failed to create a new avisynth script environment. Avisynth is too old?");
|
2012-01-18 21:08:32 +01:00
|
|
|
|
2022-07-05 01:12:10 +02:00
|
|
|
AVS_linkage = env->GetAVSLinkage();
|
|
|
|
|
2006-01-16 22:02:54 +01:00
|
|
|
// Set memory limit
|
2010-05-21 03:13:36 +02:00
|
|
|
const int memoryMax = OPT_GET("Provider/Avisynth/Memory Max")->GetInt();
|
2013-01-04 16:01:50 +01:00
|
|
|
if (memoryMax)
|
2006-01-16 22:02:54 +01:00
|
|
|
env->SetMemoryMax(memoryMax);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
AviSynthWrapper::~AviSynthWrapper() {
|
|
|
|
if (!--avs_refcount) {
|
2022-08-13 22:53:58 +02:00
|
|
|
env->DeleteScriptEnvironment();
|
2020-03-06 06:15:07 +01:00
|
|
|
#ifdef _WIN32
|
2006-01-16 22:02:54 +01:00
|
|
|
FreeLibrary(hLib);
|
2020-03-06 06:15:07 +01:00
|
|
|
#else
|
|
|
|
dlclose(hLib);
|
|
|
|
#endif
|
|
|
|
AVS_linkage = nullptr;
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
}
|
2006-02-23 05:19:57 +01:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
std::mutex& AviSynthWrapper::GetMutex() const {
|
2012-01-18 21:08:32 +01:00
|
|
|
return AviSynthMutex;
|
|
|
|
}
|
|
|
|
|
|
|
|
IScriptEnvironment *AviSynthWrapper::GetEnv() const {
|
2006-03-30 00:39:41 +02:00
|
|
|
return env;
|
|
|
|
}
|
2010-08-02 08:32:01 +02:00
|
|
|
|
2012-01-18 21:08:32 +01:00
|
|
|
#endif
|