libhwcomposer: Avoid overlay specific code for non-overlay targets

(cherry picked from commit baeb7668e20e4513fd6d7e6e211555a3c17195b8)

Change-Id: I2a6f49d364aa4fac11ec950bf7fc88ecff7afdbb
This commit is contained in:
Neti Ravi Kumar 2012-02-16 11:27:53 +05:30 committed by Andrew Sutherland
parent 2e18b6b9b2
commit 1e5e65ae87

View File

@ -198,6 +198,7 @@ static void setHWCOverlayStatus(hwc_context_t *ctx, bool isVideoPresent) {
}
static int hwc_closeOverlayChannels(hwc_context_t* ctx) {
#ifdef USE_OVERLAY
overlay::Overlay *ovLibObject = ctx->mOverlayLibObject;
if(!ovLibObject) {
LOGE("%s: invalid params", __FUNCTION__);
@ -212,6 +213,7 @@ static int hwc_closeOverlayChannels(hwc_context_t* ctx) {
// Inform the gralloc that video overlay has stopped.
setVideoOverlayStatusInGralloc(ctx, false);
}
#endif
return 0;
}