Home
last modified time | relevance | path

Searched refs:fir (Results 1 – 25 of 38) sorted by relevance

12

/third_party/ffmpeg/libswresample/
Dnoise_shaping_data.c20 enum {fir, iir} type; enumerator
206 {44100, fir, 5, 210, lip44, SWR_DITHER_NS_LIPSHITZ},
207 {46000, fir, 9, 276, fwe44, SWR_DITHER_NS_F_WEIGHTED},
208 {46000, fir, 9, 160, mew44, SWR_DITHER_NS_MODIFIED_E_WEIGHTED},
209 {46000, fir, 9, 321, iew44, SWR_DITHER_NS_IMPROVED_E_WEIGHTED},
212 {48000, fir, 16, 301, shi48, SWR_DITHER_NS_SHIBATA},
213 {44100, fir, 20, 333, shi44, SWR_DITHER_NS_SHIBATA},
214 {37800, fir, 16, 240, shi38, SWR_DITHER_NS_SHIBATA},
215 {32000, fir, 20, 240/*TBD*/, shi32, SWR_DITHER_NS_SHIBATA},
216 {22050, fir, 20, 240/*TBD*/, shi22, SWR_DITHER_NS_SHIBATA},
[all …]
/third_party/flutter/skia/third_party/externals/freetype/src/base/
Dftlcdfil.c104 FT_UInt fir[5]; in ft_lcd_filter_fir() local
109 fir[2] = weights[2] * val; in ft_lcd_filter_fir()
110 fir[3] = weights[3] * val; in ft_lcd_filter_fir()
111 fir[4] = weights[4] * val; in ft_lcd_filter_fir()
114 fir[1] = fir[2] + weights[1] * val; in ft_lcd_filter_fir()
115 fir[2] = fir[3] + weights[2] * val; in ft_lcd_filter_fir()
116 fir[3] = fir[4] + weights[3] * val; in ft_lcd_filter_fir()
117 fir[4] = weights[4] * val; in ft_lcd_filter_fir()
122 fir[0] = fir[1] + weights[0] * val; in ft_lcd_filter_fir()
123 fir[1] = fir[2] + weights[1] * val; in ft_lcd_filter_fir()
[all …]
/third_party/skia/third_party/externals/freetype/src/base/
Dftlcdfil.c103 FT_UInt fir[5]; in ft_lcd_filter_fir() local
108 fir[2] = weights[2] * val; in ft_lcd_filter_fir()
109 fir[3] = weights[3] * val; in ft_lcd_filter_fir()
110 fir[4] = weights[4] * val; in ft_lcd_filter_fir()
113 fir[1] = fir[2] + weights[1] * val; in ft_lcd_filter_fir()
114 fir[2] = fir[3] + weights[2] * val; in ft_lcd_filter_fir()
115 fir[3] = fir[4] + weights[3] * val; in ft_lcd_filter_fir()
116 fir[4] = weights[4] * val; in ft_lcd_filter_fir()
121 fir[0] = fir[1] + weights[0] * val; in ft_lcd_filter_fir()
122 fir[1] = fir[2] + weights[1] * val; in ft_lcd_filter_fir()
[all …]
/third_party/freetype/src/base/
Dftlcdfil.c103 FT_UInt fir[5]; in ft_lcd_filter_fir() local
108 fir[2] = weights[2] * val; in ft_lcd_filter_fir()
109 fir[3] = weights[3] * val; in ft_lcd_filter_fir()
110 fir[4] = weights[4] * val; in ft_lcd_filter_fir()
113 fir[1] = fir[2] + weights[1] * val; in ft_lcd_filter_fir()
114 fir[2] = fir[3] + weights[2] * val; in ft_lcd_filter_fir()
115 fir[3] = fir[4] + weights[3] * val; in ft_lcd_filter_fir()
116 fir[4] = weights[4] * val; in ft_lcd_filter_fir()
121 fir[0] = fir[1] + weights[0] * val; in ft_lcd_filter_fir()
122 fir[1] = fir[2] + weights[1] * val; in ft_lcd_filter_fir()
[all …]
/third_party/gstreamer/gstplugins_bad/gst/audiovisualizers/
Dgstsynaescope.c234 gdouble frl, fil, frr, fir; in gst_synae_scope_render() local
262 fir = (gdouble) fdata_r[b].i; in gst_synae_scope_render()
264 ll = (frl + fil) * (frl + fil) + (frr - fir) * (frr - fir); in gst_synae_scope_render()
266 rr = (frl - fil) * (frl - fil) + (frr + fir) * (frr + fir); in gst_synae_scope_render()
270 ((frl + fil) * (frl - fil) + (frr + fir) * (frr - fir)) / in gst_synae_scope_render()
/third_party/ffmpeg/tests/checkasm/
Daf_afir.c85 AudioFIRDSPContext fir = { 0 }; in checkasm_check_afir() local
87 ff_afir_init(&fir); in checkasm_check_afir()
93 if (check_func(fir.fcmul_add, "fcmul_add")) in checkasm_check_afir()
/third_party/curl/tests/data/
Dtest24438 --ftp-method nocwd ftp://%HOSTIP:%FTPPORT/fir%23t/th%69rd/%TESTNUMBER/
50 LIST fir#t/third/%TESTNUMBER
/third_party/flutter/skia/src/core/
DSkScalerContext.cpp369 int fir[LCD_PER_PIXEL] = { 0 }; in pack4xHToLCD16() local
376 fir[subpxl_index] += coefficients[subpxl_index][coeff_index] * sample_value; in pack4xHToLCD16()
380 fir[subpxl_index] /= 0x100; in pack4xHToLCD16()
381 fir[subpxl_index] = SkMin32(fir[subpxl_index], 255); in pack4xHToLCD16()
386 r = fir[2]; in pack4xHToLCD16()
387 g = fir[1]; in pack4xHToLCD16()
388 b = fir[0]; in pack4xHToLCD16()
390 r = fir[0]; in pack4xHToLCD16()
391 g = fir[1]; in pack4xHToLCD16()
392 b = fir[2]; in pack4xHToLCD16()
/third_party/skia/src/core/
DSkScalerContext.cpp361 int fir[LCD_PER_PIXEL] = { 0 }; in pack4xHToMask() local
368 fir[subpxl_index] += coefficients[subpxl_index][coeff_index] * sample_value; in pack4xHToMask()
372 fir[subpxl_index] /= 0x100; in pack4xHToMask()
373 fir[subpxl_index] = std::min(fir[subpxl_index], 255); in pack4xHToMask()
378 r = fir[2]; in pack4xHToMask()
379 g = fir[1]; in pack4xHToMask()
380 b = fir[0]; in pack4xHToMask()
382 r = fir[0]; in pack4xHToMask()
383 g = fir[1]; in pack4xHToMask()
384 b = fir[2]; in pack4xHToMask()
/third_party/ffmpeg/libavcodec/
Dmlpdec.c793 FilterParams *fir = &cp->filter_params[FIR]; in read_channel_params() local
807 if (fir->order + iir->order > 8) { in read_channel_params()
812 if (fir->order && iir->order && in read_channel_params()
813 fir->shift != iir->shift) { in read_channel_params()
823 if (!fir->order && iir->order) in read_channel_params()
824 fir->shift = iir->shift; in read_channel_params()
936 FilterParams *fir = &s->channel_params[channel].filter_params[FIR]; in filter_channel() local
938 unsigned int filter_shift = fir->shift; in filter_channel()
941 memcpy(firbuf, fir->state, MAX_FIR_ORDER * sizeof(int32_t)); in filter_channel()
945 fir->order, iir->order, in filter_channel()
[all …]
Dg723_1enc.c129 static void highpass_filter(int16_t *buf, int16_t *fir, int *iir) in highpass_filter() argument
133 *iir = (buf[i] << 15) + ((-*fir) << 15) + MULL2(*iir, 0x7f00); in highpass_filter()
134 *fir = buf[i]; in highpass_filter()
668 int64_t fir = 0, iir = 0; in synth_percept_filter() local
670 fir -= perf_lpc[j - 1] * bptr_16[i - j]; in synth_percept_filter()
673 dest[i] = av_clipl_int32(((buf[i] + (fir << 3)) << scale) + (iir << 3) + in synth_percept_filter()
1174 int16_t zero[LPC_ORDER], fir[LPC_ORDER], iir[LPC_ORDER]; in g723_1_encode_frame() local
1191 memcpy(fir, p->perf_fir_mem, sizeof(int16_t) * LPC_ORDER); in g723_1_encode_frame()
1195 fir, iir, flt_in, vector + PITCH_MAX, 0); in g723_1_encode_frame()
/third_party/gstreamer/gstplugins_bad/ext/webrtc/
Dgstwebrtcstats.c212 guint ssrc, fir, pli, nack, jitter; in _get_stats_from_rtp_source_stats() local
246 if (gst_structure_get_uint (source_stats, "recv-fir-count", &fir)) in _get_stats_from_rtp_source_stats()
247 gst_structure_set (out, "fir-count", G_TYPE_UINT, fir, NULL); in _get_stats_from_rtp_source_stats()
398 if (gst_structure_get_uint (source_stats, "sent-fir-count", &fir)) in _get_stats_from_rtp_source_stats()
399 gst_structure_set (in, "fir-count", G_TYPE_UINT, fir, NULL); in _get_stats_from_rtp_source_stats()
/third_party/ffmpeg/libavfilter/
Daf_sofalizer.c52 float *fir; member
128 av_freep(&sofa->fir); in close_sofa()
171 s->sofa.fir = av_calloc(s->sofa.hrtf->N * s->sofa.hrtf->R, sizeof(*s->sofa.fir)); in preload_sofa()
172 if (!s->sofa.fir) in preload_sofa()
704 s->sofa.fir, delays); in getfilter_float()
Daf_aiir.c51 double fir; member
253 const double fir = iir->fir; \
290 dst[n] += fir * src[n]; \
875 iir->fir = y[0]; in convert_serial2parallel()
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_timer.c496 int audit_tf, num_mk, fir; local
505 fir = 0;
653 if (fir == 0) {
654 fir = 1;
/third_party/mindspore/mindspore/ccsrc/pipeline/pynative/
Dpynative_execute.cc2919 for (const auto &fir : first_graph_info->params) { in DoParameterReplace() local
2920 if (!fir.second->has_default()) { in DoParameterReplace()
2924 if (!params_weights_set.count(fir.first)) { in DoParameterReplace()
2925 SetParamNodeMapInGraphInfoMap(second_df_builder, fir.first, fir.second); in DoParameterReplace()
2926 inputs->emplace_back(fir.second); in DoParameterReplace()
2927 weights_args->emplace_back(fir.second->default_param()); in DoParameterReplace()
2931 MS_LOG(DEBUG) << "Param name " << fir.first << " ptr " << fir.second.get(); in DoParameterReplace()
2932 if (sec.second->has_default() && fir.second->name() == sec.second->name()) { in DoParameterReplace()
2933 manager->Replace(fir.second, sec.second); in DoParameterReplace()
/third_party/gstreamer/gstplugins_good/gst/rtpmanager/
Drtpsession.h433 gboolean fir,
Dgstrtpsession.c1824 gboolean fir; in gst_rtp_session_request_remote_key_unit() local
1827 fir = gst_structure_has_field (s, "rtcp-fb-ccm-fir") && all_headers; in gst_rtp_session_request_remote_key_unit()
1833 fir = TRUE; in gst_rtp_session_request_remote_key_unit()
1837 if (pli || fir) in gst_rtp_session_request_remote_key_unit()
1839 fir, count); in gst_rtp_session_request_remote_key_unit()
Drtpsession.c2726 guint32 media_ssrc, gboolean fir, GstClockTime current_time) in rtp_session_request_local_key_unit() argument
2745 fir ? "FIR" : "PLI", rtp_source_get_ssrc (src), in rtp_session_request_local_key_unit()
2754 GST_LOG ("received %s request from %X about %X %p(%p)", fir ? "FIR" : "PLI", in rtp_session_request_local_key_unit()
2759 sess->callbacks.request_key_unit (sess, media_ssrc, fir, in rtp_session_request_local_key_unit()
4790 gboolean fir, gint count) in rtp_session_request_key_unit() argument
4799 if (fir) { in rtp_session_request_key_unit()
/third_party/skia/third_party/externals/icu/source/data/curr/
Dlb.txt304 "Verrechnungseenheete fir Ecuador",
1433 one{"Verrechnungseenheet fir Ecuador"}
1434 other{"Verrechnungseenheete fir Ecuador"}
/third_party/flutter/skia/third_party/externals/icu/source/data/curr/
Dlb.txt303 "Verrechnungseenheete fir Ecuador",
1432 one{"Verrechnungseenheet fir Ecuador"}
1433 other{"Verrechnungseenheete fir Ecuador"}
/third_party/icu/icu4c/source/data/curr/
Dlb.txt304 "Verrechnungseenheete fir Ecuador",
1433 one{"Verrechnungseenheet fir Ecuador"}
1434 other{"Verrechnungseenheete fir Ecuador"}
/third_party/pcre2/pcre2/src/sljit/
DsljitNativeMIPS_common.c676 sljit_sw fir = 0; in sljit_has_cpu_feature() local
683 __asm__ ("cfc1 %0, $0" : "=r"(fir)); in sljit_has_cpu_feature()
684 return (fir >> 22) & 0x1; in sljit_has_cpu_feature()
699 return fir; in sljit_has_cpu_feature()
/third_party/gstreamer/gstplugins_bad/tests/check/elements/
Dwebrtcbin.c1397 guint ssrc, fir, pli, nack; in validate_inbound_rtp_stats() local
1407 fail_unless (gst_structure_get (s, "fir-count", G_TYPE_UINT, &fir, NULL)); in validate_inbound_rtp_stats()
1458 guint ssrc, fir, pli, nack; in validate_outbound_rtp_stats() local
1466 fail_unless (gst_structure_get (s, "fir-count", G_TYPE_UINT, &fir, NULL)); in validate_outbound_rtp_stats()
/third_party/weex-loader/deps/weex-styler/lib/
Dvalidator.js3248 var fir = outputStack.pop()
3249 res = getResult(fir, sec, cur)

12