Searched refs:den (Results 276 - 300 of 407) sorted by relevance

<<11121314151617

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dlibdiracenc.c151 p_dirac_params->enc_ctx.src_params.frame_rate.numerator = avccontext->time_base.den;
H A Dlibschroedingerenc.c157 p_schro_params->format->frame_rate_numerator = avccontext->time_base.den;
H A Dcavs.c452 int den = h->scale_den[src->ref]; local
454 *d_x = (src->x*distp*den + 256 + (src->x>>31)) >> 9;
455 *d_y = (src->y*distp*den + 256 + (src->y>>31)) >> 9;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dvsrc_movie.c259 movie->picref->video->pixel_aspect.num, movie->picref->video->pixel_aspect.den);
H A Davfilter.c194 if (link->time_base.num == 0 && link->time_base.den == 0)
198 if (link->sample_aspect_ratio.num == 0 && link->sample_aspect_ratio.den == 0)
244 ref->video->pixel_aspect.num, ref->video->pixel_aspect.den,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dffmenc.c125 avio_wb32(pb, codec->time_base.den);
H A Dmxfenc.c590 avio_wb32(pb, mxf->time_base.den);
732 avio_wb32(pb, mxf->time_base.den);
768 avio_wb32(pb, mxf->time_base.den);
847 avio_wb32(pb, sc->aspect_ratio.den);
1067 avio_wb32(pb, mxf->time_base.den);
1358 av_reduce(&sc->aspect_ratio.num, &sc->aspect_ratio.den,
1445 avpriv_set_pts_info(st, 64, mxf->time_base.num, mxf->time_base.den);
1448 if (mxf->time_base.den == 25) sc->index = 3;
1451 if (mxf->time_base.den == 25) sc->index = 7;
1454 if (mxf->time_base.den
[all...]
H A Dmov.c631 const int den = avio_rb32(pb); local
638 if ((st->sample_aspect_ratio.den != 1 || st->sample_aspect_ratio.num) && // default
639 (den != st->sample_aspect_ratio.den || num != st->sample_aspect_ratio.num)) {
642 st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
643 num, den);
644 } else if (den != 0) {
646 st->sample_aspect_ratio.den = den;
1983 av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
[all...]
H A Dmovenc.c655 if (track->enc->time_base.den == 50) tag = MKTAG('d','v','h','q');
658 if (track->enc->time_base.den == 25) tag = MKTAG('d','v','h','5');
821 av_reduce(&sar.num, &sar.den, track->enc->sample_aspect_ratio.num,
822 track->enc->sample_aspect_ratio.den, INT_MAX);
827 avio_wb32(pb, sar.den);
894 if (track->enc->sample_aspect_ratio.den && track->enc->sample_aspect_ratio.num &&
895 track->enc->sample_aspect_ratio.den != track->enc->sample_aspect_ratio.num) {
1291 track->enc->sample_aspect_ratio.den);
1956 int FrameRate = ((VideoCodec->time_base.den) * (0x10000))/ (VideoCodec->time_base.num);
2266 track->timescale = st->codec->time_base.den;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dasfenc.c384 && enc->sample_aspect_ratio.den > 0)
428 && enc->sample_aspect_ratio.den > 0) {
445 avio_wl32(pb, sar.den);
H A Dmov.c699 const int den = avio_rb32(pb); local
706 if ((st->sample_aspect_ratio.den != 1 || st->sample_aspect_ratio.num) && // default
707 (den != st->sample_aspect_ratio.den || num != st->sample_aspect_ratio.num)) {
710 st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
711 num, den);
712 } else if (den != 0) {
714 st->sample_aspect_ratio.den = den;
1532 st->codec->time_base.den
[all...]
H A Dbintext.c65 avpriv_set_pts_info(st, 60, bin->framerate.den, bin->framerate.num);
H A Dmovenchint.c52 track->timescale = track->rtp_ctx->streams[0]->time_base.den;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dlibvpxenc.c155 width, "g_timebase:", cfg->g_timebase.num, cfg->g_timebase.den,
291 enccfg.g_timebase.den = avctx->time_base.den;
H A Dmpeg4videodec.c1721 s->avctx->sample_aspect_ratio.den = get_bits(gb, 8); // par_height
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");
1769 ctx->time_increment_bits = av_log2(s->avctx->time_base.den - 1) + 1;
2038 s->avctx->time_base.num, s->avctx->time_base.den,
2267 if (s->avctx->time_base.den && 4*s->avctx->time_base.den < 1<<ctx->time_increment_bits) {
2268 s->avctx->time_base.den = 1<<ctx->time_increment_bits;
2280 s->time = s->time_base * s->avctx->time_base.den
[all...]
H A Dcavs.c540 int den = h->scale_den[FFMAX(src->ref, 0)]; local
542 *d_x = (src->x * distp * den + 256 + (src->x >> 31)) >> 9;
543 *d_y = (src->y * distp * den + 256 + (src->y >> 31)) >> 9;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/kernel/
H A Dpalinfo.c730 proc.num, proc.den, bus.num, bus.den, itc.num, itc.den);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/aty/
H A Dradeon_base.c721 int nom, den; local
745 nom = den = 1;
752 den = 1;
761 den = 1;
772 den = 1;
781 den = 1;
809 if (((v.xres_virtual * v.yres_virtual * nom) / den) > rinfo->mapped_vram)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/
H A Dffmpeg.c355 sample_aspect_ratio.num, sample_aspect_ratio.den);
1239 // big_picture.pts= av_rescale(ost->sync_opts, AV_TIME_BASE*(int64_t)enc->time_base.num, enc->time_base.den);
1260 pkt.pts != AV_NOPTS_VALUE ? av_rescale(pkt.pts, enc->time_base.den, AV_TIME_BASE*(int64_t)enc->time_base.num) : -1,
1261 pkt.dts != AV_NOPTS_VALUE ? av_rescale(pkt.dts, enc->time_base.den, AV_TIME_BASE*(int64_t)enc->time_base.num) : -1);*/
1562 ist->st->codec->time_base.den;
1593 ist->st->codec->time_base.den;
1807 pkt.duration = av_rescale((int64_t)enc->frame_size*ost->st->time_base.den,
2115 av_reduce(&codec->time_base.num, &codec->time_base.den,
2116 codec->time_base.num, codec->time_base.den, INT_MAX);
2244 codec->time_base = (AVRational){ost->frame_rate.den, os
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/i915/
H A Dintel_dp.c600 intel_reduce_ratio(uint32_t *num, uint32_t *den) argument
602 while (*num > 0xffffff || *den > 0xffffff) {
604 *den >>= 1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavdevice/
H A Dlavfi.c278 avpriv_set_pts_info(st, 64, link->time_base.num, link->time_base.den);
H A Dvfwcap.c363 (framerate_q.den*1000000) / framerate_q.num;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvf_hue.c252 hue->var_values[VAR_R] = inlink->frame_rate.num == 0 || inlink->frame_rate.den == 0 ?
H A Dvsrc_cellauto.c202 cellauto->w, cellauto->h, cellauto->frame_rate.num, cellauto->frame_rate.den,
H A Dvsrc_mptestsrc.c265 test->frame_rate.num, test->frame_rate.den,

Completed in 339 milliseconds

<<11121314151617