• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/

Lines Matching refs:pulse_position

435 static void decode_10bit_pulse(int code, int pulse_position[8],
441 pulse_position[i1] = (positions[2] << 1) + ( code & 1);
442 pulse_position[i2] = (positions[1] << 1) + ((code >> 1) & 1);
443 pulse_position[i3] = (positions[0] << 1) + ((code >> 2) & 1);
456 int pulse_position[8];
459 decode_10bit_pulse(fixed_index[4], pulse_position, 0, 4, 1);
460 decode_10bit_pulse(fixed_index[5], pulse_position, 2, 6, 5);
465 pulse_position[3] = temp % 5;
466 pulse_position[7] = temp / 5;
467 if (pulse_position[7] & 1)
468 pulse_position[3] = 4 - pulse_position[3];
469 pulse_position[3] = (pulse_position[3] << 1) + ( fixed_index[6] & 1);
470 pulse_position[7] = (pulse_position[7] << 1) + ((fixed_index[6] >> 1) & 1);
474 const int pos1 = (pulse_position[i] << 2) + i;
475 const int pos2 = (pulse_position[i + 4] << 2) + i;
509 int *pulse_position = fixed_sparse->x;
515 pulse_position[0] = ( fixed_index & 7) * 5 + track_position[pulse_subset];
516 pulse_position[1] = ((fixed_index >> 3) & 7) * 5 + track_position[pulse_subset + 1];
520 pulse_position[0] = ((fixed_index >> 1) & 7) * 5 + pulse_subset;
522 pulse_position[1] = ((fixed_index >> 6) & 7) * 5 + pulse_subset + (pulse_subset == 3 ? 1 : 0);
523 fixed_sparse->n = pulse_position[0] == pulse_position[1] ? 1 : 2;
525 pulse_position[0] = (fixed_index & 7) * 5;
527 pulse_position[1] = ((fixed_index >> 4) & 7) * 5 + pulse_subset + 1;
529 pulse_position[2] = ((fixed_index >> 8) & 7) * 5 + pulse_subset + 2;
532 pulse_position[0] = gray_decode[ fixed_index & 7];
533 pulse_position[1] = gray_decode[(fixed_index >> 3) & 7] + 1;
534 pulse_position[2] = gray_decode[(fixed_index >> 6) & 7] + 2;
536 pulse_position[3] = gray_decode[(fixed_index >> 10) & 7] + pulse_subset + 3;