Searched refs:FASTDIV (Results 1 - 19 of 19) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/x86/
H A Dintmath.h24 #define FASTDIV(a,b) \ macro
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Dintmath.h52 #ifndef FASTDIV
54 # define FASTDIV(a,b) ((uint32_t)((((uint64_t)a) * ff_inverse[b]) >> 32)) macro
56 # define FASTDIV(a,b) ((a) / (b)) macro
58 #endif /* FASTDIV */
78 b = FASTDIV(c,b) + (b << s);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/arm/
H A Dmathops.h40 #define FASTDIV FASTDIV macro
41 static av_always_inline av_const int FASTDIV(int a, int b) function
55 #define FASTDIV FASTDIV macro
56 static av_always_inline av_const int FASTDIV(int a, int b) function
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/arm/
H A Dintmath.h33 #define FASTDIV FASTDIV macro
34 static av_always_inline av_const int FASTDIV(int a, int b) function
89 #define FASTDIV FASTDIV macro
90 static av_always_inline av_const int FASTDIV(int a, int b) function
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dmsmpeg4.c188 return FASTDIV((sum + (scale>>1)), scale);
249 a = FASTDIV((a + (scale >> 1)), scale);
250 b = FASTDIV((b + (scale >> 1)), scale);
251 c = FASTDIV((c + (scale >> 1)), scale);
H A Dmathops.h198 #ifndef FASTDIV
199 # define FASTDIV(a,b) ((uint32_t)((((uint64_t)a) * ff_inverse[b]) >> 32)) macro
200 #endif /* FASTDIV */
216 b = FASTDIV(c,b) + (b << s);
H A Dmpeg4video.h221 pred = FASTDIV((pred + (scale >> 1)), scale);
H A Dg723_1.c166 p->subframe[i].ad_cb_gain = FASTDIV(temp, GAIN_LEVELS);
188 p->subframe[1].pulse_pos = FASTDIV(temp, 90);
191 p->subframe[2].pulse_pos = FASTDIV(temp, 9);
H A Dvorbisdec.c1421 unsigned step = FASTDIV(vr->partition_size << 1, dim << 1);
1475 unsigned voffs_div = FASTDIV(voffset << 1, ch <<1);
H A Dmpeg4videodec.c956 level = FASTDIV((level + (s->y_dc_scale >> 1)), s->y_dc_scale);
958 level = FASTDIV((level + (s->c_dc_scale >> 1)), s->c_dc_scale);
H A Ddcadec.c1240 int div = FASTDIV(code, levels);
H A Dvp9.c3468 update_factor = FASTDIV(update_factor * ct, max_count);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dlagarithrac.h91 /* low>>24 ensures that any cases too big for exact FASTDIV are
94 low_scaled = FASTDIV(l->low - (l->low >> 24), div);
H A Dmpeg4video.h170 pred = FASTDIV((pred + (scale >> 1)), scale);
H A Dmsmpeg4.c686 return FASTDIV((sum + (scale>>1)), scale);
750 a = FASTDIV((a + (scale >> 1)), scale);
751 b = FASTDIV((b + (scale >> 1)), scale);
752 c = FASTDIV((c + (scale >> 1)), scale);
H A Dflacenc.c573 k = av_log2(n < 256 ? FASTDIV(sum2, n) : sum2 / n);
H A Dmpeg4videodec.c860 if(n<4) level= FASTDIV((level + (s->y_dc_scale>>1)), s->y_dc_scale);
861 else level= FASTDIV((level + (s->c_dc_scale>>1)), s->c_dc_scale);
H A Ddca.c1098 int div = FASTDIV(code, levels);
H A Dvorbisdec.c1361 : FASTDIV(vr->partition_size, dim);

Completed in 195 milliseconds