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

  /external/libvpx/libvpx/
tools_common.c 291 int input_shift) {
293 const int offset = input_shift > 0 ? (1 << (input_shift - 1)) - 1 : 0;
298 dst->fmt != src->fmt || input_shift < 0) {
325 *p_dst++ = (*p_src++ << input_shift) + offset;
331 int input_shift) {
333 const int offset = input_shift > 0 ? (1 << (input_shift - 1)) - 1 : 0;
339 input_shift < 0) {
365 *p_dst++ = (*p_src++ << input_shift) + offset
    [all...]
tools_common.h 155 void vpx_img_upshift(vpx_image_t *dst, vpx_image_t *src, int input_shift);
vpxenc.c 1920 int input_shift = 0; local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
merge.cc 227 int input_shift = 6 + log_fs_mult - local
229 input_shift = std::max(input_shift, 0);
232 input_shift);
235 if (input_shift > expanded_shift) {
236 energy_expanded = energy_expanded >> (input_shift - expanded_shift);
238 energy_input = energy_input >> (expanded_shift - input_shift);
  /external/libvpx/libvpx/vp9/encoder/
vp9_encoder.c 2286 const unsigned int input_shift = bit_depth - in_bit_depth; local
    [all...]

Completed in 369 milliseconds