Home
last modified time | relevance | path

Searched refs:tns (Results 1 – 16 of 16) sorted by relevance

/third_party/ffmpeg/libavcodec/
Daacenc_tns.c72 TemporalNoiseShaping *tns = &sce->tns; in ff_aac_encode_tns_info() local
77 if (!sce->tns.present) in ff_aac_encode_tns_info()
81 put_bits(&s->pb, 2 - is8, sce->tns.n_filt[i]); in ff_aac_encode_tns_info()
82 if (!tns->n_filt[i]) in ff_aac_encode_tns_info()
85 for (filt = 0; filt < tns->n_filt[i]; filt++) { in ff_aac_encode_tns_info()
86 put_bits(&s->pb, 6 - 2 * is8, tns->length[i][filt]); in ff_aac_encode_tns_info()
87 put_bits(&s->pb, 5 - 2 * is8, tns->order[i][filt]); in ff_aac_encode_tns_info()
88 if (!tns->order[i][filt]) in ff_aac_encode_tns_info()
90 put_bits(&s->pb, 1, tns->direction[i][filt]); in ff_aac_encode_tns_info()
91 coef_compress = compress_coeffs(tns->coef_idx[i][filt], in ff_aac_encode_tns_info()
[all …]
Daacdec_template.c1685 static int decode_tns(AACContext *ac, TemporalNoiseShaping *tns, in decode_tns() argument
1692 if ((tns->n_filt[w] = get_bits(gb, 2 - is8))) { in decode_tns()
1695 for (filt = 0; filt < tns->n_filt[w]; filt++) { in decode_tns()
1697 tns->length[w][filt] = get_bits(gb, 6 - 2 * is8); in decode_tns()
1699 if ((tns->order[w][filt] = get_bits(gb, 5 - 2 * is8)) > tns_max_order) { in decode_tns()
1702 tns->order[w][filt], tns_max_order); in decode_tns()
1703 tns->order[w][filt] = 0; in decode_tns()
1706 if (tns->order[w][filt]) { in decode_tns()
1707 tns->direction[w][filt] = get_bits1(gb); in decode_tns()
1712 for (i = 0; i < tns->order[w][filt]; i++) in decode_tns()
[all …]
Daac.h251 TemporalNoiseShaping tns; member
366 void (*apply_tns)(INTFLOAT coef[1024], TemporalNoiseShaping *tns,
Daacenc.c500 put_bits(&s->pb, 1, !!sce->tns.present); in encode_individual_channel()
708 memset(&sce->tns, 0, sizeof(TemporalNoiseShaping)); in aac_encode_frame()
744 if (s->options.tns && s->coder->search_for_tns) in aac_encode_frame()
746 if (s->options.tns && s->coder->apply_tns_filt) in aac_encode_frame()
748 if (sce->tns.present) in aac_encode_frame()
1114 …{"aac_tns", "Temporal noise shaping", offsetof(AACEncContext, options.tns), AV_OPT_TYPE_BOOL, {.i6…
Daacenc.h48 int tns; member
/third_party/libxml2/test/schemas/
Dbug310264_0.xsd1 <xs:schema xmlns:tns="http://myns"
11 <xs:element ref="tns:a" />
16 <xs:element name="c" type="tns:c" />
/third_party/ffmpeg/tests/fate/
Daac.mak188 FATE_AAC_ENCODE += fate-aac-tns-encode
189 fate-aac-tns-encode: CMD = enc_dec_pcm adts wav s16le $(TARGET_SAMPLES)/audio-reference/luckynight_…
190 fate-aac-tns-encode: CMP = stddev
191 fate-aac-tns-encode: REF = $(SAMPLES)/audio-reference/luckynight_2ch_44kHz_s16.wav
192 fate-aac-tns-encode: CMP_SHIFT = -4096
193 fate-aac-tns-encode: CMP_TARGET = 637
194 fate-aac-tns-encode: FUZZ = 7
195 fate-aac-tns-encode: SIZE_TOLERANCE = 3560
/third_party/gstreamer/gstplugins_bad/ext/faac/
Dgstfaac.h63 gboolean tns, member
Dgstfaac.c499 conf->useTns = faac->tns; in gst_faac_open_encoder()
731 faac->tns = g_value_get_boolean (value); in gst_faac_set_property()
766 g_value_set_boolean (value, faac->tns); in gst_faac_get_property()
/third_party/ffmpeg/libavcodec/mips/
Daacdec_mips.c276 if (sce->tns.present) in apply_ltp_mips()
277 ac->apply_tns(predFreq, &sce->tns, &sce->ics, 0); in apply_ltp_mips()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DLocaleMatcherTest.java785 long tns = timeLocaleMatcher(desired, matcherShort, BENCHMARK_ITERATIONS); in testPerf() local
786 System.out.format("New Duration (few supported):\t%s\t%d\tnanos\n", desired, tns); in testPerf()
/third_party/ffmpeg/fftools/
Dffplay.c3435 int tns, thh, tmm, tss; in event_loop() local
3436 tns = cur_stream->ic->duration / 1000000LL; in event_loop()
3437 thh = tns / 3600; in event_loop()
3438 tmm = (tns % 3600) / 60; in event_loop()
3439 tss = (tns % 60); in event_loop()
3441 ns = frac * tns; in event_loop()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DLocaleMatcherTest.java827 long tns = timeLocaleMatcher(desired, matcherShort, BENCHMARK_ITERATIONS); in testPerf() local
828 System.out.format("New Duration (few supported):\t%s\t%d\tnanos\n", desired, tns); in testPerf()
/third_party/gettext/gnulib-local/lib/libxml/
Dxmlschemas.c4422 const xmlChar *name, *tns; in xmlSchemaAttrUsesDump() local
4436 tns = prohib->targetNamespace; in xmlSchemaAttrUsesDump()
4441 tns = ref->targetNamespace; in xmlSchemaAttrUsesDump()
4445 tns = WXS_ATTRUSE_DECL_TNS(use); in xmlSchemaAttrUsesDump()
4448 (const char *) xmlSchemaFormatQName(&str, tns, name)); in xmlSchemaAttrUsesDump()
/third_party/libxml2/
Dxmlschemas.c4438 const xmlChar *name, *tns; in xmlSchemaAttrUsesDump() local
4452 tns = prohib->targetNamespace; in xmlSchemaAttrUsesDump()
4457 tns = ref->targetNamespace; in xmlSchemaAttrUsesDump()
4461 tns = WXS_ATTRUSE_DECL_TNS(use); in xmlSchemaAttrUsesDump()
4464 (const char *) xmlSchemaFormatQName(&str, tns, name)); in xmlSchemaAttrUsesDump()
/third_party/chromium/patch/
D0001-cve.patch54131 z;GQw)78cAmJ#~=j^)_#9<S*^$G|tns!swXsXiqIjoE}F>O(;C~{{H@Z9}cFQ5}ciF