audio/internal/convert: Bug fix: invalid size comparison

This commit is contained in:
Hajime Hoshi 2017-07-09 15:29:56 +09:00
parent 079395dd6f
commit d78a534a0b

View File

@ -65,7 +65,7 @@ func (r *Resampling) src(i int) (float64, float64, error) {
if i < 0 { if i < 0 {
return 0, 0, nil return 0, 0, nil
} }
if r.Size()/4 <= int64(i) { if r.size/4 <= int64(i) {
return 0, 0, nil return 0, 0, nil
} }
nextPos := int64(i) / resamplingBufferSize nextPos := int64(i) / resamplingBufferSize