From 89d8dee407bcc4f5fdc112cb3616c326ac6f7528 Mon Sep 17 00:00:00 2001 From: Lukasz Rymanowski Date: Mon, 30 Dec 2013 11:17:25 +0100 Subject: [PATCH] android: Make stream example generic in the API doc The stream direction should not really matter. --- android/audio-ipc-api.txt | 8 ++++---- 1 file 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 -- 2.47.3