Skip to content

Commit

Permalink
Remove unused type parameter in resample (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
jishnub authored Mar 11, 2024
1 parent e2d86f5 commit 1825e7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/audio.jl
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ end
Resamples input audio with a provided sample rate
"""
function resample(audio::SampleBuf{T, 1}, samplerate::Real) where {T, F}
function resample(audio::SampleBuf{T, 1}, samplerate::Real) where {T}
SampleBuf{T, 1}(
DSP.resample(audio.data, samplerate / audio.samplerate),
samplerate
Expand Down

0 comments on commit 1825e7d

Please sign in to comment.