Home
last modified time | relevance | path

Searched refs:ResamplingMode (Results 1 – 11 of 11) sorted by relevance

/dports/audio/libopenmpt/libopenmpt-0.6.0+release.autotools/soundlib/
H A DSnd_defs.h301 enum ResamplingMode : uint8 enum
327 inline std::array<ResamplingMode, 5> AllModes() noexcept { return { { SRCMODE_NEAREST, SRCMODE_LINE… in AllModes()
329 inline std::array<ResamplingMode, 6> AllModesWithDefault() noexcept { return { { SRCMODE_NEAREST, S… in AllModesWithDefault()
331 constexpr ResamplingMode Default() noexcept { return SRCMODE_SINC8LP; } in Default()
335 constexpr ResamplingMode ToKnownMode(int mode) noexcept in ToKnownMode()
337 return Resampling::IsKnownMode(mode) ? static_cast<ResamplingMode>(mode) in ToKnownMode()
342 constexpr int Length(ResamplingMode mode) noexcept in Length()
352 constexpr bool HasAA(ResamplingMode mode) noexcept { return (mode == SRCMODE_SINC8LP); } in HasAA()
354 constexpr ResamplingMode AddAA(ResamplingMode mode) noexcept { return (mode == SRCMODE_SINC8) ? SRC… in AddAA()
356 constexpr ResamplingMode RemoveAA(ResamplingMode mode) noexcept { return (mode == SRCMODE_SINC8LP) … in RemoveAA()
H A DMixFuncTable.h49 ResamplingIndex ResamplingModeToMixFlags(ResamplingMode resamplingMode);
H A DMixFuncTable.cpp75 ResamplingIndex ResamplingModeToMixFlags(ResamplingMode resamplingMode) in ResamplingModeToMixFlags()
H A DResampler.h60 ResamplingMode SrcMode = Resampling::Default();
H A DModInstrument.h76 ResamplingMode resampling = SRCMODE_DEFAULT; // Resampling mode
H A DModChannel.h94 ResamplingMode resamplingMode;
H A DFastmix.cpp322 …uint32 functionNdx = MixFuncTable::ResamplingModeToMixFlags(static_cast<ResamplingMode>(chn.resamp… in CreateStereoMix()
H A DInstrumentExtensions.cpp612 input->resampling = static_cast<ResamplingMode>(tmp); in ReadInstrumentHeaderField()
H A DSndfile.h502 ResamplingMode m_nResampling; // Resampling mode (if overriding the globally set resampling)
/dports/audio/vgmplay/vgmplay-0.40.9_2/
H A DVGMPlay.ini53 ResamplingMode = 0 key
/dports/audio/libopenmpt/libopenmpt-0.6.0+release.autotools/libopenmpt/
H A Dlibopenmpt_impl.cpp329 static OpenMPT::ResamplingMode filterlength_to_resamplingmode(std::int32_t length) { in filterlength_to_resamplingmode()
330 OpenMPT::ResamplingMode result = OpenMPT::SRCMODE_SINC8LP; in filterlength_to_resamplingmode()
346 static std::int32_t resamplingmode_to_filterlength(OpenMPT::ResamplingMode mode) { in resamplingmode_to_filterlength()