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

  /external/libhevc/encoder/
ihevce_cabac.c 654 WORD32 num_bins, unary_length; local
668 /* GETRANGE(unary_length, (u4_sym_shiftk_plus1 + 1)); */
669 GETRANGE(unary_length, u4_sym_shiftk_plus1);
671 /* unary code with (unary_length-1) '1's and terminating '0' bin */
672 u4_unary_bins = (1 << unary_length) - 2;
675 u4_egk = (u4_unary_bins << (unary_length - 1)) |
676 (u4_sym_shiftk_plus1 & ((1 << (unary_length - 1)) - 1));
681 /* length of the code = 2 *(unary_length - 1) + 1 + k */
682 num_bins = (2 * unary_length) - 1 + k;
721 WORD32 num_bins, unary_length, u4_unary_bins local
    [all...]
ihevce_cabac_tu.c 2144 WORD32 num_bins, unary_length; local
    [all...]
  /external/libavc/encoder/
ih264e_cabac.c 117 WORD32 unary_length; local
122 unary_length = (32 - CLZ(u4_sufs_shiftk_plus1) + (0 == u4_sufs_shiftk_plus1));
124 /* unary code with (unary_length-1) '1's and terminating '0' bin */
125 u4_unary_bins = (1 << unary_length) - 2;
128 u4_egk = (u4_unary_bins << (unary_length - 1))
129 | (u4_sufs_shiftk_plus1 & ((1 << (unary_length - 1)) - 1));
131 /* length of the code = 2 *(unary_length - 1) + 1 + k */
132 *pi1_bins_len = (2 * unary_length) - 1;

Completed in 492 milliseconds