OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stream_has_voice
(Results
1 - 5
of
5
) sorted by null
/external/webrtc/src/modules/audio_processing/
voice_detection_impl.h
40
virtual bool
stream_has_voice
() const;
voice_detection_impl.cc
109
bool VoiceDetectionImpl::
stream_has_voice
() const {
function in class:webrtc::VoiceDetectionImpl
/external/webrtc/src/modules/audio_processing/test/
process_test.cc
506
int8_t
stream_has_voice
= 0;
local
637
stream_has_voice
=
638
static_cast<int8_t>(apm->voice_detection()->
stream_has_voice
());
640
ASSERT_EQ(1u, fwrite(&
stream_has_voice
,
641
sizeof(
stream_has_voice
),
836
stream_has_voice
=
837
static_cast<int8_t>(apm->voice_detection()->
stream_has_voice
());
839
ASSERT_EQ(1u, fwrite(&
stream_has_voice
,
840
sizeof(
stream_has_voice
),
[
all
...]
unit_test.cc
830
EXPECT_TRUE(apm_->voice_detection()->
stream_has_voice
());
833
EXPECT_FALSE(apm_->voice_detection()->
stream_has_voice
());
895
// TODO(bjornv): Add tests for streamed voice;
stream_has_voice
()
[
all
...]
/external/webrtc/src/modules/audio_processing/interface/
audio_processing.h
98
// has_voice = apm->
stream_has_voice
();
550
// In addition to |
stream_has_voice
()| the VAD decision is provided through the
560
virtual bool
stream_has_voice
() const = 0;
Completed in 434 milliseconds