Lines Matching refs:x
71 x = self.spec.decode(b, bw, len(data))
73 return (x, bw, pitch)
75 def synthesize(self, x, bw, pitch, nbytes): argument
77 x = self.tns.run(x, bw)
79 x = self.sns.run(x)
81 x = np.append(x, np.zeros(self.ns - self.ne))
82 x = self.mdct.run(x)
84 x = self.ltpf.run(x)
86 return x
90 (x, bw, pitch) = self.decode(data)
92 x = self.synthesize(x, bw, pitch, len(data))
94 return x