summaryrefslogtreecommitdiffstats
path: root/libvideoeditor
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2014-02-06 20:29:44 -0800
committerColin Cross <ccross@android.com>2014-02-10 14:33:33 -0800
commit26a995d192b5e8d41c70f189b585b36a29721362 (patch)
tree40c32fde2f2cd2702933fe3d2f3d3c795221452f /libvideoeditor
parente2307ccbab9c32a7806f15c2572cfe6ec428f2f5 (diff)
downloadframeworks_av-26a995d192b5e8d41c70f189b585b36a29721362.zip
frameworks_av-26a995d192b5e8d41c70f189b585b36a29721362.tar.gz
frameworks_av-26a995d192b5e8d41c70f189b585b36a29721362.tar.bz2
frameworks/av: fix errors inside ALOGV
Fix errors exposed by adding compile-time checking to disabled ALOGVs. Change-Id: Ie06db81d422bb4eee7dfc10abb8d03001627af4c
Diffstat (limited to 'libvideoeditor')
-rwxr-xr-xlibvideoeditor/lvpp/VideoEditorSRC.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvideoeditor/lvpp/VideoEditorSRC.cpp b/libvideoeditor/lvpp/VideoEditorSRC.cpp
index 36d0812..6beabfa 100755
--- a/libvideoeditor/lvpp/VideoEditorSRC.cpp
+++ b/libvideoeditor/lvpp/VideoEditorSRC.cpp
@@ -284,7 +284,7 @@ status_t VideoEditorSRC::getNextBuffer(AudioBufferProvider::Buffer *pBuffer, int
void VideoEditorSRC::releaseBuffer(AudioBufferProvider::Buffer *pBuffer) {
- ALOGV("releaseBuffer: %p", pBuffers);
+ ALOGV("releaseBuffer: %p", pBuffer);
free(pBuffer->raw);
pBuffer->raw = NULL;
pBuffer->frameCount = 0;