HomeSort by relevance Sort by last modified time
    Searched refs:input_shift (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
merge.cc 211 int input_shift = 6 + log_fs_mult - local
213 input_shift = std::max(input_shift, 0);
216 input_shift);
219 if (input_shift > expanded_shift) {
220 energy_expanded = energy_expanded >> (input_shift - expanded_shift);
222 energy_input = energy_input >> (expanded_shift - input_shift);
  /external/chromium_org/third_party/libvpx/source/libvpx/
vpxdec.c 531 int input_shift) {
532 const int offset = input_shift > 0 ? (1 << (input_shift - 1)) : 0;
537 dst->fmt != src->fmt || input_shift < 0) {
563 *p_dst++ = (*p_src++ << input_shift) + offset;
569 int input_shift) {
570 const int offset = input_shift > 0 ? (1 << (input_shift - 1)) : 0;
576 input_shift < 0) {
601 *p_dst++ = (*p_src++ << input_shift) + offset
    [all...]
vpxenc.c 1955 int input_shift = 0; local
    [all...]

Completed in 116 milliseconds