Searched refs:FASTDIV (Results 1 - 9 of 9) sorted by relevance
/third_party/ffmpeg/libavcodec/arm/ |
H A D | mathops.h | 40 #define FASTDIV FASTDIV macro 41 static av_always_inline av_const int FASTDIV(int a, int b) in FASTDIV() function 55 #define FASTDIV FASTDIV macro 56 static av_always_inline av_const int FASTDIV(int a, int b) in FASTDIV() function
|
/third_party/ffmpeg/libavcodec/ |
H A D | msmpeg4.c | 199 return FASTDIV((sum + (scale>>1)), scale); in get_dc() 260 a = FASTDIV((a + (scale >> 1)), scale); in ff_msmpeg4_pred_dc() 261 b = FASTDIV((b + (scale >> 1)), scale); in ff_msmpeg4_pred_dc() 262 c = FASTDIV((c + (scale >> 1)), scale); in ff_msmpeg4_pred_dc()
|
H A D | mathops.h | 203 #ifndef FASTDIV 204 # define FASTDIV(a,b) ((uint32_t)((((uint64_t)a) * ff_inverse[b]) >> 32)) macro 205 #endif /* FASTDIV */ 223 b = FASTDIV(c,b) + (b << s); in ff_sqrt()
|
H A D | mpeg4video.h | 139 pred = FASTDIV((pred + (scale >> 1)), scale); in ff_mpeg4_pred_dc()
|
H A D | g723_1dec.c | 207 p->subframe[i].ad_cb_gain = FASTDIV(temp, GAIN_LEVELS); in unpack_bitstream() 229 p->subframe[1].pulse_pos = FASTDIV(temp, 90); in unpack_bitstream() 232 p->subframe[2].pulse_pos = FASTDIV(temp, 9); in unpack_bitstream()
|
H A D | vp9prob.c | 37 update_factor = FASTDIV(update_factor * FFMIN(ct, max_count), max_count); in adapt_prob()
|
H A D | vorbisdec.c | 1454 unsigned step = FASTDIV(vr->partition_size << 1, dim << 1); in vorbis_residue_decode_internal() 1523 unsigned voffs_div = ch == 1 ? voffset : FASTDIV(voffset, ch); in vorbis_residue_decode_internal()
|
H A D | dca_core.c | 534 div = FASTDIV(code1, levels); in decode_blockcodes() 539 div = FASTDIV(code2, levels); in decode_blockcodes()
|
H A D | mpeg4videodec.c | 1130 level = FASTDIV((level + (s->y_dc_scale >> 1)), s->y_dc_scale); in mpeg4_decode_block() 1132 level = FASTDIV((level + (s->c_dc_scale >> 1)), s->c_dc_scale); in mpeg4_decode_block()
|
Completed in 17 milliseconds