From: Paul Brossier Date: Mon, 15 Apr 2013 19:29:22 +0000 (-0500) Subject: tests/api/examples.py: remove old FixedInputProcessor X-Git-Tag: 0.5.0~115^2~15 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=7cd6bd19ba689f7054c1205df8207243cf753542;p=timeside.git tests/api/examples.py: remove old FixedInputProcessor --- diff --git a/tests/api/examples.py b/tests/api/examples.py index 747c197..2c69222 100644 --- a/tests/api/examples.py +++ b/tests/api/examples.py @@ -24,36 +24,3 @@ class Gain(Processor): def process(self, frames, eod=False): return numpy.multiply(frames, self.gain), eod - - -class FixedInputProcessor(Processor): - """Processor which does absolutely nothing except illustrating the use - of the FixedInputSizeAdapter. It also tests things a bit.""" - - implements(IProcessor) - - BUFFER_SIZE = 1024 - - @staticmethod - @interfacedoc - def id(): - return "test_fixed" - - @interfacedoc - def setup(self, channels, samplerate, nframes): - super(FixedInputProcessor, self).setup(channels, samplerate, nframes) - self.adapter = FixedSizeInputAdapter(self.BUFFER_SIZE, channels, pad=True) - - @interfacedoc - def process(self, frames, eod=False): - for buffer, end in self.adapter.process(frames, eod): - # Test that the adapter is actually doing the job: - if len(buffer) != self.BUFFER_SIZE: - raise Exception("Bad buffer size from adapter") - - return frames, eod - - - - -