diff options
author | Jamie Gennis <jgennis@google.com> | 2010-10-20 15:55:43 -0700 |
---|---|---|
committer | Jamie Gennis <jgennis@google.com> | 2010-10-20 16:05:40 -0700 |
commit | 6913c6176b6d239f833ea21120b93547aa5f93f7 (patch) | |
tree | 898a333dd0c34384349cfb3cc163104f36d34453 | |
parent | 7eac136a394b067e224efeafa29d6626fc9bcd7b (diff) | |
download | frameworks_base-6913c6176b6d239f833ea21120b93547aa5f93f7.zip frameworks_base-6913c6176b6d239f833ea21120b93547aa5f93f7.tar.gz frameworks_base-6913c6176b6d239f833ea21120b93547aa5f93f7.tar.bz2 |
Fix a copy & paste logging error.
This change corrects the name of a variable used in a logging macro,
allowing AwesomePlayer.cpp to build with verbose logging enabled.
Change-Id: Ie23fe0fb17f08ac43348cee3209bfe68088e856e
-rw-r--r-- | media/libstagefright/AwesomePlayer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/AwesomePlayer.cpp b/media/libstagefright/AwesomePlayer.cpp index a86ec7f..8c6c963 100644 --- a/media/libstagefright/AwesomePlayer.cpp +++ b/media/libstagefright/AwesomePlayer.cpp @@ -1129,7 +1129,7 @@ void AwesomePlayer::finishSeekIfNecessary(int64_t videoTimeUs) { } if (mAudioPlayer != NULL) { - LOGV("seeking audio to %lld us (%.2f secs).", timeUs, timeUs / 1E6); + LOGV("seeking audio to %lld us (%.2f secs).", videoTimeUs, videoTimeUs / 1E6); // If we don't have a video time, seek audio to the originally // requested seek time instead. |