Searched refs:av_rescale_rnd (Results 1 - 25 of 40) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/include/libavutil/
H A Dmathematics.h65 int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding) av_const;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Dmathematics.c77 int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding rnd){ function
83 if(a<0 && a != INT64_MIN) return -av_rescale_rnd(-a, b, c, rnd ^ ((rnd>>1)&1));
130 return av_rescale_rnd(a, b, c, AV_ROUND_NEAR_INF);
136 return av_rescale_rnd(a, b, c, AV_ROUND_NEAR_INF);
142 if (av_rescale_rnd(ts_a, a, b, AV_ROUND_DOWN) < ts_b) return -1;
143 if (av_rescale_rnd(ts_b, b, a, AV_ROUND_DOWN) < ts_a) return 1;
H A Dmathematics.h91 int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding) av_const;
H A Drational.c130 int64_t x_up = av_rescale_rnd(a, q.den, b, AV_ROUND_UP);
133 int64_t x_down = av_rescale_rnd(a, q.den, b, AV_ROUND_DOWN);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dpcm.c63 pos = av_rescale_rnd(timestamp * byte_rate,
H A Ddvenc.c133 ct = c->start_time + av_rescale_rnd(c->frames, c->sys->time_base.num,
149 ct = c->start_time + av_rescale_rnd(c->frames, c->sys->time_base.num,
H A Dastenc.c40 ast->loop ## type = av_rescale_rnd(ast->loop ## type, enc->sample_rate, 1000, AV_ROUND_DOWN); \
H A Dnut.c224 av_rescale_rnd(val,
H A Dvqf.c272 pos = av_rescale_rnd(timestamp * st->codec->bit_rate,
H A Dlibrtmp.c280 timestamp = av_rescale_rnd(timestamp, 1000, AV_TIME_BASE,
H A Dgxfenc.c911 field_nb = av_rescale_rnd(pkt->dts, gxf->time_base.den,
1003 field_nb[i] = av_rescale_rnd(pkt[i]->dts, gxf->time_base.den,
H A Dmpeg.c940 min_ts = av_rescale_rnd(min_ts, time_base.den,
943 max_ts = av_rescale_rnd(max_ts, time_base.den,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dmathematics.h99 int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding) av_const;
H A Dmathematics.c63 int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding rnd) function
80 return -av_rescale_rnd(-a, b, c, rnd ^ ((rnd >> 1) & 1));
129 return av_rescale_rnd(a, b, c, AV_ROUND_NEAR_INF);
137 return av_rescale_rnd(a, b, c, rnd);
151 if (av_rescale_rnd(ts_a, a, b, AV_ROUND_DOWN) < ts_b)
153 if (av_rescale_rnd(ts_b, b, a, AV_ROUND_DOWN) < ts_a)
H A Drational.c132 int64_t x_up = av_rescale_rnd(a, q.den, b, AV_ROUND_UP);
135 int64_t x_down = av_rescale_rnd(a, q.den, b, AV_ROUND_DOWN);
H A Dimgutils.c255 scaled_dim = av_rescale_rnd(w, sar.num, sar.den, AV_ROUND_ZERO);
257 scaled_dim = av_rescale_rnd(h, sar.den, sar.num, AV_ROUND_ZERO);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dpcm.c45 pos = av_rescale_rnd(timestamp * byte_rate,
H A Dassdec.c183 min_ts = av_rescale_rnd(min_ts, time_base.den,
186 max_ts = av_rescale_rnd(max_ts, time_base.den,
H A Ddvenc.c83 ct = (time_t)av_rescale_rnd(c->frames, c->sys->time_base.num,
144 ct = c->start_time + av_rescale_rnd(c->frames, c->sys->time_base.num,
160 ct = c->start_time + av_rescale_rnd(c->frames, c->sys->time_base.num,
H A Dlibrtmp.c140 timestamp = av_rescale_rnd(timestamp, 1000, AV_TIME_BASE,
H A Dnut.c95 nut->stream[i].last_pts= av_rescale_rnd(
H A Dvqf.c253 pos = av_rescale_rnd(timestamp * st->codec->bit_rate,
H A Drtpenc.c125 s->max_frames_per_packet = av_rescale_rnd(s1->max_delay, st->codec->sample_rate, AV_TIME_BASE * (int64_t)st->codec->frame_size, AV_ROUND_DOWN);
H A Dapplehttp.c655 timestamp = av_rescale_rnd(timestamp, 1, stream_index >= 0 ?
664 av_rescale_rnd(c->first_timestamp, 1,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/doc/examples/
H A Dresampling_audio.c151 av_rescale_rnd(src_nb_samples, dst_rate, src_rate, AV_ROUND_UP);
168 dst_nb_samples = av_rescale_rnd(swr_get_delay(swr_ctx, src_rate) +

Completed in 331 milliseconds

12