av_rescale_q_rnd  159 doc/examples/remuxing.c         pkt.pts = av_rescale_q_rnd(pkt.pts, in_stream->time_base, out_stream->time_base, AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX);
av_rescale_q_rnd  160 doc/examples/remuxing.c         pkt.dts = av_rescale_q_rnd(pkt.dts, in_stream->time_base, out_stream->time_base, AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX);
av_rescale_q_rnd 2535 fftools/ffmpeg.c     int64_t pts = av_rescale_q_rnd(ist->pts, AV_TIME_BASE_Q, ist->st->time_base,
av_rescale_q_rnd 4400 fftools/ffmpeg.c     pkt_dts = av_rescale_q_rnd(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q, AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX);
av_rescale_q_rnd 4428 fftools/ffmpeg.c     pkt_dts = av_rescale_q_rnd(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q, AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX);
av_rescale_q_rnd 4432 fftools/ffmpeg.c         int64_t wrap_dts = av_rescale_q_rnd(pkt.dts + (1LL<<ist->st->pts_wrap_bits),
av_rescale_q_rnd   52 libavcodec/pcm_rechunk_bsf.c         min_samples = av_rescale_q_rnd(1, sr, s->frame_rate, AV_ROUND_DOWN);
av_rescale_q_rnd  420 libavdevice/lavfi.c         d = av_rescale_q_rnd(frame->pts, tb, AV_TIME_BASE_Q, AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX);
av_rescale_q_rnd  567 libavfilter/src_movie.c             frame->pts += av_rescale_q_rnd(movie->ts_offset, AV_TIME_BASE_Q, outlink->time_base, AV_ROUND_UP);
av_rescale_q_rnd  573 libavfilter/src_movie.c                     movie->ts_offset += av_rescale_q_rnd(-diff, outlink->time_base, AV_TIME_BASE_Q, AV_ROUND_UP);
av_rescale_q_rnd  167 libavfilter/vf_fps.c         s->in_pts_off  = av_rescale_q_rnd(first_pts, AV_TIME_BASE_Q, inlink->time_base,
av_rescale_q_rnd  169 libavfilter/vf_fps.c         s->out_pts_off = av_rescale_q_rnd(first_pts, AV_TIME_BASE_Q, outlink->time_base,
av_rescale_q_rnd  199 libavfilter/vf_fps.c     frame->pts = s->out_pts_off + av_rescale_q_rnd(in_pts - s->in_pts_off,
av_rescale_q_rnd  268 libavfilter/vf_fps.c     s->status_pts = av_rescale_q_rnd(status_pts, inlink->time_base, outlink->time_base,
av_rescale_q_rnd  656 libavformat/concatdec.c     *min_ts = av_rescale_q_rnd(*min_ts, tb_in, tb_out,
av_rescale_q_rnd  658 libavformat/concatdec.c     *max_ts = av_rescale_q_rnd(*max_ts, tb_in, tb_out,
av_rescale_q_rnd  692 libavformat/mux.c                 av_rescale_q_rnd(s->internal->offset,
av_rescale_q_rnd  841 libavformat/mux.c         uint64_t max= av_rescale_q_rnd(s->max_chunk_duration, AV_TIME_BASE_Q, st->time_base, AV_ROUND_UP);
av_rescale_q_rnd  103 libavformat/rmenc.c         v = av_rescale_q_rnd(stream->total_frames, (AVRational){1000, 1}, stream->frame_rate, AV_ROUND_ZERO);
av_rescale_q_rnd  179 libavformat/rmenc.c             avio_wb32(s, av_rescale_q_rnd(stream->total_frames, (AVRational){1000, 1},  stream->frame_rate, AV_ROUND_ZERO));
av_rescale_q_rnd  307 libavformat/rmenc.c     timestamp = av_rescale_q_rnd(stream->nb_frames, (AVRational){1000, 1}, stream->frame_rate, AV_ROUND_ZERO);
av_rescale_q_rnd 1507 libavformat/utils.c                     av_rescale_q_rnd(st->parser->duration,
av_rescale_q_rnd 2658 libavformat/utils.c             end_time1 = av_rescale_q_rnd(st->duration, st->time_base,
av_rescale_q_rnd  144 libavutil/mathematics.c     return av_rescale_q_rnd(a, bq, cq, AV_ROUND_NEAR_INF);
av_rescale_q_rnd  180 libavutil/mathematics.c     a =  av_rescale_q_rnd(2*in_ts-1, in_tb, fs_tb, AV_ROUND_DOWN)   >>1;
av_rescale_q_rnd  181 libavutil/mathematics.c     b = (av_rescale_q_rnd(2*in_ts+1, in_tb, fs_tb, AV_ROUND_UP  )+1)>>1;
av_rescale_q_rnd  160 libavutil/mathematics.h int64_t av_rescale_q_rnd(int64_t a, AVRational bq, AVRational cq,