OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Recording
(Results
1 - 25
of
36
) sorted by null
1
2
/external/webrtc/webrtc/test/
fake_audio_device.h
41
bool
Recording
() const override;
fake_audio_device.cc
77
bool FakeAudioDevice::
Recording
() const {
/external/webrtc/talk/app/webrtc/test/
fakeaudiocapturemodule_unittest.cc
188
EXPECT_FALSE(fake_audio_capture_module_->
Recording
());
193
EXPECT_TRUE(fake_audio_capture_module_->
Recording
());
199
EXPECT_FALSE(fake_audio_capture_module_->
Recording
());
fakeaudiocapturemodule.h
118
bool
Recording
() const override;
226
// Returns true/false depending on if
recording
or playback has been
247
// Callback for playout and
recording
.
/external/webrtc/webrtc/modules/audio_device/test/
func_test_manager.cc
[
all
...]
audio_device_test_api.cc
297
EXPECT_FALSE(audio_device_->
Recording
());
685
EXPECT_TRUE(audio_device_->
Recording
());
688
EXPECT_FALSE(audio_device_->
Recording
());
700
EXPECT_TRUE(audio_device_->
Recording
());
703
EXPECT_FALSE(audio_device_->
Recording
());
715
EXPECT_TRUE(audio_device_->
Recording
());
718
EXPECT_FALSE(audio_device_->
Recording
());
[
all
...]
/external/webrtc/webrtc/modules/audio_device/android/
audio_record_jni.h
80
bool
Recording
() const { return recording_; }
99
//
recording
has started. Each call indicates that there are |length| new
audio_device_template.h
194
// Avoid using audio manger (JNI/Java cost) if
recording
was inactive.
195
if (!
Recording
())
201
bool
Recording
() const override {
202
return input_.
Recording
() ;
audio_device_unittest.cc
158
// since both sides (playout and
recording
) are driven by its own thread.
661
EXPECT_FALSE(audio_device()->
Recording
());
665
EXPECT_TRUE(audio_device()->
Recording
());
670
EXPECT_FALSE(audio_device()->
Recording
());
836
// Tests that
recording
can be initiated, started and stopped. No audio callback
874
// Start
recording
and verify that the native audio layer starts feeding real
[
all
...]
/external/webrtc/webrtc/voice_engine/
voe_file_impl.cc
394
"StartRecordingMicrophone() failed to start
recording
");
397
if (!_shared->audio_device()->
Recording
()) {
400
"StartRecordingMicrophone() failed to initialize
recording
");
405
"StartRecordingMicrophone() failed to start
recording
");
424
"StartRecordingMicrophone() failed to start
recording
");
427
if (!_shared->audio_device()->
Recording
()) {
430
"StartRecordingMicrophone() failed to initialize
recording
");
435
"StartRecordingMicrophone() failed to start
recording
");
453
// Start/StopRecordingMicrophone() if no channel is
recording
.
455
_shared->audio_device()->
Recording
()) {
[
all
...]
/external/webrtc/webrtc/modules/audio_device/
audio_device_generic.h
62
virtual bool
Recording
() const = 0;
audio_device_impl.h
99
bool
Recording
() const override;
166
//
Recording
of raw PCM data
/external/webrtc/webrtc/modules/audio_device/dummy/
audio_device_dummy.cc
78
bool AudioDeviceDummy::
Recording
() const { return false; }
audio_device_dummy.h
66
bool
Recording
() const override;
file_audio_device.h
86
bool
Recording
() const override;
file_audio_device.cc
300
bool FileAudioDevice::
Recording
() const {
/external/webrtc/webrtc/modules/audio_device/include/
audio_device.h
99
virtual bool
Recording
() const = 0;
168
//
Recording
of raw PCM data
fake_audio_device.h
67
virtual bool
Recording
() const { return false; }
/external/webrtc/webrtc/modules/audio_device/ios/
audio_device_ios.h
60
bool
Recording
() const override { return recording_; }
228
// the playout and
recording
sides. These structure is set in two steps:
249
// audio data samples. Is also supports a similar scheme for the
recording
255
// cache non-utilized audio between callbacks. On the
recording
side, iOS
266
// Only used on the
recording
side.
273
// Set to 1 when
recording
is active and 0 otherwise.
audio_device_unittest_ios.cc
159
// since both sides (playout and
recording
) are driven by its own thread.
584
EXPECT_FALSE(audio_device()->
Recording
());
588
EXPECT_TRUE(audio_device()->
Recording
());
593
EXPECT_FALSE(audio_device()->
Recording
());
623
// Tests that
recording
can be initiated, started and stopped. No audio callback
714
// Start
recording
and verify that the native audio layer starts feeding real
732
// Start playout and
recording
(full-duplex audio) and verify that audio is
781
// Start playout and
recording
and store recorded data in an intermediate FIFO
791
//
recording
side and decreased by the playout side.
[
all
...]
/external/webrtc/webrtc/modules/audio_device/linux/
audio_device_alsa_linux.h
78
bool
Recording
() const override;
audio_device_pulse_linux.h
140
bool
Recording
() const override;
/external/webrtc/webrtc/modules/audio_device/mac/
audio_device_mac.h
36
const uint32_t N_REC_CHANNELS = 1; // default is mono
recording
105
virtual bool
Recording
() const;
/external/webrtc/webrtc/modules/audio_device/win/
audio_device_core_win.h
130
virtual bool
Recording
() const;
audio_device_wave_win.h
31
const uint32_t N_REC_CHANNELS = 1; // default is mono
recording
87
virtual bool
Recording
() const;
313
uint32_t _prevRecByteCheckTime; // time when we last checked the
recording
process
Completed in 132 milliseconds
1
2