Searched refs:time_base (Results 176 - 200 of 417) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Ddirac.c174 av_reduce(&avctx->time_base.num, &avctx->time_base.den,
H A Dlibx265.c110 ctx->params->fpsNum = avctx->time_base.den;
111 ctx->params->fpsDenom = avctx->time_base.num * avctx->ticks_per_frame;
H A Dmicrodvddec.c310 int ts_start = av_rescale_q(start, avctx->time_base, (AVRational){1,100});
312 av_rescale_q(duration, avctx->time_base, (AVRational){1,100}) : -1;
H A Dituh263enc.c112 div= (s->avctx->time_base.num*1800000LL + 500LL*s->avctx->time_base.den) / ((1000LL+i)*s->avctx->time_base.den);
114 error= FFABS(s->avctx->time_base.num*1800000LL - (1000LL+i)*s->avctx->time_base.den*div);
131 temp_ref= s->picture_number * (int64_t)coded_frame_rate * s->avctx->time_base.num / //FIXME use timestamp
132 (coded_frame_rate_base * (int64_t)s->avctx->time_base.den);
H A Daudio_frame_queue.c57 afq->avctx->time_base,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dlibschroedingerdec.c192 avccontext->time_base.den = p_schro_params->format->frame_rate_numerator;
193 avccontext->time_base.num = p_schro_params->format->frame_rate_denominator;
H A Dwmv2enc.c37 put_bits(&pb, 5, s->avctx->time_base.den / s->avctx->time_base.num); //yes 29.97 -> 29
H A Dituh263enc.c115 div= (s->avctx->time_base.num*1800000LL + 500LL*s->avctx->time_base.den) / ((1000LL+i)*s->avctx->time_base.den);
117 error= FFABS(s->avctx->time_base.num*1800000LL - (1000LL+i)*s->avctx->time_base.den*div);
134 temp_ref= s->picture_number * (int64_t)coded_frame_rate * s->avctx->time_base.num / //FIXME use timestamp
135 (coded_frame_rate_base * (int64_t)s->avctx->time_base.den);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Drl2.c277 av_rescale_q(timestamp, st->time_base, st2->time_base),
H A Dswfdec.c116 vst->codec->time_base = (AVRational){ 256, swf->frame_rate };
192 vst->codec->time_base = (AVRational){ 256, swf->frame_rate };
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dconcatdec.c172 st->time_base = source_st->time_base;
505 cat->avf->streams[pkt->stream_index]->time_base);
535 rescale_interval(AV_TIME_BASE_Q, cat->avf->streams[stream]->time_base,
550 rescale_interval(avf->streams[stream]->time_base, AV_TIME_BASE_Q,
H A Dmp3dec.c157 st->time_base));
213 st->time_base);
298 st->time_base);
H A Dffmetadec.c158 s->chapters[s->nb_chapters - 1]->time_base,
H A Dmvi.c92 vst->avg_frame_rate = av_inv_q(vst->time_base);
H A Drawdec.c87 st->codec->time_base = av_inv_q(s1->framerate);
H A Dtee.c196 st2->time_base = st->time_base;
473 tb = avf ->streams[s ]->time_base;
474 tb2 = avf2->streams[s2]->time_base;
H A Dtty.c95 s->chars_per_frame = FFMAX(av_q2d(st->time_base)*s->chars_per_frame, 1);
H A Dwavenc.c443 s->streams[0]->codec->sample_rate * (int64_t)s->streams[0]->time_base.num,
444 s->streams[0]->time_base.den);
600 s->streams[0]->codec->sample_rate * (int64_t)s->streams[0]->time_base.num,
601 s->streams[0]->time_base.den);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvsrc_testsrc.c54 AVRational time_base, frame_rate; member in struct:TestSourceContext
104 test->time_base = av_inv_q(test->frame_rate);
130 outlink->time_base = test->time_base;
141 av_rescale_q(test->pts, test->time_base, AV_TIME_BASE_Q) >= test->duration)
577 grad = (256 * test->nb_frame * test->time_base.num / test->time_base.den) %
614 double time = av_q2d(test->time_base) * test->nb_frame *
622 second = av_rescale_rnd(test->nb_frame * test->time_base.num, p10decimals, test->time_base
[all...]
H A Daf_amerge.c158 outlink->time_base = ctx->inputs[0]->time_base;
263 ctx->outputs[0]->time_base);
H A Df_select.c208 select->var_values[VAR_TB] = av_q2d(inlink->time_base);
305 select->var_values[VAR_START_T] = TS2D(frame->pts) * av_q2d(inlink->time_base);
309 select->var_values[VAR_T ] = TS2D(frame->pts) * av_q2d(inlink->time_base);
H A Dtrim.c92 inlink->time_base : (AVRational){ 1, inlink->sample_rate };
258 pts = av_rescale_q(frame->pts, inlink->time_base,
338 inlink->time_base);
H A Daf_asetnsamples.c119 asns->next_out_pts += av_rescale_q(nb_out_samples, (AVRational){1, outlink->sample_rate}, outlink->time_base);
H A Dsrc_movie.c373 outlink->time_base = st->st->time_base;
396 av_ts2str(frame->pts), av_ts2timestr(frame->pts, &link->time_base),
404 av_ts2str(frame->pts), av_ts2timestr(frame->pts, &link->time_base),
H A Dvf_yadif.c465 link->time_base.num = link->src->inputs[0]->time_base.num;
466 link->time_base.den = link->src->inputs[0]->time_base.den * 2;

Completed in 292 milliseconds

1234567891011>>