@@ -31,7 +31,7 @@ func TestOpenWAVInput_InvalidWAV(t *testing.T) {
3131
3232func TestCreateChannelResamplers_Mono (t * testing.T ) {
3333 resamplers , err := createChannelResamplers [float64 ](
34- 1 , // mono
34+ 1 , // mono
3535 44100 , 48000 , // rates
3636 engine .QualityHigh ,
3737 )
@@ -42,7 +42,7 @@ func TestCreateChannelResamplers_Mono(t *testing.T) {
4242
4343func TestCreateChannelResamplers_Stereo (t * testing.T ) {
4444 resamplers , err := createChannelResamplers [float64 ](
45- 2 , // stereo
45+ 2 , // stereo
4646 44100 , 48000 , // rates
4747 engine .QualityHigh ,
4848 )
@@ -54,7 +54,7 @@ func TestCreateChannelResamplers_Stereo(t *testing.T) {
5454
5555func TestCreateChannelResamplers_Multichannel (t * testing.T ) {
5656 resamplers , err := createChannelResamplers [float64 ](
57- 8 , // 7.1 surround
57+ 8 , // 7.1 surround
5858 44100 , 48000 , // rates
5959 engine .QualityHigh ,
6060 )
@@ -99,8 +99,8 @@ func TestNewResampleBuffers(t *testing.T) {
9999 NumChannels : 2 ,
100100 }
101101 buffers := newResampleBuffers [float64 ](
102- 2 , // stereo
103- 16 , // 16-bit
102+ 2 , // stereo
103+ 16 , // 16-bit
104104 44100 , 48000 , // rates
105105 format ,
106106 )
@@ -142,7 +142,7 @@ func TestProgressTracker_ZeroSamples(t *testing.T) {
142142func TestResampleSequential_Success (t * testing.T ) {
143143 // Create resamplers
144144 resamplers , err := createChannelResamplers [float64 ](
145- 2 , // stereo
145+ 2 , // stereo
146146 44100 , 48000 , // rates
147147 engine .QualityHigh ,
148148 )
@@ -172,7 +172,7 @@ func TestResampleSequential_Success(t *testing.T) {
172172func TestResampleParallel_Success (t * testing.T ) {
173173 // Create resamplers
174174 resamplers , err := createChannelResamplers [float64 ](
175- 2 , // stereo
175+ 2 , // stereo
176176 44100 , 48000 , // rates
177177 engine .QualityHigh ,
178178 )
@@ -202,7 +202,7 @@ func TestResampleParallel_Success(t *testing.T) {
202202func TestResampleChannelData_ParallelMode (t * testing.T ) {
203203 // Create resamplers
204204 resamplers , err := createChannelResamplers [float64 ](
205- 2 , // stereo
205+ 2 , // stereo
206206 44100 , 48000 , // rates
207207 engine .QualityHigh ,
208208 )
@@ -223,7 +223,7 @@ func TestResampleChannelData_ParallelMode(t *testing.T) {
223223func TestResampleChannelData_SequentialMode (t * testing.T ) {
224224 // Create resamplers
225225 resamplers , err := createChannelResamplers [float64 ](
226- 2 , // stereo
226+ 2 , // stereo
227227 44100 , 48000 , // rates
228228 engine .QualityHigh ,
229229 )
@@ -244,7 +244,7 @@ func TestResampleChannelData_SequentialMode(t *testing.T) {
244244func TestResampleChannelData_MonoFallsBackToSequential (t * testing.T ) {
245245 // Create mono resampler
246246 resamplers , err := createChannelResamplers [float64 ](
247- 1 , // mono
247+ 1 , // mono
248248 44100 , 48000 , // rates
249249 engine .QualityHigh ,
250250 )
@@ -264,7 +264,7 @@ func TestResampleChannelData_MonoFallsBackToSequential(t *testing.T) {
264264func TestFlushAndPadChannels_EqualLengths (t * testing.T ) {
265265 // Create resamplers
266266 resamplers , err := createChannelResamplers [float64 ](
267- 2 , // stereo
267+ 2 , // stereo
268268 44100 , 48000 , // rates
269269 engine .QualityHigh ,
270270 )
@@ -291,7 +291,7 @@ func TestFlushAndPadChannels_EqualLengths(t *testing.T) {
291291func TestFlushAndPadChannels_EmptyFlush (t * testing.T ) {
292292 // Create resamplers but don't process any data
293293 resamplers , err := createChannelResamplers [float64 ](
294- 2 , // stereo
294+ 2 , // stereo
295295 44100 , 48000 , // rates
296296 engine .QualityHigh ,
297297 )
0 commit comments