The Rect constructor became ambiguous because of the addition of a
new overload. This resolves the ambiguity to fix the build, but the
dependency on libui should be removed altogether.
Bug:
18668702
Change-Id: I923fcf793790776cd067933292ec8c8050f27d1c
GraphicBufferMapper &mapper = GraphicBufferMapper::get();
buffer_handle_t bufferHandle = (buffer_handle_t) handle;
private_handle_t *priv_hnd = (private_handle_t *) bufferHandle;
- Rect bounds(width, height);
+ Rect bounds((uint32_t)width, (uint32_t)height);
ExynosVideoPlane *vplanes = (ExynosVideoPlane *) planes;
void *vaddr[MAX_BUFFER_PLANE];