Fix process end on A/B transcoder too.
authorCarl Hetherington <cth@carlh.net>
Sun, 18 Nov 2012 22:04:50 +0000 (22:04 +0000)
committerCarl Hetherington <cth@carlh.net>
Sun, 18 Nov 2012 22:04:50 +0000 (22:04 +0000)
src/lib/ab_transcoder.cc

index f280ab48c339c2b5689b5dcfe8f485f657b54d8e..537cb4dd7b1ed9e15180c0a8b70ac1e02821c5ab 100644 (file)
@@ -106,6 +106,15 @@ ABTranscoder::go ()
                }
        }
 
+       if (_delay_line) {
+               _delay_line->process_end ();
+       }
+       if (_matcher) {
+               _matcher->process_end ();
+       }
+       if (_gain) {
+               _gain->process_end ();
+       }
        _encoder->process_end ();
 }