Home
last modified time | relevance | path

Searched refs:kHistorySize (Results 1 – 25 of 96) sorted by relevance

1234

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/modules/video_coding/utility/
H A Ddecoded_frames_history_unittest.cc19 constexpr int kHistorySize = 1 << 13; variable
22 DecodedFramesHistory history(kHistorySize); in TEST()
27 DecodedFramesHistory history(kHistorySize); in TEST()
33 DecodedFramesHistory history(kHistorySize); in TEST()
40 DecodedFramesHistory history(kHistorySize); in TEST()
47 DecodedFramesHistory history(kHistorySize); in TEST()
56 DecodedFramesHistory history(kHistorySize); in TEST()
67 DecodedFramesHistory history(kHistorySize); in TEST()
78 DecodedFramesHistory history(kHistorySize); in TEST()
88 DecodedFramesHistory history(kHistorySize); in TEST()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/modules/video_coding/utility/
H A Ddecoded_frames_history_unittest.cc19 constexpr int kHistorySize = 1 << 13; variable
22 DecodedFramesHistory history(kHistorySize); in TEST()
27 DecodedFramesHistory history(kHistorySize); in TEST()
33 DecodedFramesHistory history(kHistorySize); in TEST()
40 DecodedFramesHistory history(kHistorySize); in TEST()
47 DecodedFramesHistory history(kHistorySize); in TEST()
56 DecodedFramesHistory history(kHistorySize); in TEST()
67 DecodedFramesHistory history(kHistorySize); in TEST()
78 DecodedFramesHistory history(kHistorySize); in TEST()
88 DecodedFramesHistory history(kHistorySize); in TEST()
[all …]
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/modules/video_coding/utility/
H A Ddecoded_frames_history_unittest.cc19 constexpr int kHistorySize = 1 << 13; variable
22 DecodedFramesHistory history(kHistorySize); in TEST()
27 DecodedFramesHistory history(kHistorySize); in TEST()
33 DecodedFramesHistory history(kHistorySize); in TEST()
40 DecodedFramesHistory history(kHistorySize); in TEST()
47 DecodedFramesHistory history(kHistorySize); in TEST()
56 DecodedFramesHistory history(kHistorySize); in TEST()
67 DecodedFramesHistory history(kHistorySize); in TEST()
78 DecodedFramesHistory history(kHistorySize); in TEST()
88 DecodedFramesHistory history(kHistorySize); in TEST()
[all …]
/dports/net-im/tg_owt/tg_owt-d578c76/src/modules/video_coding/utility/
H A Ddecoded_frames_history_unittest.cc19 constexpr int kHistorySize = 1 << 13; variable
22 DecodedFramesHistory history(kHistorySize); in TEST()
27 DecodedFramesHistory history(kHistorySize); in TEST()
33 DecodedFramesHistory history(kHistorySize); in TEST()
40 DecodedFramesHistory history(kHistorySize); in TEST()
47 DecodedFramesHistory history(kHistorySize); in TEST()
56 DecodedFramesHistory history(kHistorySize); in TEST()
66 DecodedFramesHistory history(kHistorySize); in TEST()
76 DecodedFramesHistory history(kHistorySize); in TEST()
85 DecodedFramesHistory history(kHistorySize); in TEST()
[all …]
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/analyzers/
H A Drainbowanalyzer.cpp97 static_cast<float>(available_rainbow_width_) / (kHistorySize - 1) + 1; in resizeEvent()
98 x_offset_ = px_per_frame_ * (kHistorySize - 1) - available_rainbow_width_; in resizeEvent()
110 float* band_start = history_ + band * kHistorySize; in analyze()
113 memmove(band_start, band_start + 1, (kHistorySize - 1) * sizeof(float)); in analyze()
131 QPointF polyline[kRainbowBands * kHistorySize]; in analyze()
144 for (int x = 0; x < kHistorySize; ++x) { in analyze()
163 buffer_painter.drawPolyline(&polyline[band * kHistorySize], in analyze()
164 kHistorySize); in analyze()
165 buffer_painter.drawPolyline(&polyline[band * kHistorySize], in analyze()
166 kHistorySize); in analyze()
[all …]
/dports/audio/strawberry/strawberry-1.0.0/src/analyzer/
H A Drainbowanalyzer.cpp106 px_per_frame_ = static_cast<float>(available_rainbow_width_) / (kHistorySize - 1) + 1;
107 x_offset_ = px_per_frame_ * (kHistorySize - 1) - available_rainbow_width_;
119 float *band_start = history_ + band * kHistorySize;
122 memmove(band_start, band_start + 1, (kHistorySize - 1) * sizeof(float));
136 history_[(band + 1) * kHistorySize - 1] = accumulator * band_scale_[band];
140 QPointF polyline[kRainbowBands * kHistorySize];
150 for (int x = 0; x < kHistorySize; ++x) {
169 buffer_painter.drawPolyline(&polyline[band * kHistorySize], kHistorySize);
170 buffer_painter.drawPolyline(&polyline[band * kHistorySize], kHistorySize);
186 buffer_painter.drawPolyline(&polyline[(band + 1) * kHistorySize - 3], 3);
/dports/audio/lenticular-lv2/lenticular_lv2-0.5.0-14-g14d8075/eurorack/marbles/ramp/
H A Dramp_extractor.cc78 fill(&history_[0], &history_[kHistorySize], p); in Reset()
94 for (size_t i = 0; i < kHistorySize; ++i) { in ComputeAveragePulseWidth()
102 return sum / static_cast<float>(kHistorySize); in ComputeAveragePulseWidth()
129 size_t t_2 = (current_pulse_ - 2 + kHistorySize) % kHistorySize; in PredictNextPeriod()
130 size_t t_1 = (current_pulse_ - 1 + kHistorySize) % kHistorySize; in PredictNextPeriod()
151 size_t t = current_pulse_ + 1 + kHistorySize - candidate_period; in PredictNextPeriod()
152 predicted_period_[i] = history_[t % kHistorySize].total_duration; in PredictNextPeriod()
251 current_pulse_ = (current_pulse_ + 1) % kHistorySize; in Process()
/dports/audio/lenticular-lv2/lenticular_lv2-0.5.0-14-g14d8075/parasites/yarns/
H A Djust_intonation_processor.h58 const size_t kHistorySize = 16; variable
68 for (uint8_t i = 0; i < kHistorySize; ++i) { in NoteOff()
83 for (size_t i = 0; i < kHistorySize; ++i) { in NoteOn()
92 if (write_ptr_ >= kHistorySize) { in NoteOn()
109 HistoryEntry history_[kHistorySize];
/dports/audio/lenticular-lv2/lenticular_lv2-0.5.0-14-g14d8075/eurorack/yarns/
H A Djust_intonation_processor.h58 const size_t kHistorySize = 16; variable
68 for (uint8_t i = 0; i < kHistorySize; ++i) { in NoteOff()
83 for (size_t i = 0; i < kHistorySize; ++i) { in NoteOn()
92 if (write_ptr_ >= kHistorySize) { in NoteOn()
109 HistoryEntry history_[kHistorySize];
/dports/audio/lenticular-lv2/lenticular_lv2-0.5.0-14-g14d8075/eurorack/stages/
H A Dramp_extractor.cc71 fill(&history_[0], &history_[kHistorySize], p); in Init()
85 for (size_t i = 0; i < kHistorySize; ++i) { in ComputeAveragePulseWidth()
93 return sum / static_cast<float>(kHistorySize); in ComputeAveragePulseWidth()
108 size_t t = current_pulse_ + 1 + kHistorySize - i; in PredictNextPeriod()
109 predicted_period_[i] = history_[t % kHistorySize].total_duration; in PredictNextPeriod()
172 current_pulse_ = (current_pulse_ + 1) % kHistorySize; in Process()
/dports/audio/kexis/kexis/
H A Dheader.c54 else if(kexisHead->kHistorySize < 1 || in parse_kexis_header()
55 kexisHead->kHistorySize > MAX_KHISTORY) { in parse_kexis_header()
57 kexisHead->kHistorySize); in parse_kexis_header()
76 options->kHistorySize = kexisHead->kHistorySize; in parse_kexis_header()
92 kexisHead->kHistorySize); in parse_kexis_header()
107 kexisHeader->kHistorySize = options->kHistorySize; in create_kexis_header()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/layers/apz/src/
H A DAndroidVelocityTracker.cpp32 static const uint8_t kHistorySize = 20; variable
58 if (mHistory.Length() > kHistorySize) { in AddPosition()
149 const uint32_t M_ARRAY_LENGTH = VelocityTracker::kHistorySize; in SolveLeastSquares()
228 float pos[kHistorySize]; in ComputeVelocity()
229 float w[kHistorySize]; in ComputeVelocity()
230 float time[kHistorySize]; in ComputeVelocity()
/dports/audio/lenticular-lv2/lenticular_lv2-0.5.0-14-g14d8075/eurorack/tides2/
H A Dramp_extractor.cc77 fill(&history_[0], &history_[kHistorySize], p); in Reset()
91 for (size_t i = 0; i < kHistorySize; ++i) { in ComputeAveragePulseWidth()
99 return sum / static_cast<float>(kHistorySize); in ComputeAveragePulseWidth()
115 size_t t = current_pulse_ + 1 + kHistorySize - i; in PredictNextPeriod()
116 predicted_period_[i] = history_[t % kHistorySize].total_duration; in PredictNextPeriod()
207 current_pulse_ = (current_pulse_ + 1) % kHistorySize; in ProcessInternal()
/dports/audio/lenticular-lv2/lenticular_lv2-0.5.0-14-g14d8075/parasites/stm_audio_bootloader/qpsk/
H A Ddemodulator.h47 const uint16_t kHistorySize = 256; variable
49 const uint16_t kHistoryMask = kHistorySize - 1;
137 int16_t q_history_[kHistorySize];
138 int16_t i_history_[kHistorySize];
/dports/www/firefox-esr/firefox-91.8.0/gfx/layers/apz/src/
H A DAndroidVelocityTracker.cpp33 static const uint8_t kHistorySize = 20; variable
59 if (mHistory.Length() > kHistorySize) { in AddPosition()
155 const uint32_t M_ARRAY_LENGTH = VelocityTracker::kHistorySize; in SolveLeastSquares()
234 float pos[kHistorySize]; in ComputeVelocity()
235 float w[kHistorySize]; in ComputeVelocity()
236 float time[kHistorySize]; in ComputeVelocity()
/dports/www/firefox/firefox-99.0/gfx/layers/apz/src/
H A DAndroidVelocityTracker.cpp33 static const uint8_t kHistorySize = 20; variable
59 if (mHistory.Length() > kHistorySize) { in AddPosition()
155 const uint32_t M_ARRAY_LENGTH = VelocityTracker::kHistorySize; in SolveLeastSquares()
234 float pos[kHistorySize]; in ComputeVelocity()
235 float w[kHistorySize]; in ComputeVelocity()
236 float time[kHistorySize]; in ComputeVelocity()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/layers/apz/src/
H A DAndroidVelocityTracker.cpp33 static const uint8_t kHistorySize = 20; variable
59 if (mHistory.Length() > kHistorySize) { in AddPosition()
155 const uint32_t M_ARRAY_LENGTH = VelocityTracker::kHistorySize; in SolveLeastSquares()
234 float pos[kHistorySize]; in ComputeVelocity()
235 float w[kHistorySize]; in ComputeVelocity()
236 float time[kHistorySize]; in ComputeVelocity()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator_unittest.cc25 enum { kHistorySize = kMaxDelay + kLookahead }; enumerator
66 uint32_t binary_spectrum_[kSequenceLength + kHistorySize];
86 for (int i = 1; i < (kSequenceLength + kHistorySize); i++) { in DelayEstimatorTest()
93 WebRtc_CreateDelayEstimatorFarend(kSpectrumSize, kHistorySize); in SetUp()
99 binary_farend_ = WebRtc_CreateBinaryDelayEstimatorFarend(kHistorySize); in SetUp()
233 handle = WebRtc_CreateDelayEstimatorFarend(33, kHistorySize); in TEST_F()
282 void* tmp_handle = WebRtc_CreateDelayEstimator(farend_handle_, kHistorySize); in TEST_F()
287 EXPECT_EQ(kHistorySize, WebRtc_set_history_size(handle_, kHistorySize)); in TEST_F()
603 EXPECT_EQ(kHistorySize, WebRtc_history_size(handle_)); in TEST_F()
607 EXPECT_EQ(kHistorySize, WebRtc_history_size(handle_)); in TEST_F()
/dports/net-im/tg_owt/tg_owt-d578c76/src/modules/audio_processing/utility/
H A Ddelay_estimator_unittest.cc25 enum { kHistorySize = kMaxDelay + kLookahead }; enumerator
66 uint32_t binary_spectrum_[kSequenceLength + kHistorySize];
86 for (int i = 1; i < (kSequenceLength + kHistorySize); i++) { in DelayEstimatorTest()
93 WebRtc_CreateDelayEstimatorFarend(kSpectrumSize, kHistorySize); in SetUp()
99 binary_farend_ = WebRtc_CreateBinaryDelayEstimatorFarend(kHistorySize); in SetUp()
233 handle = WebRtc_CreateDelayEstimatorFarend(33, kHistorySize); in TEST_F()
282 void* tmp_handle = WebRtc_CreateDelayEstimator(farend_handle_, kHistorySize); in TEST_F()
287 EXPECT_EQ(kHistorySize, WebRtc_set_history_size(handle_, kHistorySize)); in TEST_F()
603 EXPECT_EQ(kHistorySize, WebRtc_history_size(handle_)); in TEST_F()
607 EXPECT_EQ(kHistorySize, WebRtc_history_size(handle_)); in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator_unittest.cc25 enum { kHistorySize = kMaxDelay + kLookahead }; enumerator
66 uint32_t binary_spectrum_[kSequenceLength + kHistorySize];
86 for (int i = 1; i < (kSequenceLength + kHistorySize); i++) { in DelayEstimatorTest()
93 WebRtc_CreateDelayEstimatorFarend(kSpectrumSize, kHistorySize); in SetUp()
99 binary_farend_ = WebRtc_CreateBinaryDelayEstimatorFarend(kHistorySize); in SetUp()
233 handle = WebRtc_CreateDelayEstimatorFarend(33, kHistorySize); in TEST_F()
282 void* tmp_handle = WebRtc_CreateDelayEstimator(farend_handle_, kHistorySize); in TEST_F()
287 EXPECT_EQ(kHistorySize, WebRtc_set_history_size(handle_, kHistorySize)); in TEST_F()
603 EXPECT_EQ(kHistorySize, WebRtc_history_size(handle_)); in TEST_F()
607 EXPECT_EQ(kHistorySize, WebRtc_history_size(handle_)); in TEST_F()
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/modules/audio_processing/utility/
H A Ddelay_estimator_unittest.cc25 enum { kHistorySize = kMaxDelay + kLookahead }; enumerator
66 uint32_t binary_spectrum_[kSequenceLength + kHistorySize];
86 for (int i = 1; i < (kSequenceLength + kHistorySize); i++) { in DelayEstimatorTest()
93 WebRtc_CreateDelayEstimatorFarend(kSpectrumSize, kHistorySize); in SetUp()
99 binary_farend_ = WebRtc_CreateBinaryDelayEstimatorFarend(kHistorySize); in SetUp()
233 handle = WebRtc_CreateDelayEstimatorFarend(33, kHistorySize); in TEST_F()
282 void* tmp_handle = WebRtc_CreateDelayEstimator(farend_handle_, kHistorySize); in TEST_F()
287 EXPECT_EQ(kHistorySize, WebRtc_set_history_size(handle_, kHistorySize)); in TEST_F()
603 EXPECT_EQ(kHistorySize, WebRtc_history_size(handle_)); in TEST_F()
607 EXPECT_EQ(kHistorySize, WebRtc_history_size(handle_)); in TEST_F()
/dports/net/pjsip/pjproject-2.11.1/third_party/webrtc/src/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator_unittest.cc26 enum { kHistorySize = kMaxDelay + kLookahead }; enumerator
63 uint32_t binary_spectrum_[kSequenceLength + kHistorySize];
83 for (int i = 1; i < (kSequenceLength + kHistorySize); i++) { in DelayEstimatorTest()
90 kHistorySize); in SetUp()
96 binary_farend_ = WebRtc_CreateBinaryDelayEstimatorFarend(kHistorySize); in SetUp()
232 handle = WebRtc_CreateDelayEstimatorFarend(33, kHistorySize); in TEST_F()
281 void* tmp_handle = WebRtc_CreateDelayEstimator(farend_handle_, kHistorySize); in TEST_F()
286 EXPECT_EQ(kHistorySize, WebRtc_set_history_size(handle_, kHistorySize)); in TEST_F()
605 EXPECT_EQ(kHistorySize, WebRtc_history_size(handle_)); in TEST_F()
609 EXPECT_EQ(kHistorySize, WebRtc_history_size(handle_)); in TEST_F()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libwebrtc/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator_unittest.cc23 enum { kHistorySize = kMaxDelay + kLookahead }; enumerator
60 uint32_t binary_spectrum_[kSequenceLength + kHistorySize];
80 for (int i = 1; i < (kSequenceLength + kHistorySize); i++) { in DelayEstimatorTest()
87 kHistorySize); in SetUp()
93 binary_farend_ = WebRtc_CreateBinaryDelayEstimatorFarend(kHistorySize); in SetUp()
229 handle = WebRtc_CreateDelayEstimatorFarend(33, kHistorySize); in TEST_F()
278 void* tmp_handle = WebRtc_CreateDelayEstimator(farend_handle_, kHistorySize); in TEST_F()
283 EXPECT_EQ(kHistorySize, WebRtc_set_history_size(handle_, kHistorySize)); in TEST_F()
602 EXPECT_EQ(kHistorySize, WebRtc_history_size(handle_)); in TEST_F()
606 EXPECT_EQ(kHistorySize, WebRtc_history_size(handle_)); in TEST_F()
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator_unittest.cc23 enum { kHistorySize = kMaxDelay + kLookahead }; enumerator
60 uint32_t binary_spectrum_[kSequenceLength + kHistorySize];
80 for (int i = 1; i < (kSequenceLength + kHistorySize); i++) { in DelayEstimatorTest()
87 kHistorySize); in SetUp()
93 binary_farend_ = WebRtc_CreateBinaryDelayEstimatorFarend(kHistorySize); in SetUp()
229 handle = WebRtc_CreateDelayEstimatorFarend(33, kHistorySize); in TEST_F()
278 void* tmp_handle = WebRtc_CreateDelayEstimator(farend_handle_, kHistorySize); in TEST_F()
283 EXPECT_EQ(kHistorySize, WebRtc_set_history_size(handle_, kHistorySize)); in TEST_F()
602 EXPECT_EQ(kHistorySize, WebRtc_history_size(handle_)); in TEST_F()
606 EXPECT_EQ(kHistorySize, WebRtc_history_size(handle_)); in TEST_F()
/dports/www/firefox-legacy/firefox-52.8.0esr/media/webrtc/trunk/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator_unittest.cc26 enum { kHistorySize = kMaxDelay + kLookahead }; enumerator
63 uint32_t binary_spectrum_[kSequenceLength + kHistorySize];
83 for (int i = 1; i < (kSequenceLength + kHistorySize); i++) { in DelayEstimatorTest()
90 kHistorySize); in SetUp()
96 binary_farend_ = WebRtc_CreateBinaryDelayEstimatorFarend(kHistorySize); in SetUp()
232 handle = WebRtc_CreateDelayEstimatorFarend(33, kHistorySize); in TEST_F()
281 void* tmp_handle = WebRtc_CreateDelayEstimator(farend_handle_, kHistorySize); in TEST_F()
286 EXPECT_EQ(kHistorySize, WebRtc_set_history_size(handle_, kHistorySize)); in TEST_F()
605 EXPECT_EQ(kHistorySize, WebRtc_history_size(handle_)); in TEST_F()
609 EXPECT_EQ(kHistorySize, WebRtc_history_size(handle_)); in TEST_F()

1234