Searched refs:probability (Results 1 – 4 of 4) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
D | boolhuff.h | 66 static void vp8_encode_bool(BOOL_CODER *br, int bit, int probability) in vp8_encode_bool() argument 78 Sectionbits[active_section] += vp8_prob_cost[255-probability]; in vp8_encode_bool() 80 Sectionbits[active_section] += vp8_prob_cost[probability]; in vp8_encode_bool() 85 split = 1 + (((range - 1) * probability) >> 8); in vp8_encode_bool()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/ |
D | dboolhuff.h | 63 static int vp8dx_decode_bool(BOOL_DECODER *br, int probability) { in vp8dx_decode_bool() argument 71 split = 1 + (((br->range - 1) * probability) >> 8); in vp8dx_decode_bool()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_writer.h | 38 static void vp9_write(vp9_writer *br, int bit, int probability) { in vp9_write() argument 45 split = 1 + (((range - 1) * probability) >> 8); in vp9_write()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/armv5te/ |
D | boolhuff_armv5te.asm | 58 ; r2 int probability 71 mul r6, r4, r7 ; ((range-1) * probability) 74 add r4, r7, r6, lsr #8 ; 1 + (((range-1) * probability) >> 8)
|