Searched refs:time_base (Results 226 - 250 of 417) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dmxfenc.c279 AVRational time_base; member in struct:MXFContext
701 avio_wb32(pb, mxf->time_base.den);
702 avio_wb32(pb, mxf->time_base.num);
843 avio_wb32(pb, mxf->time_base.den);
844 avio_wb32(pb, mxf->time_base.num);
879 avio_wb32(pb, mxf->time_base.den);
880 avio_wb32(pb, mxf->time_base.num);
1204 avio_wb32(pb, mxf->time_base.den);
1205 avio_wb32(pb, mxf->time_base.num);
1710 AVRational rate, tbc = st->time_base;
[all...]
H A Doggenc.c160 st2->time_base, AV_TIME_BASE_Q);
162 st ->time_base, AV_TIME_BASE_Q);
255 int64_t start = av_rescale_q(page->start_granule, st->time_base,
257 int64_t next = av_rescale_q(page->granule, st->time_base,
577 granule = pkt->pts + pkt->duration + av_rescale_q(st->codec->delay, (AVRational){ 1, st->codec->sample_rate }, st->time_base);
H A Drmenc.c340 stream->frame_rate = (float)st->time_base.den / (float)st->time_base.num;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dmxfenc.c176 AVRational time_base; member in struct:MXFContext
590 avio_wb32(pb, mxf->time_base.den);
591 avio_wb32(pb, mxf->time_base.num);
732 avio_wb32(pb, mxf->time_base.den);
733 avio_wb32(pb, mxf->time_base.num);
768 avio_wb32(pb, mxf->time_base.den);
769 avio_wb32(pb, mxf->time_base.num);
1067 avio_wb32(pb, mxf->time_base.den);
1068 avio_wb32(pb, mxf->time_base.num);
1433 if (fabs(av_q2d(st->codec->time_base)
[all...]
H A Davformat.h350 attribute_deprecated AVRational time_base; member in struct:AVFormatParameters
518 * Get the next timestamp in stream[stream_index].time_base units.
651 AVRational time_base; member in struct:AVStream
848 AVRational time_base; ///< time base in which the start/end timestamps are specified member in struct:AVChapter
849 int64_t start, end; ///< chapter start/end time in time_base units
1498 * values in AVStream.time_base units (and guessed if the format cannot
1512 * from AV_TIME_BASE units to the stream specific time_base.
1513 * @param timestamp Timestamp in AVStream.time_base units
1668 * @note: this sets stream time-bases, if possible to stream->codec->time_base
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dmpeg4videodec.c1682 s->time_base = seconds + 60*(minutes + 60*hours);
1762 s->avctx->time_base.den = get_bits(gb, 16);
1763 if (!s->avctx->time_base.den) {
1764 av_log(s->avctx, AV_LOG_ERROR, "time_base.den==0\n");
1765 s->avctx->time_base.num = 0;
1769 ctx->time_increment_bits = av_log2(s->avctx->time_base.den - 1) + 1;
1776 s->avctx->time_base.num = get_bits(gb, ctx->time_increment_bits);
1778 s->avctx->time_base.num = 1;
2038 s->avctx->time_base.num, s->avctx->time_base
[all...]
H A Dmpeg4videoenc.c906 s->last_time_base = s->time_base;
907 s->time_base = FFUDIV(s->time, s->avctx->time_base.den);
922 time = time * s->avctx->time_base.num;
923 s->last_time_base = FFUDIV(time, s->avctx->time_base.den);
925 seconds = FFUDIV(time, s->avctx->time_base.den);
1039 put_bits(&s->pb, 16, s->avctx->time_base.den);
1111 time_div = FFUDIV(s->time, s->avctx->time_base.den);
1112 time_mod = FFUMOD(s->time, s->avctx->time_base.den);
H A Ddvdec.c373 avctx->time_base = s->sys->time_base;
H A Deamad.c263 av_reduce(&avctx->time_base.num, &avctx->time_base.den,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dmpeg4videoenc.c848 s->last_time_base= s->time_base;
849 s->time_base= s->time/s->avctx->time_base.den;
863 time= time*s->avctx->time_base.num;
865 seconds= time/s->avctx->time_base.den;
878 s->last_time_base= time / s->avctx->time_base.den;
977 put_bits(&s->pb, 16, s->avctx->time_base.den);
1053 time_div= s->time/s->avctx->time_base.den;
1054 time_mod= s->time%s->avctx->time_base.den;
H A Dmpeg12enc.c114 int64_t n0= 1001LL/avpriv_frame_rate_tab[i].den*avpriv_frame_rate_tab[i].num*s->avctx->time_base.num;
115 int64_t n1= 1001LL*s->avctx->time_base.den;
146 av_log(avctx, AV_LOG_ERROR, "MPEG1/2 does not support %d/%d fps\n", avctx->time_base.den, avctx->time_base.num);
149 av_log(avctx, AV_LOG_INFO, "MPEG1/2 does not support %d/%d fps, there may be AV sync issues\n", avctx->time_base.den, avctx->time_base.num);
H A Deamad.c255 av_reduce(&avctx->time_base.num, &avctx->time_base.den,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavdevice/
H A Ddshow.c756 AVRational time_base; local
760 time_base = (AVRational) { v->AvgTimePerFrame, 10000000 };
764 time_base = (AVRational) { v->AvgTimePerFrame, 10000000 };
772 codec->time_base = time_base;
H A Dlibdc1394.c171 vst->codec->time_base.den = framerate.num;
172 vst->codec->time_base.num = framerate.den;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Daf_amix.c228 outlink->time_base = (AVRational){ 1, outlink->sample_rate };
471 int64_t pts = av_rescale_q(buf->pts, inlink->time_base,
472 outlink->time_base);
H A Daf_volume.c302 vol->var_values[VAR_TB] = av_q2d(inlink->time_base);
384 vol->var_values[VAR_STARTT ] = TS2T(buf->pts, inlink->time_base);
387 vol->var_values[VAR_T ] = TS2T(buf->pts, inlink->time_base);
H A Dvf_blend.c245 values[VAR_T] = td->dst->pts == AV_NOPTS_VALUE ? NAN : td->dst->pts * av_q2d(td->inlink->time_base);
395 outlink->time_base = toplink->time_base;
H A Dvf_decimate.c374 outlink->time_base = inlink->time_base;
379 dm->ts_unit = av_q2d(av_inv_q(av_mul_q(fps, outlink->time_base)));
H A Daeval.c227 outlink->time_base = (AVRational){1, eval->sample_rate};
413 t0 = TS2T(in->pts, inlink->time_base);
H A Daf_aecho.c287 s->next_pts = frame->pts + av_rescale_q(frame->nb_samples, (AVRational){1, inlink->sample_rate}, inlink->time_base);
322 s->next_pts += av_rescale_q(nb_samples, (AVRational){1, outlink->sample_rate}, outlink->time_base);
H A Dvf_hue.c251 hue->var_values[VAR_TB] = av_q2d(inlink->time_base);
322 hue->var_values[VAR_T] = TS2T(inpic->pts, inlink->time_base);
H A Dvf_psnr.c314 outlink->time_base = mainlink->time_base;
H A Dvf_vignette.c161 s->var_values[VAR_T] = TS2T(frame->pts, inlink->time_base);
289 s->var_values[VAR_TB] = av_q2d(inlink->time_base);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/forked-daapd-0.19/src/
H A Dtranscode.c267 target_pts = av_rescale_q(target_pts, AV_TIME_BASE_Q, ctx->fmtctx->streams[ctx->astream]->time_base);
332 got_pts = av_rescale_q(got_pts, ctx->fmtctx->streams[ctx->astream]->time_base, AV_TIME_BASE_Q);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/
H A Dffprobe.c631 int64_t ts, const AVRational *time_base, int is_duration)
638 double d = ts * av_q2d(*time_base);
1678 print_time("pts_time", pkt->pts, &st->time_base);
1680 print_time("dts_time", pkt->dts, &st->time_base);
1682 print_duration_time("duration_time", pkt->duration, &st->time_base);
1684 print_duration_time("convergence_duration_time", pkt->convergence_duration, &st->time_base);
1735 print_time("pkt_pts_time", frame->pkt_pts, &stream->time_base);
1737 print_time("pkt_dts_time", frame->pkt_dts, &stream->time_base);
1739 print_time("best_effort_timestamp_time", av_frame_get_best_effort_timestamp(frame), &stream->time_base);
1741 print_duration_time("pkt_duration_time", av_frame_get_pkt_duration(frame), &stream->time_base);
630 writer_print_time(WriterContext *wctx, const char *key, int64_t ts, const AVRational *time_base, int is_duration) argument
[all...]

Completed in 373 milliseconds

1234567891011>>