mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-27 07:40:10 +01:00
bug 2573 High / Low Pass filters limited to ~94 mins stereo at 44100 Hz
MULTICHAN-EXPAND was holding onto samples when checking function arguments. Ensure that samples are released after check.
This commit is contained in:
@@ -2241,7 +2241,8 @@ loop
|
||||
((and (eq nonsnd 'NULL) (null chan)))
|
||||
((and (eq nonsnd 'INT-OR-NULL)
|
||||
(or (integerp chan) (null chan))))
|
||||
(t (ny:error src index typ a t))))
|
||||
(t (ny:error src index typ a t)))
|
||||
(setf chan nil))
|
||||
(setf prev a)
|
||||
(setf len newlen))
|
||||
((and (eq nonsnd 'NUMBER) (numberp a)))
|
||||
|
||||
Reference in New Issue
Block a user