OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DelayPeakDetector
(Results
1 - 12
of
12
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/neteq/
delay_peak_detector.h
22
class
DelayPeakDetector
{
24
DelayPeakDetector
();
25
virtual ~
DelayPeakDetector
();
28
// Notifies the
DelayPeakDetector
of how much audio data is carried in each
44
// Updates the
DelayPeakDetector
with a new inter-arrival time (in packets)
72
RTC_DISALLOW_COPY_AND_ASSIGN(
DelayPeakDetector
);
delay_peak_detector.cc
17
// The
DelayPeakDetector
keeps track of severe inter-arrival times, called
21
// peak-mode is engaged and the DelayManager asks the
DelayPeakDetector
for
24
DelayPeakDetector
::~
DelayPeakDetector
() = default;
26
DelayPeakDetector
::
DelayPeakDetector
()
32
void
DelayPeakDetector
::Reset() {
39
void
DelayPeakDetector
::SetPacketAudioLength(int length_ms) {
45
bool
DelayPeakDetector
::peak_found() {
49
int
DelayPeakDetector
::MaxPeakHeight() const
[
all
...]
delay_peak_detector_unittest.cc
11
// Unit tests for
DelayPeakDetector
class.
19
TEST(
DelayPeakDetector
, CreateAndDestroy) {
20
DelayPeakDetector
* detector = new
DelayPeakDetector
();
25
TEST(
DelayPeakDetector
, EmptyHistory) {
26
DelayPeakDetector
detector;
34
TEST(
DelayPeakDetector
, TriggerPeakMode) {
35
DelayPeakDetector
detector;
85
TEST(
DelayPeakDetector
, DoNotTriggerPeakMode) {
86
DelayPeakDetector
detector
[
all
...]
delay_manager.h
25
class
DelayPeakDetector
;
35
DelayManager(size_t max_packets_in_buffer,
DelayPeakDetector
* peak_detector);
45
// associated
DelayPeakDetector
. A new target buffer level is calculated.
58
// The method updates the
DelayPeakDetector
too, and resets the inter-arrival
62
// Resets the DelayManager and the associated
DelayPeakDetector
.
75
//
DelayPeakDetector
object.
78
// Notifies the counters in DelayManager and
DelayPeakDetector
that
157
DelayPeakDetector
& peak_detector_;
neteq.cc
49
DelayPeakDetector
* delay_peak_detector = new
DelayPeakDetector
;
decision_logic_unittest.cc
28
DelayPeakDetector
delay_peak_detector;
neteq_impl.h
39
class
DelayPeakDetector
;
66
DelayPeakDetector
* delay_peak_detector,
347
const rtc::scoped_ptr<
DelayPeakDetector
> delay_peak_detector_
delay_manager.cc
26
DelayPeakDetector
* peak_detector)
neteq_impl_unittest.cc
107
delay_peak_detector_ = new
DelayPeakDetector
;
210
DelayPeakDetector
* delay_peak_detector_;
[
all
...]
neteq_impl.cc
60
DelayPeakDetector
* delay_peak_detector,
[
all
...]
/external/webrtc/webrtc/modules/audio_coding/neteq/mock/
mock_delay_peak_detector.h
20
class MockDelayPeakDetector : public
DelayPeakDetector
{
mock_delay_manager.h
23
DelayPeakDetector
* peak_detector)
Completed in 2204 milliseconds