diff options
| author | 2009-09-14 18:48:58 -0400 | |
|---|---|---|
| committer | 2009-09-14 18:48:58 -0400 | |
| commit | 0d5581133285cef4d7582b531e0bf09cee86aa90 (patch) | |
| tree | 55f976695681564cb242662a544b85f4a7250a2b | |
| parent | d023f9a9a90705410250cd86bc6446c738423a99 (diff) | |
| parent | 92022857fbfb47941e50522151f123751e7fc4cb (diff) | |
Merge change 24932 into eclair
* changes:
Added a little more logging in OMXCodec.cpp for vendors to be able to reproduce issues...
| -rw-r--r-- | media/libstagefright/OMXCodec.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/media/libstagefright/OMXCodec.cpp b/media/libstagefright/OMXCodec.cpp index d905619159aa..22c2f3987929 100644 --- a/media/libstagefright/OMXCodec.cpp +++ b/media/libstagefright/OMXCodec.cpp @@ -1266,6 +1266,8 @@ status_t OMXCodec::freeBuffersOnPort( CHECK_EQ(info->mOwnedByComponent, false); + CODEC_LOGV("freeing buffer %p on port %ld", info->mBuffer, portIndex); + status_t err = mOMX->free_buffer(mNode, portIndex, info->mBuffer); |