Searched defs:modifier (Results 1 - 3 of 3) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Dtemporal_filter.c99 int modifier; local
110 modifier = src_byte - pixel_value;
112 * float coeff = (3.0 * modifer * modifier) / pow(2, strength);
113 * modifier = (int)roundf(coeff > 16 ? 0 : 16-coeff);
115 modifier *= modifier;
116 modifier *= 3;
117 modifier += 1 << (strength - 1);
118 modifier >>= strength;
120 if (modifier > 1
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_temporal_filter.c92 int modifier; local
100 modifier = src_byte - pixel_value;
102 // float coeff = (3.0 * modifer * modifier) / pow(2, strength);
103 // modifier = (int)roundf(coeff > 16 ? 0 : 16-coeff);
104 modifier *= modifier;
105 modifier *= 3;
106 modifier += 1 << (strength - 1);
107 modifier >>= strength;
109 if (modifier > 1
[all...]
/hardware/qcom/audio/legacy/alsa_sound/
H A DAudioHardwareALSA.cpp1506 void AudioHardwareALSA::disableVoiceCall(char* verb, char* modifier, int mode, int device) argument
1511 (!strcmp(it->useCase, modifier))) {
1529 void AudioHardwareALSA::enableVoiceCall(char* verb, char* modifier, int mode, int device) argument
1539 strlcpy(alsa_handle.useCase, modifier, sizeof(alsa_handle.useCase));
1570 snd_use_case_set(mUcMgr, "_enamod", modifier);

Completed in 102 milliseconds