Searched refs:q_high (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_encoder.c1771 int q_low = bottom_index, q_high = top_index; local
1841 // Lower q_high
1842 q_high = q > q_low ? q - 1 : q_low;
1846 q = MIN(q, (q_high + q_low) >> 1);
1851 q_low = q < q_high ? q + 1 : q_high;
1855 q = MIN(q, (q_high + q_low + 1) >> 1);
1859 q = clamp(q, q_low, q_high);
1864 q, MAX(q_high, top_index), bottom_index)) {
1877 q_high
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_onyx_if.c2212 int q_low = bottom_index, q_high = top_index; local
2296 // Lower q_high
2297 q_high = q > q_low ? q - 1 : q_low;
2301 q = MIN(q, (q_high + q_low) >> 1);
2306 q_low = q < q_high ? q + 1 : q_high;
2310 q = MIN(q, (q_high + q_low + 1) >> 1);
2314 q = clamp(q, q_low, q_high);
2319 q, MAX(q_high, top_index), bottom_index)) {
2332 q_high
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Donyx_if.c3480 int q_high; local
4017 q_high = cpi->active_worst_quality;
4262 q_high = cpi->active_worst_quality;
4314 /* Lower q_high */
4315 q_high = (Q > q_low) ? (Q - 1) : q_low;
4318 Q = (q_high + q_low) >> 1;
4324 q_low = (Q < q_high) ? (Q + 1) : q_high;
4327 Q = (q_high + q_low + 1) >> 1;
4331 if (Q > q_high)
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Donyx_if.c3333 int q_high; local
3836 q_high = cpi->active_worst_quality;
4067 q_high = cpi->active_worst_quality;
4119 /* Lower q_high */
4120 q_high = (Q > q_low) ? (Q - 1) : q_low;
4123 Q = (q_high + q_low) >> 1;
4129 q_low = (Q < q_high) ? (Q + 1) : q_high;
4132 Q = (q_high + q_low + 1) >> 1;
4136 if (Q > q_high)
[all...]

Completed in 1768 milliseconds