libvideocodec: resolve compilation errors when building for 54xx
authorJan Altensen <info@stricted.net>
Sat, 3 Oct 2020 05:19:29 +0000 (07:19 +0200)
committerJan Altensen <info@stricted.net>
Thu, 8 Oct 2020 03:34:14 +0000 (05:34 +0200)
Change-Id: Id518b48b008f9dcf6e3e166ffcf67e2daedecf61

libvideocodec/Android.mk
libvideocodec/dec/ExynosVideoDecoder.c

index 346313c44ceabdf8fd65d1afbba9942a9cb74bf0..ffc9d5ddb670885e3b4653a71b07cfffd4c59d93 100644 (file)
@@ -30,7 +30,9 @@ endif
 
 # since 3.10 kernel
 ifneq ($(filter-out 3.4, $(TARGET_LINUX_KERNEL_VERSION)),)
+ifneq ($(TARGET_SOC), exynos5433)
 LOCAL_CFLAGS += -DCID_SUPPORT
+endif
 LOCAL_CFLAGS += -DUSE_DEFINE_H264_SEI_TYPE
 LOCAL_CFLAGS += -DUSE_ORIGINAL_HEADER
 endif
index 6d7bff7000525a8bcf66d978e09c68cec07525d6..d0ae6d29df19325a1cf314258d190048218a1b3f 100644 (file)
@@ -1173,7 +1173,10 @@ static ExynosVideoErrorType MFC_Decoder_Get_Geometry_Outbuf(
 
     struct v4l2_format fmt;
     struct v4l2_crop   crop;
-    int i, value;
+    int i;
+#ifdef V4L2_CID_MPEG_MFC_GET_10BIT_INFO
+    int value;
+#endif
 
     if (pCtx == NULL) {
         ALOGE("%s: Video context info must be supplied", __func__);
@@ -1219,6 +1222,7 @@ static ExynosVideoErrorType MFC_Decoder_Get_Geometry_Outbuf(
 #endif
         bufferConf->bInterlaced = VIDEO_FALSE;
 
+#ifdef V4L2_CID_MPEG_MFC_GET_10BIT_INFO
     exynos_v4l2_g_ctrl(pCtx->hDec, V4L2_CID_MPEG_MFC_GET_10BIT_INFO, &value);
     if (value == 1) {
         bufferConf->eFilledDataType = DATA_8BIT_WITH_2BIT;
@@ -1234,6 +1238,7 @@ static ExynosVideoErrorType MFC_Decoder_Get_Geometry_Outbuf(
 #endif
         }
     }
+#endif
 
     /* Get planes aligned buffer size */
     for (i = 0; i < pCtx->nOutbufPlanes; i++)