Home
last modified time | relevance | path

Searched refs:formatFrom (Results 1 – 12 of 12) sorted by relevance

/dports/emulators/stella/stella-6.6/src/common/audio/
H A DLanczosResampler.cxx57 Resampler::Format formatFrom, in LanczosResampler() argument
62 Resampler(formatFrom, formatTo, nextFragmentCallback), in LanczosResampler()
72 myPrecomputedKernelCount{reducedDenominator(formatFrom.sampleRate, formatTo.sampleRate)}, in LanczosResampler()
75 myHighPassL{HIGH_PASS_CUT_OFF, float(formatFrom.sampleRate)},
76 myHighPassR{HIGH_PASS_CUT_OFF, float(formatFrom.sampleRate)},
77 myHighPass{HIGH_PASS_CUT_OFF, float(formatFrom.sampleRate)}
H A DResampler.hxx53 Resampler(Format formatFrom, Format formatTo, in Resampler() argument
55 : myFormatFrom{formatFrom}, in Resampler()
H A DSimpleResampler.cxx22 Resampler::Format formatFrom, in SimpleResampler() argument
25 : Resampler(formatFrom, formatTo, nextFragmentCallback) in SimpleResampler()
H A DSimpleResampler.hxx28 Resampler::Format formatFrom,
H A DLanczosResampler.hxx30 Resampler::Format formatFrom,
/dports/graphics/qt5-wayland/kde-qtwayland-5.15.2p37/src/client/
H A Dqwaylandshm.cpp70 wl_shm_format fmt = formatFrom(format); in formatSupported()
74 wl_shm_format QWaylandShm::formatFrom(QImage::Format format) in formatFrom() function in QtWaylandClient::QWaylandShm
79 QImage::Format QWaylandShm::formatFrom(wl_shm_format format) in formatFrom() function in QtWaylandClient::QWaylandShm
H A Dqwaylandshm_p.h77 static wl_shm_format formatFrom(QImage::Format format);
78 static QImage::Format formatFrom(wl_shm_format format);
H A Dqwaylandshmbackingstore.cpp109 wl_shm_format wl_format = shm->formatFrom(format); in QWaylandShmBuffer()
/dports/chinese/opencc/OpenCC-ver.1.0.5/src/
H A DDictConverter.cpp52 const string formatFrom, const string formatTo) { in ConvertDictionary() argument
53 DictPtr dictFrom = LoadDictionary(formatFrom, inputFileName); in ConvertDictionary()
H A DDictConverter.hpp29 const string formatFrom, const string formatTo);
/dports/emulators/stella/stella-6.6/src/common/
H A DSoundSDL2.cxx364 Resampler::Format formatFrom = in initResampler() local
371 myResampler = make_unique<SimpleResampler>(formatFrom, formatTo, nextFragmentCallback); in initResampler()
375 myResampler = make_unique<LanczosResampler>(formatFrom, formatTo, nextFragmentCallback, 2); in initResampler()
379 myResampler = make_unique<LanczosResampler>(formatFrom, formatTo, nextFragmentCallback, 3); in initResampler()
/dports/chinese/opencc/OpenCC-ver.1.0.5/node/
H A Dbinding.cc156 const string formatFrom = ToUtf8String(info[2]); in NAN_METHOD() local
159 opencc::ConvertDictionary(inputFileName, outputFileName, formatFrom, formatTo); in NAN_METHOD()