Lines Matching refs:x
74 x = self.spec.decode(b, bw, len(data))
76 return (x, bw, pitch)
78 def synthesize(self, x, bw, pitch, nbytes): argument
80 x = self.tns.run(x, bw)
82 x = self.sns.run(x)
84 x = np.append(x, np.zeros(self.ns - self.ne))
85 x = self.mdct.run(x)
87 x = self.ltpf.run(x, len(data))
89 return x
93 (x, bw, pitch) = self.decode(data)
95 x = self.synthesize(x, bw, pitch, len(data))
97 return x
179 x = dec.run(data) variable
181 np.clip(np.round(x), -32768, 32767).astype(np.int16))