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

  /external/libavc/encoder/
irc_common.h 98 #define K_Q 4
99 #define I_TO_P_RATIO (19) /* In K_Q Q factor */
100 #define P_TO_B_RATIO (32) /* In K_Q Q factor */
101 #define P_TO_I_RATIO (13) /* In K_Q Q factor */
irc_rate_control_api.c 572 prev_qp = (P_TO_I_RATIO * prev_qp + (1 << (K_Q - 1)))
573 >> (K_Q);
581 prev_qp = (I_TO_P_RATIO * prev_qp + (1 << (K_Q - 1)))
582 >> (K_Q);
590 prev_qp = (P_TO_B_RATIO * prev_qp + (1 << (K_Q - 1)))
591 >> (K_Q);
601 + (1 << (K_Q + K_Q - 1)))
602 >> (K_Q + K_Q);
    [all...]
irc_bit_allocation.c 324 ps_bit_allocation->i2_K[I_PIC] = (1 << K_Q);
326 ps_bit_allocation->i2_K[B_PIC] = (P_TO_B_RATIO * I_TO_P_RATIO) >> K_Q;
451 SET_VAR_Q(vq_K, ps_bit_allocation->i2_K[i], K_Q);
    [all...]

Completed in 473 milliseconds