diff options
author | Colin Cross <ccross@android.com> | 2014-02-06 20:29:44 -0800 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2014-02-10 14:33:33 -0800 |
commit | 26a995d192b5e8d41c70f189b585b36a29721362 (patch) | |
tree | 40c32fde2f2cd2702933fe3d2f3d3c795221452f /libvideoeditor | |
parent | e2307ccbab9c32a7806f15c2572cfe6ec428f2f5 (diff) | |
download | frameworks_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-x | libvideoeditor/lvpp/VideoEditorSRC.cpp | 2 |
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; |