summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2014-09-19 19:02:30 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-09-19 19:02:30 +0000
commit553cbc1e7ae4627c4f979c1cf5daf73ca32c6d94 (patch)
tree6fb1dbd7451ff7e60cbd78fe999850f35d9b6015 /media
parent7f3ff4afc1cead44bbebce054b6fe32e28bee807 (diff)
parentdfc34daba6d6cb923683d96689a0cb7c7006eee5 (diff)
downloadframeworks_av-553cbc1e7ae4627c4f979c1cf5daf73ca32c6d94.zip
frameworks_av-553cbc1e7ae4627c4f979c1cf5daf73ca32c6d94.tar.gz
frameworks_av-553cbc1e7ae4627c4f979c1cf5daf73ca32c6d94.tar.bz2
am dfc34dab: Reduce log spam from getTimestamp errors
* commit 'dfc34daba6d6cb923683d96689a0cb7c7006eee5': Reduce log spam from getTimestamp errors
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()) {