summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/omx/GraphicBufferSource.cpp
diff options
context:
space:
mode:
authorLajos Molnar <lajos@google.com>2015-06-02 19:40:57 -0700
committerLajos Molnar <lajos@google.com>2015-06-02 19:42:38 -0700
commit9847fcefb183e1cb09eb48e17a09577392b0e8f4 (patch)
treec4ebb66267c1283ee00d991d40365c5e3afa30b4 /media/libstagefright/omx/GraphicBufferSource.cpp
parent15ab4996019387f27a48b81cb4774c21502bc0e5 (diff)
downloadframeworks_av-9847fcefb183e1cb09eb48e17a09577392b0e8f4.zip
frameworks_av-9847fcefb183e1cb09eb48e17a09577392b0e8f4.tar.gz
frameworks_av-9847fcefb183e1cb09eb48e17a09577392b0e8f4.tar.bz2
stagefright: rename VideoGrallocMetadata.hHandle to pHandle
This is so that it can be equivalent to the previously named VideoDecoderOutputMetaData struct. Bug: 13222807 Change-Id: I38831e19a76f49cc7e8385c079817c538d18f0ff
Diffstat (limited to 'media/libstagefright/omx/GraphicBufferSource.cpp')
-rw-r--r--media/libstagefright/omx/GraphicBufferSource.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/media/libstagefright/omx/GraphicBufferSource.cpp b/media/libstagefright/omx/GraphicBufferSource.cpp
index be91510..d30bba5 100644
--- a/media/libstagefright/omx/GraphicBufferSource.cpp
+++ b/media/libstagefright/omx/GraphicBufferSource.cpp
@@ -275,10 +275,10 @@ void GraphicBufferSource::codecBufferEmptied(OMX_BUFFERHEADERTYPE* header, int f
if (type == kMetadataBufferTypeGrallocSource
&& header->nAllocLen >= sizeof(VideoGrallocMetadata)) {
VideoGrallocMetadata &grallocMeta = *(VideoGrallocMetadata *)data;
- if (grallocMeta.hHandle != codecBuffer.mGraphicBuffer->handle) {
+ if (grallocMeta.pHandle != codecBuffer.mGraphicBuffer->handle) {
// should never happen
ALOGE("codecBufferEmptied: buffer's handle is %p, expected %p",
- grallocMeta.hHandle, codecBuffer.mGraphicBuffer->handle);
+ grallocMeta.pHandle, codecBuffer.mGraphicBuffer->handle);
CHECK(!"codecBufferEmptied: mismatched buffer");
}
} else if (type == kMetadataBufferTypeANWBuffer