Lines Matching refs:dt
29 unsigned dt, bw; in compute_lpc_coeffs_py() local
32 if (!PyArg_ParseTuple(args, "IIO", &dt, &bw, &x_obj)) in compute_lpc_coeffs_py()
35 CTYPES_CHECK("dt", (unsigned)dt < LC3_NUM_DT); in compute_lpc_coeffs_py()
38 int ne = LC3_NE(dt, bw); in compute_lpc_coeffs_py()
45 compute_lpc_coeffs(dt, bw, x, g, a); in compute_lpc_coeffs_py()
107 unsigned dt, bw; in analyze_py() local
112 if (!PyArg_ParseTuple(args, "IIpIO", &dt, &bw, &nn_flag, &nbytes, &x_obj)) in analyze_py()
115 CTYPES_CHECK("dt", (unsigned)dt < LC3_NUM_DT); in analyze_py()
118 int ne = LC3_NE(dt, bw); in analyze_py()
122 lc3_tns_analyze(dt, bw, nn_flag, nbytes, &data, x); in analyze_py()
130 unsigned dt, bw; in synthesize_py() local
134 if (!PyArg_ParseTuple(args, "IIOO", &dt, &bw, &data_obj, &x_obj)) in synthesize_py()
137 CTYPES_CHECK("dt", (unsigned)dt < LC3_NUM_DT); in synthesize_py()
141 int ne = LC3_NE(dt, bw); in synthesize_py()
145 lc3_tns_synthesize(dt, bw, &data, x); in synthesize_py()