summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2014-09-19 09:05:05 -0700
committerGlenn Kasten <gkasten@google.com>2014-09-19 09:06:01 -0700
commitdfc34daba6d6cb923683d96689a0cb7c7006eee5 (patch)
treef215c906f1322d1ff3e893e89e11f8aaec4eb2b9 /media
parentb0ed4e3e482cbdc2fa6c7853526597f4ae3f0972 (diff)
downloadframeworks_av-dfc34daba6d6cb923683d96689a0cb7c7006eee5.zip
frameworks_av-dfc34daba6d6cb923683d96689a0cb7c7006eee5.tar.gz
frameworks_av-dfc34daba6d6cb923683d96689a0cb7c7006eee5.tar.bz2
Reduce log spam from getTimestamp errors
Bug: 17576481 Change-Id: I07d99e7c42b7d4f0994b5a6d9c9fe8eb29fbbe40
Diffstat (limited to 'media')
-rw-r--r--media/libmedia/AudioTrack.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libmedia/AudioTrack.cpp b/media/libmedia/AudioTrack.cpp
index 762dca5..ea7b279 100644
--- a/media/libmedia/AudioTrack.cpp
+++ b/media/libmedia/AudioTrack.cpp
@@ -1935,7 +1935,7 @@ status_t AudioTrack::getTimestamp(AudioTimestamp& timestamp)
// To avoid a race, read the presented frames first. This ensures that presented <= consumed.
status_t status = mAudioTrack->getTimestamp(timestamp);
if (status != NO_ERROR) {
- ALOGW_IF(status != WOULD_BLOCK, "getTimestamp error:%#x", status);
+ ALOGV_IF(status != WOULD_BLOCK, "getTimestamp error:%#x", status);
return status;
}
if (isOffloadedOrDirect_l()) {