Searched refs:av_gcd (Results 1 - 25 of 29) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/include/libavutil/
H A Dmathematics.h53 int64_t av_const av_gcd(int64_t a, int64_t b);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dmathematics.h84 int64_t av_const av_gcd(int64_t a, int64_t b);
H A Drational.c40 int64_t gcd = av_gcd(FFABS(num), FFABS(den));
71 av_assert2(av_gcd(a1.num, a1.den) <= 1U);
177 if (av_gcd(a.num, a.den) > 1)
182 if (av_gcd(b.num, b.den) > 1)
H A Dmathematics.c55 int64_t av_gcd(int64_t a, int64_t b) function
58 return av_gcd(b, a % b);
H A Deval.c279 case e_gcd: return e->value * av_gcd(d,d2);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Dmathematics.h79 int64_t av_const av_gcd(int64_t a, int64_t b);
H A Dmathematics.c72 int64_t av_gcd(int64_t a, int64_t b){ function
73 if(b) return av_gcd(b, a%b);
H A Drational.c41 int64_t gcd = av_gcd(FFABS(num), FFABS(den));
72 av_assert2(av_gcd(a1.num, a1.den) <= 1U);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dvf_aspect.c51 gcd = av_gcd(FFABS(aspect->aspect.num), FFABS(aspect->aspect.den));
H A Dvf_overlay.c188 av_gcd((int64_t)tb1.num * tb2.den,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Driffenc.c122 blkalign = bps * enc->channels / av_gcd(8, bps);
269 gcd = av_gcd(*au_scale, *au_rate);
H A Drtpenc.c345 int aligned_samples_size = sample_size_bits/av_gcd(sample_size_bits, 8);
H A Dnutdec.c258 if (av_gcd(nut->time_base[i].num, nut->time_base[i].den) != 1) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dframesync.c81 gcd = av_gcd(fs->time_base.den, fs->in[i].time_base.den);
85 fs->time_base.num = av_gcd(fs->time_base.num,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dlibxvidff.c602 gcd = av_gcd(frate, fbase);
624 gcd = av_gcd(est_frate, est_fbase);
H A Dituh263dec.c1045 gcd= av_gcd(s->avctx->time_base.den, s->avctx->time_base.num);
H A Dutils.c1477 int g= av_gcd(enc->time_base.num, enc->time_base.den);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Driff.c432 blkalign = bps * enc->channels / av_gcd(8, bps);
635 gcd= av_gcd(*au_scale, *au_rate);
H A Drtpenc.c257 int aligned_samples_size = sample_size_bits/av_gcd(sample_size_bits, 8);
H A Dnutdec.c213 if(av_gcd(nut->time_base[i].num, nut->time_base[i].den) != 1){
H A Dutils.c2466 st->info->duration_gcd = av_gcd(st->info->duration_gcd, duration);
3381 int g = av_gcd(st->time_base.num, st->time_base.den);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dlibxvid.c316 gcd = av_gcd(frate, fbase);
338 gcd = av_gcd(est_frate, est_fbase);
H A Dituh263dec.c1031 gcd= av_gcd(s->avctx->time_base.den, s->avctx->time_base.num);
H A Dmpeg12enc.c122 if (av_gcd(ext.den, ext.num) != 1)
H A Dutils.c2967 int g = av_gcd(enc->time_base.num, enc->time_base.den);
2992 int g = av_gcd(enc->time_base.num, enc->time_base.den);

Completed in 197 milliseconds

12