Lines Matching refs:x
51 def analyse(self, x, nbytes): argument
53 att = self.attdet.run(nbytes, x)
55 pitch_present = self.ltpf.run(x)
57 x = self.mdct.run(x)[:self.ne]
59 (e, nn_flag) = self.energy.compute(x)
65 x = self.sns.run(e, att, x)
67 x = self.tns.run(x, bw, nn_flag, nbytes)
69 (xq, lastnz, x) = self.spec.run(bw, nbytes,
71 self.sns.get_nbits(), self.tns.get_nbits(), x)
96 def run(self, x, nbytes): argument
98 pitch_present = self.analyse(x, nbytes)