gralloc: Remove default color space in AllocateBuffer()
The color space should be set explicitly by the producers, not
set by default in gralloc. This change resolves CTS failures in
CtsMediaV2TestCases#EncoderColorAspectsTest.
CRs-Fixed: 2737311
Change-Id: Ia7c780ecc83af3ec742a810de6253fddcfdf66b8
diff --git a/gralloc/gr_buf_mgr.cpp b/gralloc/gr_buf_mgr.cpp
index 539bb00..e939a62 100644
--- a/gralloc/gr_buf_mgr.cpp
+++ b/gralloc/gr_buf_mgr.cpp
@@ -940,11 +940,6 @@
hnd->base_metadata = 0;
hnd->layer_count = layer_count;
- // set default csc as 709, but for video(yuv) its 601L
-
- ColorSpace_t colorSpace = (buffer_type == BUFFER_TYPE_VIDEO) ? ITU_R_601 : ITU_R_709;
- setMetaDataAndUnmap(hnd, UPDATE_COLOR_SPACE, reinterpret_cast<void *>(&colorSpace));
-
bool use_adreno_for_size = CanUseAdrenoForSize(buffer_type, usage);
if (use_adreno_for_size) {
setMetaDataAndUnmap(hnd, SET_GRAPHICS_METADATA, reinterpret_cast<void *>(&graphics_metadata));