summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2013-09-11 19:31:26 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-09-11 19:31:27 +0000
commit22b42bc528c1a38176572c128323e945ea4a7d0a (patch)
tree9e9103422d98068d415cf80a171802cf157bc01b
parent09875a2eabe6bc6582b40ab8f1cc9eac9c3901d5 (diff)
parent22a06b752f7c350f8d8eaec029c9df69d708126f (diff)
downloadlibhardware-22b42bc528c1a38176572c128323e945ea4a7d0a.tar.gz
Merge "Clarify return values of get_presentation_position" into klp-dev
-rw-r--r--include/hardware/audio.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/hardware/audio.h b/include/hardware/audio.h
index f8419807..6ba2544e 100644
--- a/include/hardware/audio.h
+++ b/include/hardware/audio.h
@@ -358,10 +358,18 @@ struct audio_stream_out {
int (*flush)(struct audio_stream_out* stream);
/**
- * Return the number of audio frames presented to an external observer.
+ * Return a recent count of the number of audio frames presented to an external observer.
* This excludes frames which have been written but are still in the pipeline.
* The count is not reset to zero when output enters standby.
* Also returns the value of CLOCK_MONOTONIC as of this presentation count.
+ * The returned count is expected to be 'recent',
+ * but does not need to be the most recent possible value.
+ * However, the associated time should correspond to whatever count is returned.
+ * Example: assume that N+M frames have been presented, where M is a 'small' number.
+ * Then it is permissible to return N instead of N+M,
+ * and the timestamp should correspond to N rather than N+M.
+ * The terms 'recent' and 'small' are not defined.
+ * They reflect the quality of the implementation.
*
* 3.0 and higher only.
*/