Home
last modified time | relevance | path

Searched refs:FASTDIV (Results 1 – 9 of 9) sorted by relevance

/third_party/ffmpeg/libavcodec/arm/
Dmathops.h40 #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/
Dmsmpeg4.c189 return FASTDIV((sum + (scale>>1)), scale); in get_dc()
250 a = FASTDIV((a + (scale >> 1)), scale); in ff_msmpeg4_pred_dc()
251 b = FASTDIV((b + (scale >> 1)), scale); in ff_msmpeg4_pred_dc()
252 c = FASTDIV((c + (scale >> 1)), scale); in ff_msmpeg4_pred_dc()
Dmathops.h201 #ifndef FASTDIV
202 # define FASTDIV(a,b) ((uint32_t)((((uint64_t)a) * ff_inverse[b]) >> 32)) macro
221 b = FASTDIV(c,b) + (b << s); in ff_sqrt()
Dmpeg4video.h243 pred = FASTDIV((pred + (scale >> 1)), scale); in ff_mpeg4_pred_dc()
Dg723_1dec.c206 p->subframe[i].ad_cb_gain = FASTDIV(temp, GAIN_LEVELS); in unpack_bitstream()
228 p->subframe[1].pulse_pos = FASTDIV(temp, 90); in unpack_bitstream()
231 p->subframe[2].pulse_pos = FASTDIV(temp, 9); in unpack_bitstream()
Dvp9prob.c37 update_factor = FASTDIV(update_factor * FFMIN(ct, max_count), max_count); in adapt_prob()
Dvorbisdec.c1447 unsigned step = FASTDIV(vr->partition_size << 1, dim << 1); in vorbis_residue_decode_internal()
1516 unsigned voffs_div = ch == 1 ? voffset : FASTDIV(voffset, ch); in vorbis_residue_decode_internal()
Ddca_core.c532 div = FASTDIV(code1, levels); in decode_blockcodes()
537 div = FASTDIV(code2, levels); in decode_blockcodes()
Dmpeg4videodec.c1058 level = FASTDIV((level + (s->y_dc_scale >> 1)), s->y_dc_scale); in mpeg4_decode_block()
1060 level = FASTDIV((level + (s->c_dc_scale >> 1)), s->c_dc_scale); in mpeg4_decode_block()