Searched refs:cutoff (Results 1 - 25 of 66) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dadx.h48 int cutoff; member in struct:__anon1856
58 * Calculate LPC coefficients based on cutoff frequency and sample rate.
60 * @param cutoff cutoff frequency
65 void ff_adx_calculate_coeffs(int cutoff, int sample_rate, int bits, int *coeff);
H A Dadx.c25 void ff_adx_calculate_coeffs(int cutoff, int sample_rate, int bits, int *coeff) argument
29 a = M_SQRT2 - cos(2.0 * M_PI * cutoff / sample_rate);
40 int offset, cutoff; local
75 cutoff = AV_RB16(buf + 16);
76 ff_adx_calculate_coeffs(cutoff, avctx->sample_rate, COEFF_BITS, coeff);
H A Dadxenc.c101 bytestream_put_be16(&buf, c->cutoff); /* cutoff frequency */
124 /* the cutoff can be adjusted, but this seems to work pretty well */
125 c->cutoff = 500;
126 ff_adx_calculate_coeffs(c->cutoff, avctx->sample_rate, COEFF_BITS, c->coeff);
H A Dpsymodel.c100 if (avctx->cutoff > 0)
101 cutoff_coeff = 2.0 * avctx->cutoff / avctx->sample_rate;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/clib/
H A Dstrtol.c59 unsigned long cutoff; local
92 * Compute the cutoff value between legal numbers and illegal
100 * cutoff will be set to 214748364 and cutlim to either
108 cutoff = neg ? (unsigned long)-(LONG_MIN + LONG_MAX) + LONG_MAX
110 cutlim = cutoff % base;
111 cutoff /= base;
123 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoul.c59 unsigned long cutoff; local
89 cutoff = ULONG_MAX / base;
102 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dadx.c26 void ff_adx_calculate_coeffs(int cutoff, int sample_rate, int bits, int *coeff) argument
30 a = M_SQRT2 - cos(2.0 * M_PI * cutoff / sample_rate);
41 int offset, cutoff; local
76 cutoff = AV_RB16(buf + 16);
77 ff_adx_calculate_coeffs(cutoff, avctx->sample_rate, COEFF_BITS, coeff);
H A Dadx.h47 int cutoff; member in struct:ADXContext
57 * Calculate LPC coefficients based on cutoff frequency and sample rate.
59 * @param cutoff cutoff frequency
64 void ff_adx_calculate_coeffs(int cutoff, int sample_rate, int bits, int *coeff);
H A Dadxenc.c99 bytestream_put_be16(&buf, c->cutoff); /* cutoff frequency */
120 /* the cutoff can be adjusted, but this seems to work pretty well */
121 c->cutoff = 500;
122 ff_adx_calculate_coeffs(c->cutoff, avctx->sample_rate, COEFF_BITS, c->coeff);
H A Dpsymodel.c104 if (avctx->cutoff > 0)
105 cutoff_coeff = 2.0 * avctx->cutoff / avctx->sample_rate;
H A Dlibfdk-aacenc.c262 if (avctx->cutoff > 0) {
263 if (avctx->cutoff < (avctx->sample_rate + 255) >> 8 || avctx->cutoff > 20000) {
264 av_log(avctx, AV_LOG_ERROR, "cutoff valid range is %d-20000\n",
269 avctx->cutoff)) != AACENC_OK) {
271 avctx->cutoff, aac_get_error(err));
H A Dlibopusenc.c148 if (avctx->cutoff) {
227 if (avctx->cutoff) {
228 switch (avctx->cutoff) {
246 "Invalid frequency cutoff: %d. Using default maximum bandwidth.\n"
248 avctx->cutoff);
249 avctx->cutoff = 0;
H A Dlibaacplus.c65 aacplus_cfg->bandWidth = avctx->cutoff;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/tools/
H A Dstrtoll.c70 unsigned long long cutoff; local
106 * Compute the cutoff value between legal numbers and illegal
114 * is 10, cutoff will be set to 922337203685477580 and cutlim to
123 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX
125 cutlim = cutoff % base;
126 cutoff /= base;
138 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoull.c71 unsigned long long cutoff; local
104 cutoff = ULLONG_MAX / base;
117 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
H A Dhistory.c36 const time_t cutoff = (now?now:tr_time()) - sec; local
41 if( h->slices[i].date <= cutoff )
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswresample/
H A Dsoxr_resample.c33 double cutoff, enum AVSampleFormat format, enum SwrFilterType filter_type, int kaiser_beta, double precision, int cheby){
51 q_spec.bw_pc = cutoff? FFMAX(FFMIN(cutoff,.995),.8)*100 : q_spec.bw_pc;
53 q_spec.passband_end = cutoff? FFMAX(FFMIN(cutoff,.995),.8) : q_spec.passband_end;
32 create(struct ResampleContext *c, int out_rate, int in_rate, int filter_size, int phase_shift, int linear, double cutoff, enum AVSampleFormat format, enum SwrFilterType filter_type, int kaiser_beta, double precision, int cheby) argument
H A Doptions.c88 {"cutoff" , "set cutoff frequency ratio" , OFFSET(cutoff) , AV_OPT_TYPE_DOUBLE,{.dbl=0. }, 0 , 1 , PARAM },
91 {"resample_cutoff" , "set cutoff frequency ratio" , OFFSET(cutoff) , AV_OPT_TYPE_DOUBLE,{.dbl=0. }, 0 , 1 , PARAM },
H A Dswresample_internal.h93 int filter_size; /**< length of each FIR filter in the resampling filterbank relative to the cutoff frequency */
96 double cutoff; /**< resampling cutoff frequency (swr: 6dB point; soxr: 0dB point). 1.0 corresponds to half the output sample rate */ member in struct:SwrContext
154 double cutoff, enum AVSampleFormat format, enum SwrFilterType filter_type, int kaiser_beta, double precision, int cheby);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavresample/
H A Dinternal.h69 int filter_size; /**< length of each FIR filter in the resampling filterbank relative to the cutoff frequency */
72 double cutoff; /**< resampling cutoff frequency. 1.0 corresponds to half the output sample rate */ member in struct:AVAudioResampleContext
H A Doptions.c68 { "cutoff", "Cutoff Frequency Ratio", OFFSET(cutoff), AV_OPT_TYPE_DOUBLE, { .dbl = 0.8 }, 0.0, 1.0, PARAM },
70 { "resample_cutoff", "Cutoff Frequency Ratio", OFFSET(cutoff), AV_OPT_TYPE_DOUBLE, { .dbl = 0.8 }, 0.0, 1.0, PARAM },
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dstrtol.c244 register unsigned LONG int cutoff; local
347 cutoff = STRTOL_ULONG_MAX / (unsigned LONG int) base;
365 if (i > cutoff || (i == cutoff && c > cutlim))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dstrtol.c244 register unsigned LONG int cutoff; local
347 cutoff = STRTOL_ULONG_MAX / (unsigned LONG int) base;
365 if (i > cutoff || (i == cutoff && c > cutlim))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/sound/
H A Dsfnt_info.h102 unsigned short pefe; /* modulation pitch & cutoff (0x0000) */
103 unsigned short fmmod; /* LFO1 pitch & cutoff (0x0000) */
106 unsigned char cutoff; /* initial cutoff (0xff) */ member in struct:soundfont_voice_parm
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/x509v3/
H A Dv3_ocsp.c193 static int i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *cutoff, argument
198 if (!ASN1_GENERALIZEDTIME_print(bp, cutoff))

Completed in 321 milliseconds

123