From 5bc326c11d8434a87eae49df807a3e64b3d177b7 Mon Sep 17 00:00:00 2001 From: Robert Wu <85952307+robertwu1@users.noreply.github.com> Date: Thu, 5 Oct 2023 13:58:30 -0700 Subject: [PATCH] address comments --- include/oboe/FullDuplexStream.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/oboe/FullDuplexStream.h b/include/oboe/FullDuplexStream.h index f8e0274db..1301c4fa1 100644 --- a/include/oboe/FullDuplexStream.h +++ b/include/oboe/FullDuplexStream.h @@ -41,7 +41,9 @@ namespace oboe { * Caller is responsible for closing both streams. * * Callers should handle error callbacks with setErrorCallback() for the output stream. - * When an error callback occurs for the output stream, the caller should restart both streams. + * When an error callback occurs for the output stream, Oboe will stopping the output stream. + * The caller is responsible for stopping the input stream. + * The caller should also reopen and restart both streams. * */ class FullDuplexStream : public AudioStreamDataCallback {