mirror of https://github.com/odrling/Aegisub
152 lines
5.3 KiB
C++
152 lines
5.3 KiB
C++
// Copyright (c) 2005-2006, Rodrigo Braz Monteiro, Fredrik Mellbin
|
|
// 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.
|
|
//
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
/// @file audio_provider_avs.cpp
|
|
/// @brief Avisynth-based audio provider
|
|
/// @ingroup audio_input
|
|
///
|
|
|
|
#ifdef WITH_AVISYNTH
|
|
#include <libaegisub/audio/provider.h>
|
|
|
|
#include "avisynth.h"
|
|
#include "avisynth_wrap.h"
|
|
#include "audio_controller.h"
|
|
#include "options.h"
|
|
#include "utils.h"
|
|
|
|
#include <libaegisub/access.h>
|
|
#include <libaegisub/charset_conv.h>
|
|
#include <libaegisub/fs.h>
|
|
#include <libaegisub/path.h>
|
|
#include <libaegisub/make_unique.h>
|
|
|
|
#include <mutex>
|
|
|
|
namespace {
|
|
class AvisynthAudioProvider final : public agi::AudioProvider {
|
|
AviSynthWrapper avs_wrapper;
|
|
PClip clip;
|
|
|
|
void LoadFromClip(AVSValue clip);
|
|
void FillBuffer(void *buf, int64_t start, int64_t count) const;
|
|
|
|
public:
|
|
AvisynthAudioProvider(agi::fs::path const& filename);
|
|
|
|
bool NeedsCache() const override { return true; }
|
|
};
|
|
|
|
AvisynthAudioProvider::AvisynthAudioProvider(agi::fs::path const& filename) {
|
|
agi::acs::CheckFileRead(filename);
|
|
|
|
std::lock_guard<std::mutex> lock(avs_wrapper.GetMutex());
|
|
|
|
try {
|
|
IScriptEnvironment *env = avs_wrapper.GetEnv();
|
|
|
|
// Include
|
|
if (agi::fs::HasExtension(filename, "avs"))
|
|
LoadFromClip(env->Invoke("Import", env->SaveString(agi::fs::ShortName(filename).c_str())));
|
|
// Use DirectShowSource
|
|
else {
|
|
const char * argnames[3] = { 0, "video", "audio" };
|
|
AVSValue args[3] = { env->SaveString(agi::fs::ShortName(filename).c_str()), false, true };
|
|
|
|
// Load DirectShowSource.dll from app dir if it exists
|
|
agi::fs::path dsspath(config::path->Decode("?data/DirectShowSource.dll"));
|
|
if (agi::fs::FileExists(dsspath))
|
|
env->Invoke("LoadPlugin", env->SaveString(agi::fs::ShortName(dsspath).c_str()));
|
|
|
|
// Load audio with DSS if it exists
|
|
if (env->FunctionExists("DirectShowSource"))
|
|
LoadFromClip(env->Invoke("DirectShowSource", AVSValue(args, 3), argnames));
|
|
// Otherwise fail
|
|
else
|
|
throw agi::AudioProviderError("No suitable audio source filter found. Try placing DirectShowSource.dll in the Aegisub application directory.");
|
|
}
|
|
}
|
|
catch (AvisynthError &err) {
|
|
std::string errmsg(err.msg);
|
|
if (errmsg.find("filter graph manager won't talk to me") != errmsg.npos)
|
|
throw agi::AudioDataNotFound("Avisynth error: " + errmsg);
|
|
else
|
|
throw agi::AudioProviderError("Avisynth error: " + errmsg);
|
|
}
|
|
}
|
|
|
|
void AvisynthAudioProvider::LoadFromClip(AVSValue clip) {
|
|
// Check if it has audio
|
|
VideoInfo vi = clip.AsClip()->GetVideoInfo();
|
|
if (!vi.HasAudio()) throw agi::AudioDataNotFound("No audio found.");
|
|
|
|
IScriptEnvironment *env = avs_wrapper.GetEnv();
|
|
AVSValue script;
|
|
|
|
// Convert to one channel
|
|
if (OPT_GET("Audio/Downmixer")->GetString() != "None")
|
|
script = env->Invoke(OPT_GET("Audio/Downmixer")->GetString().c_str(), clip);
|
|
else
|
|
script = clip;
|
|
|
|
vi = script.AsClip()->GetVideoInfo();
|
|
|
|
// Convert sample rate
|
|
int setsample = OPT_GET("Provider/Audio/AVS/Sample Rate")->GetInt();
|
|
if (setsample == 0 && vi.SamplesPerSecond() < 32000)
|
|
setsample = 44100;
|
|
if (setsample != 0) {
|
|
AVSValue args[2] = { script, setsample };
|
|
script = env->Invoke("ResampleAudio", AVSValue(args, 2));
|
|
}
|
|
|
|
// Set clip
|
|
PClip tempclip = script.AsClip();
|
|
vi = tempclip->GetVideoInfo();
|
|
|
|
// Read properties
|
|
channels = vi.AudioChannels();
|
|
decoded_samples = num_samples = vi.num_audio_samples;
|
|
sample_rate = vi.SamplesPerSecond();
|
|
bytes_per_sample = vi.BytesPerChannelSample();
|
|
float_samples = vi.IsSampleType(SAMPLE_FLOAT);
|
|
|
|
this->clip = tempclip;
|
|
}
|
|
|
|
void AvisynthAudioProvider::FillBuffer(void *buf, int64_t start, int64_t count) const {
|
|
clip->GetAudio(buf, start, count, avs_wrapper.GetEnv());
|
|
}
|
|
}
|
|
|
|
std::unique_ptr<agi::AudioProvider> CreateAvisynthAudioProvider(agi::fs::path const& file, agi::BackgroundRunner *) {
|
|
return agi::make_unique<AvisynthAudioProvider>(file);
|
|
}
|
|
#endif
|