Searched refs:time_base (Results 151 - 175 of 417) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvf_bbox.c84 av_ts2str(frame->pts), av_ts2timestr(frame->pts, &inlink->time_base));
H A Dvf_blackframe.c91 frame->pts == AV_NOPTS_VALUE ? -1 : frame->pts * av_q2d(inlink->time_base),
H A Dvf_tinterlace.c149 outlink->time_base.num = inlink->time_base.num;
150 outlink->time_base.den = inlink->time_base.den * 2;
H A Dvf_w3fdif.c106 outlink->time_base.num = inlink->time_base.num;
107 outlink->time_base.den = inlink->time_base.den * 2;
H A Df_interleave.c97 frame->pts = av_rescale_q(frame->pts, inlink->time_base, AV_TIME_BASE_Q);
157 outlink->time_base = AV_TIME_BASE_Q;
H A Dvf_alphamerge.c92 outlink->time_base = mainlink->time_base;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Ddvenc.c133 ct = c->start_time + av_rescale_rnd(c->frames, c->sys->time_base.num,
134 c->sys->time_base.den, AV_ROUND_DOWN);
149 ct = c->start_time + av_rescale_rnd(c->frames, c->sys->time_base.num,
150 c->sys->time_base.den, AV_ROUND_DOWN);
H A Drawvideodec.c62 (AVRational){8,1}, st->time_base);
H A Dmpeg.c770 timestamp = av_rescale_q(timestamp, av_make_q(1, 1000), st->time_base);
938 AVRational time_base = s->streams[0]->time_base; local
939 ts = av_rescale_q(ts, AV_TIME_BASE_Q, time_base);
940 min_ts = av_rescale_rnd(min_ts, time_base.den,
941 time_base.num * (int64_t)AV_TIME_BASE,
943 max_ts = av_rescale_rnd(max_ts, time_base.den,
944 time_base.num * (int64_t)AV_TIME_BASE,
H A Drl2.c276 av_rescale_q(timestamp, st->time_base, st2->time_base),
H A Dsapenc.c161 s->streams[i]->time_base = contexts[i]->streams[0]->time_base;
H A Dyuv4mpegenc.c42 av_reduce(&raten, &rated, st->time_base.den,
43 st->time_base.num, (1UL << 31) - 1);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/include/libavformat/
H A Davformat.h119 * Presentation timestamp in time_base units; the time at which the
129 * Decompression timestamp in time_base units; the time at which the
139 * Duration of this packet in time_base units, 0 if unknown.
245 AVRational time_base; member in struct:AVFormatParameters
360 * Gets the next timestamp in stream[stream_index].time_base units.
453 AVRational time_base; member in struct:AVStream
560 AVRational time_base; ///< time base in which the start/end timestamps are specified member in struct:AVChapter
561 int64_t start, end; ///< chapter start/end time in time_base units
922 * values in AVStream.time_base units (and guessed if the format cannot
936 * from AV_TIME_BASE units to the stream specific time_base
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Ddvdata.h50 AVRational time_base; /* 1/framerate */ member in struct:DVprofile
H A Ddirac.c152 av_reduce(&avctx->time_base.num, &avctx->time_base.den,
H A Deacmv.c131 s->avctx->time_base.num = 1;
132 s->avctx->time_base.den = AV_RL16(&buf[10]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dinternal.h193 * Rescale from sample rate to AVCodecContext.time_base.
201 avctx->time_base);
H A Dvdpau_mpeg4.c64 info->vop_time_increment_resolution = s->avctx->time_base.den;
H A Dwmv2enc.c36 put_bits(&pb, 5, s->avctx->time_base.den / s->avctx->time_base.num); //yes 29.97 -> 29
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dvf_blackframe.c102 picref->pts == AV_NOPTS_VALUE ? -1 : picref->pts * av_q2d(inlink->time_base));
H A Dvf_showinfo.c66 picref->pts, picref->pts * av_q2d(inlink->time_base), picref->pos,
H A Dvsrc_nullsrc.c99 outlink->time_base = tb;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dflacdec.c123 avpriv_new_chapter(s, track, st->time_base, start, AV_NOPTS_VALUE, isrc);
H A Davidec.c758 AVRational time_base; local
788 time_base = ast->sub_ctx->streams[0]->time_base;
789 avpriv_set_pts_info(st, 64, time_base.num, time_base.den);
808 next_ts = av_rescale_q(next_ast->frame_offset, next_st->time_base,
815 ts = av_rescale_q(ast->sub_pkt.dts, st->time_base, AV_TIME_BASE_Q);
1006 ts = av_rescale_q(ts, st->time_base, (AVRational){FFMAX(1, ast->sample_size), AV_TIME_BASE});
1008 // av_log(s, AV_LOG_DEBUG, "%"PRId64" %d/%d %"PRId64"\n", ts, st->time_base.num, st->time_base
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/doc/examples/
H A Ddemuxing_decoding.c87 av_ts2timestr(frame->pts, &video_dec_ctx->time_base));
116 av_ts2timestr(frame->pts, &audio_dec_ctx->time_base));

Completed in 141 milliseconds

1234567891011>>