Searched refs:q_low (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
1842 q_high = q > q_low ? q - 1 : q_low;
1846 q = MIN(q, (q_high + q_low) >> 1);
1850 // Raise q_low
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);
1880 q_low = q < q_high ? q + 1 : q_high;
1886 q = (q_high + q_low
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_onyx_if.c2212 int q_low = bottom_index, q_high = top_index; local
2297 q_high = q > q_low ? q - 1 : q_low;
2301 q = MIN(q, (q_high + q_low) >> 1);
2305 // Raise q_low
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);
2335 q_low = q < q_high ? q + 1 : q_high;
2341 q = (q_high + q_low
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Donyx_if.c3479 int q_low; local
4016 q_low = cpi->active_best_quality;
4261 q_low = cpi->active_best_quality;
4315 q_high = (Q > q_low) ? (Q - 1) : q_low;
4318 Q = (q_high + q_low) >> 1;
4323 /* Raise q_low */
4324 q_low = (Q < q_high) ? (Q + 1) : q_high;
4327 Q = (q_high + q_low + 1) >> 1;
4333 else if (Q < q_low)
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Donyx_if.c3332 int q_low; local
3835 q_low = cpi->active_best_quality;
4066 q_low = cpi->active_best_quality;
4120 q_high = (Q > q_low) ? (Q - 1) : q_low;
4123 Q = (q_high + q_low) >> 1;
4128 /* Raise q_low */
4129 q_low = (Q < q_high) ? (Q + 1) : q_high;
4132 Q = (q_high + q_low + 1) >> 1;
4138 else if (Q < q_low)
[all...]

Completed in 678 milliseconds