Searched refs:FFUMOD (Results 1 – 3 of 3) sorted by relevance
899 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()
127 s->HEVClc->qp_y = FFUMOD(qp_y + s->HEVClc->tu.cu_qp_delta + 52 + 2 * off, in ff_hevc_set_qPy()
64 #define FFUMOD(a,b) ((a)-(b)*FFUDIV(a,b)) macro