Lines Matching refs:mp

131 II_step_one(PMPSTR mp, sideinfo_layer_II *si, struct frame *fr)
146 unsigned char b0 = get_leq_8_bits(mp, step);
147 unsigned char b1 = get_leq_8_bits(mp, step);
154 unsigned char b0 = get_leq_8_bits(mp, step);
162 unsigned char b0 = n0 ? get_leq_8_bits(mp, 2) : 0;
163 unsigned char b1 = n1 ? get_leq_8_bits(mp, 2) : 0;
171 unsigned char b0 = get_leq_8_bits(mp, step);
177 unsigned char b0 = n0 ? get_leq_8_bits(mp, 2) : 0;
187 s0 = get_leq_8_bits(mp, 6);
188 s1 = get_leq_8_bits(mp, 6);
189 s2 = get_leq_8_bits(mp, 6);
192 s0 = get_leq_8_bits(mp, 6);
194 s2 = get_leq_8_bits(mp, 6);
197 s0 = get_leq_8_bits(mp, 6);
202 s0 = get_leq_8_bits(mp, 6);
203 s1 = get_leq_8_bits(mp, 6);
218 II_step_two(PMPSTR mp, sideinfo_layer_II* si, struct frame *fr, int gr, real fraction[2][4][SBLIMIT])
242 int v0 = getbits(mp, k);
243 int v1 = getbits(mp, k);
244 int v2 = getbits(mp, k);
251 unsigned int idx = getbits(mp, k);
281 int v0 = getbits(mp, k);
282 int v1 = getbits(mp, k);
283 int v2 = getbits(mp, k);
298 unsigned int idx = getbits(mp, k);
361 decode_layer2_sideinfo(PMPSTR mp)
363 (void) mp;
369 decode_layer2_frame(PMPSTR mp, unsigned char *pcm_sample, int *pcm_point)
373 struct frame *fr = &(mp->fr);
378 II_step_one(mp, &si, fr);
385 II_step_two(mp, &si, fr, i >> 2, fraction);
387 clip += synth_1to1_mono(mp, fraction[single][j], pcm_sample, pcm_point);
393 II_step_two(mp, &si, fr, i >> 2, fraction);
396 clip += synth_1to1(mp, fraction[0][j], 0, pcm_sample, &p1);
397 clip += synth_1to1(mp, fraction[1][j], 1, pcm_sample, pcm_point);