Searched refs:input_shift (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dmerge.cc211 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/
H A Dvpxdec.c531 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)
530 high_img_upshift(vpx_image_t *dst, vpx_image_t *src, int input_shift) argument
568 low_img_upshift(vpx_image_t *dst, vpx_image_t *src, int input_shift) argument
607 img_upshift(vpx_image_t *dst, vpx_image_t *src, int input_shift) argument
[all...]
H A Dvpxenc.c1723 int input_shift) {
1725 const int offset = input_shift > 0 ? (1 << (input_shift - 1)) - 1 : 0;
1730 dst->fmt != src->fmt || input_shift < 0) {
1756 *p_dst++ = (*p_src++ << input_shift) + offset;
1762 int input_shift) {
1764 const int offset = input_shift > 0 ? (1 << (input_shift - 1)) - 1 : 0;
1770 input_shift < 0) {
1795 *p_dst++ = (*p_src++ << input_shift)
1722 high_img_upshift(vpx_image_t *dst, vpx_image_t *src, int input_shift) argument
1761 low_img_upshift(vpx_image_t *dst, vpx_image_t *src, int input_shift) argument
1801 img_upshift(vpx_image_t *dst, vpx_image_t *src, int input_shift) argument
1955 int input_shift = 0; local
[all...]

Completed in 96 milliseconds