Home
last modified time | relevance | path

Searched refs:muted (Results 1 – 10 of 10) sorted by relevance

/device/google/cuttlefish/host/frontend/webrtc/libcommon/
Daudio_device.cpp34 bool& muted) { in GetMoreAudioData() argument
35 muted = !playing_ || !audio_callback_; in GetMoreAudioData()
36 if (muted) { in GetMoreAudioData()
Daudio_source.h33 int sample_rate, bool& muted) = 0;
Daudio_device.h37 int num_channels, int sample_rate, bool& muted) override;
/device/google/cuttlefish/host/frontend/webrtc/
Daudio_handler.cpp491 bool muted = false; in OnCaptureBuffer() local
506 stream_desc.channels, stream_desc.sample_rate, muted); in OnCaptureBuffer()
513 if (muted) { in OnCaptureBuffer()
532 stream_desc.channels, stream_desc.sample_rate, muted); in OnCaptureBuffer()
537 } else if (muted) { in OnCaptureBuffer()
/device/linaro/poplar/audio/
Daudio_hw.c539 static int adev_set_master_mute(struct audio_hw_device *dev, bool muted) in adev_set_master_mute() argument
541 ALOGV("adev_set_master_mute: %d", muted); in adev_set_master_mute()
545 static int adev_get_master_mute(struct audio_hw_device *dev, bool *muted) in adev_get_master_mute() argument
547 ALOGV("adev_get_master_mute: %d", *muted); in adev_get_master_mute()
/device/linaro/hikey/audio/
Daudio_hw.c722 static int adev_set_master_mute(struct audio_hw_device *dev, bool muted) in adev_set_master_mute() argument
724 ALOGV("adev_set_master_mute: %d", muted); in adev_set_master_mute()
728 static int adev_get_master_mute(struct audio_hw_device *dev, bool *muted) in adev_get_master_mute() argument
730 ALOGV("adev_get_master_mute: %d", *muted); in adev_get_master_mute()
/device/generic/car/emulator/audio/driver/
Daudio_hw.c1339 static int adev_set_master_mute(struct audio_hw_device *dev, bool muted) { in adev_set_master_mute() argument
1340 ALOGD("%s: %s", __func__, _bool_str(muted)); in adev_set_master_mute()
1343 adev->master_mute = muted; in adev_set_master_mute()
1348 static int adev_get_master_mute(struct audio_hw_device *dev, bool *muted) { in adev_get_master_mute() argument
1351 *muted = adev->master_mute; in adev_get_master_mute()
1353 ALOGD("%s: %s", __func__, _bool_str(*muted)); in adev_get_master_mute()
/device/amlogic/yukawa/hal/audio/
Daudio_hw.c971 static int adev_set_master_mute(struct audio_hw_device *dev, bool muted) in adev_set_master_mute() argument
973 ALOGV("adev_set_master_mute: %d", muted); in adev_set_master_mute()
977 static int adev_get_master_mute(struct audio_hw_device *dev, bool *muted) in adev_get_master_mute() argument
979 ALOGV("adev_get_master_mute: %d", *muted); in adev_get_master_mute()
/device/linaro/dragonboard/audio/
Daudio_hw.c957 static int adev_set_master_mute(struct audio_hw_device *dev, bool muted) in adev_set_master_mute() argument
959 ALOGV("adev_set_master_mute: %d", muted); in adev_set_master_mute()
963 static int adev_get_master_mute(struct audio_hw_device *dev, bool *muted) in adev_get_master_mute() argument
965 ALOGV("adev_get_master_mute: %d", *muted); in adev_get_master_mute()
/device/google/cuttlefish/host/frontend/webrtc/libdevice/
Dstreamer.cpp122 int sample_rate, bool& muted) override { in GetMoreAudioData() argument
125 sample_rate, muted); in GetMoreAudioData()