[CFL] Change CFL DC_PRED from int to int16_t

This changes serves to illustrate that DC_PRED does not
need 32 bits. It only needs the specified pixel bit depth.
Which fits inside a signed 16 bit integer.

Change-Id: Ice062c8c4a794cb4f32a3963278f4a99ef326dda
diff --git a/av1/common/blockd.h b/av1/common/blockd.h
index c998d3d..94487ed 100644
--- a/av1/common/blockd.h
+++ b/av1/common/blockd.h
@@ -604,7 +604,8 @@
   int subsampling_x, subsampling_y;
 
   // Block level DC_PRED for each chromatic plane
-  int dc_pred[CFL_PRED_PLANES];
+  // 16 bits are used, but only the pixel bit depth is required
+  int16_t dc_pred[CFL_PRED_PLANES];
 
   int mi_row, mi_col;