summaryrefslogtreecommitdiff
path: root/android/audio-ipc-api.txt
diff options
context:
space:
mode:
authorLukasz Rymanowski <lukasz.rymanowski@tieto.com>2013-12-30 11:17:25 +0100
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2013-12-30 14:27:20 +0200
commit89d8dee407bcc4f5fdc112cb3616c326ac6f7528 (patch)
tree11effa7866d42db73aae1e6bd0b3f970cb8cb4cd /android/audio-ipc-api.txt
parentd781d37d077049095364a1681000df1d365fbca0 (diff)
downloadbluez-89d8dee407bcc4f5fdc112cb3616c326ac6f7528.tar.gz
android: Make stream example generic in the API doc
The stream direction should not really matter.
Diffstat (limited to 'android/audio-ipc-api.txt')
-rw-r--r--android/audio-ipc-api.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/android/audio-ipc-api.txt b/android/audio-ipc-api.txt
index 5140d779b..1c428009e 100644
--- a/android/audio-ipc-api.txt
+++ b/android/audio-ipc-api.txt
@@ -27,11 +27,11 @@ HAL socket apply here as well, the abstract socket name is
call dev->open_output_stream() --> command 0x03
return dev->open_output_stream() <-- response 0x03
- call stream_in->read() --> command 0x05
- return stream_in->read() <-- response 0x05
+ call stream->write() --> command 0x05
+ return stream->write() <-- response 0x05
- call stream_in->common.standby() --> command 0x06
- return stream_in->common.standby() <-- response 0x06
+ call stream->common.standby() --> command 0x06
+ return stream->common.standby() <-- response 0x06
call dev->close_output_stream() --> command 0x04
return dev->close_output_stream() <-- response 0x04