Searched refs:time_base (Results 101 - 125 of 417) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dlibxvidff.c319 xvid_enc_create.fincr = avctx->time_base.num;
320 xvid_enc_create.fbase = avctx->time_base.den;
599 frate = avctx->time_base.den;
600 fbase = avctx->time_base.num;
609 avctx->time_base.den = frate;
610 avctx->time_base.num = fbase;
631 avctx->time_base.den = est_frate;
632 avctx->time_base.num = est_fbase;
637 avctx->time_base.den = frate;
638 avctx->time_base
[all...]
H A Dlibdiracdec.c128 avccontext->time_base.den = src_params->frame_rate.numerator;
129 avccontext->time_base.num = src_params->frame_rate.denominator;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Daf_resample.c154 outlink->time_base = (AVRational){ 1, outlink->sample_rate };
243 s->next_pts = av_rescale_q(in->pts, inlink->time_base,
244 outlink->time_base);
258 out->pts = av_rescale_q(in->pts, inlink->time_base,
259 outlink->time_base) -
H A Dvf_mergeplanes.c157 out->pts = av_rescale_q(s->fs.pts, s->fs.time_base, outlink->time_base);
186 outlink->time_base = ctx->inputs[0]->time_base;
231 in[i].time_base = inlink->time_base;
H A Dvf_dejudder.c44 * - To ensure that the new PTS's are integers, time_base is divided
86 outlink->time_base = av_mul_q(inlink->time_base, av_make_q(1, 2 * dj->cycle));
H A Daf_astreamsync.c116 outlink->time_base = ctx->inputs[id]->time_base;
132 av_q2d(ctx->outputs[out_id]->time_base) * buf->pts;
H A Dvf_interlace.c116 outlink->time_base = inlink->time_base;
119 outlink->time_base.num *= 2;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/tools/
H A Duncoded_frame.c167 st->stream->time_base = st->stream->codec->time_base =
168 st->link->time_base;
243 st->link ->time_base,
244 st->stream->time_base);
H A Dseek_print.c85 AVRational *tb = &avf->streams[packet.stream_index]->time_base;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dnutdec.c251 nut->time_base = av_malloc(nut->time_base_count * sizeof(AVRational));
252 if (!nut->time_base)
256 GET_V(nut->time_base[i].num, tmp > 0 && tmp < (1ULL << 31));
257 GET_V(nut->time_base[i].den, tmp > 0 && tmp < (1ULL << 31));
258 if (av_gcd(nut->time_base[i].num, nut->time_base[i].den) != 1) {
375 GET_V(stream_id, tmp < s->nb_streams && !nut->stream[tmp].time_base);
456 stc->time_base = &nut->time_base[stc->time_base_id];
457 avpriv_set_pts_info(s->streams[stream_id], 63, stc->time_base
[all...]
H A Dlibnut.c100 s[i].time_base.num = denom;
101 s[i].time_base.den = num;
243 avpriv_set_pts_info(avf->streams[i], 60, s[i].time_base.num, s[i].time_base.den);
299 double time_pos = target_ts * priv->s[stream_index].time_base.num / (double)priv->s[stream_index].time_base.den;
H A Dr3d.c104 avpriv_set_pts_info(ast, 32, 1, st->time_base.den);
113 av_dlog(s, "timescale %d\n", st->time_base.den);
143 st->time_base);
267 pkt->duration = (uint64_t)st->time_base.den*
318 pkt->duration = av_rescale(samples, st->time_base.den, st->codec->sample_rate);
374 frame_num = av_rescale_q(sample_time, st->time_base,
H A Dlibquvi.c93 avpriv_set_pts_info(st, ist->pts_wrap_bits, ist->time_base.num, ist->time_base.den);
H A Dtxd.c50 st->avg_frame_rate = av_inv_q(st->time_base);
H A Dvc1test.c103 if(s->streams[0]->time_base.den == 1000)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Ddvenc.c83 ct = (time_t)av_rescale_rnd(c->frames, c->sys->time_base.num,
84 c->sys->time_base.den, AV_ROUND_DOWN);
144 ct = c->start_time + av_rescale_rnd(c->frames, c->sys->time_base.num,
145 c->sys->time_base.den, AV_ROUND_DOWN);
160 ct = c->start_time + av_rescale_rnd(c->frames, c->sys->time_base.num,
161 c->sys->time_base.den, AV_ROUND_DOWN);
H A Dlibnut.c98 s[i].time_base.num = denom;
99 s[i].time_base.den = num;
230 avpriv_set_pts_info(avf->streams[i], 60, s[i].time_base.num, s[i].time_base.den);
286 double time_pos = target_ts * priv->s[stream_index].time_base.num / (double)priv->s[stream_index].time_base.den;
H A Dvc1test.c105 if(s->streams[0]->time_base.den == 1000)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/
H A Dffmpeg.c959 pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base);
994 pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base);
1076 sub->pts = av_rescale_q(pts, ist->st->time_base, AV_TIME_BASE_Q);
1092 pkt.pts = av_rescale_q(sub->pts, AV_TIME_BASE_Q, ost->st->time_base);
1122 sync_ipts = get_sync_ipts(ost) / av_q2d(enc->time_base);
1213 pkt.pts= av_rescale_q(ost->sync_opts, enc->time_base, ost->st->time_base);
1239 // big_picture.pts= av_rescale(ost->sync_opts, AV_TIME_BASE*(int64_t)enc->time_base
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavdevice/
H A Dx11grab.c64 AVRational time_base; /**< Time base */ member in struct:x11grab
321 x11grab->time_base = av_inv_q(x11grab->framerate);
322 x11grab->time_frame = av_gettime() / av_q2d(x11grab->time_base);
333 st->codec->time_base = x11grab->time_base;
334 st->codec->bit_rate = x11grab->frame_size * 1/av_q2d(x11grab->time_base) * 8;
490 delay = s->time_frame * av_q2d(s->time_base) - curtime;
492 if (delay < INT64_C(-1000000) * av_q2d(s->time_base)) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dlibschroedinger.c62 if (avctx->time_base.den == vf->frame_rate_num &&
63 avctx->time_base.num == vf->frame_rate_denom)
H A Dmpeg4video_parser.c101 if((s1->flags & PARSER_FLAG_USE_CODEC_TS) && s->avctx->time_base.den>0 && ret>=0){
105 s1->pts = av_rescale_q(s->time, (AVRational){1, s->avctx->time_base.den}, (AVRational){1, 1200000});
H A Dsamidec.c122 int ts_start = av_rescale_q(avpkt->pts, avctx->time_base, (AVRational){1,100});
124 av_rescale_q(avpkt->duration, avctx->time_base, (AVRational){1,100}) : -1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavdevice/
H A Dx11grab.c63 AVRational time_base; /**< Time base */ member in struct:x11_grab
307 x11grab->time_base = (AVRational){framerate.den, framerate.num};
308 x11grab->time_frame = av_gettime() / av_q2d(x11grab->time_base);
319 st->codec->time_base = x11grab->time_base;
320 st->codec->bit_rate = x11grab->frame_size * 1/av_q2d(x11grab->time_base) * 8;
467 delay = s->time_frame * av_q2d(s->time_base) - curtime;
469 if (delay < INT64_C(-1000000) * av_q2d(s->time_base)) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/tools/
H A Dgraph2dot.c74 link->w, link->h, link->time_base.num, link->time_base.den);

Completed in 481 milliseconds

1234567891011>>