aboutsummaryrefslogtreecommitdiff
path: root/include/oboe/AudioStream.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/oboe/AudioStream.h')
-rw-r--r--include/oboe/AudioStream.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/oboe/AudioStream.h b/include/oboe/AudioStream.h
index cb0f84de..e1244265 100644
--- a/include/oboe/AudioStream.h
+++ b/include/oboe/AudioStream.h
@@ -132,10 +132,11 @@ public:
*
* An underrun or overrun can cause an audible "pop" or "glitch".
*
- * @return the count or negative error.
+ * @return a result which is either Result::OK with the xRun count as the value, or a
+ * Result::Error* code
*/
- virtual int32_t getXRunCount() const {
- return static_cast<int32_t>(Result::ErrorUnimplemented);
+ virtual ResultWithValue<int32_t> getXRunCount() const {
+ return ResultWithValue<int32_t>(Result::ErrorUnimplemented);
}
/**