Home
last modified time | relevance | path

Searched refs:FFUMOD (Results 1 – 3 of 3) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dmpeg4videoenc.c899 minutes = FFUDIV(seconds, 60); seconds = FFUMOD(seconds, 60); in mpeg4_encode_gop_header()
900 hours = FFUDIV(minutes, 60); minutes = FFUMOD(minutes, 60); in mpeg4_encode_gop_header()
901 hours = FFUMOD(hours , 24); in mpeg4_encode_gop_header()
1082 time_mod = FFUMOD(s->time, s->avctx->time_base.den); in ff_mpeg4_encode_picture_header()
Dhevc_filter.c127 s->HEVClc->qp_y = FFUMOD(qp_y + s->HEVClc->tu.cu_qp_delta + 52 + 2 * off, in ff_hevc_set_qPy()
/third_party/ffmpeg/libavutil/
Dcommon.h64 #define FFUMOD(a,b) ((a)-(b)*FFUDIV(a,b)) macro