MCPcopy Create free account
hub / github.com/audacity/audacity / SamplesToFloats

Function SamplesToFloats

libraries/lib-math/SampleFormat.cpp:100–107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98}
99
100void SamplesToFloats(constSamplePtr src, sampleFormat srcFormat,
101 float *dst, size_t len, size_t srcStride, size_t dstStride)
102{
103 CopySamples( src, srcFormat,
104 reinterpret_cast<samplePtr>(dst), floatSample, len,
105 DitherType::none,
106 srcStride, dstStride);
107}
108
109void CopySamples(constSamplePtr src, sampleFormat srcFormat,
110 samplePtr dst, sampleFormat dstFormat, size_t len,

Callers 3

DoSoftwarePlaythroughFunction · 0.85
AudioCallbackMethod · 0.85
CalcSummaryMethod · 0.85

Calls 1

CopySamplesFunction · 0.85

Tested by

no test coverage detected