Removed build warnings 33/150133/2 accepted/tizen_4.0_unified tizen_4.0 submit/tizen_4.0/20170915.094212 tizen_4.0.IoT.p1_release tizen_4.0.IoT.p2_release tizen_4.0.m2_release
authorSejun Park <sejun79.park@samsung.com>
Tue, 12 Sep 2017 08:32:33 +0000 (17:32 +0900)
committerSejun Park <sejun79.park@samsung.com>
Fri, 15 Sep 2017 09:10:29 +0000 (18:10 +0900)
Change-Id: I178a9b8ca73b8ea99adf3cf5db492557c4a1583f

17 files changed:
include/exynos_gscaler.h [changed mode: 0755->0644]
libgscaler/libgscaler.cpp [changed mode: 0755->0644]
libgscaler/libgscaler_obj.cpp [changed mode: 0755->0644]
libgscaler/libgscaler_obj.h [changed mode: 0755->0644]
libswconverter/csc_BGRA8888_to_RGBA8888_NEON.s [changed mode: 0755->0644]
libswconverter/csc_BGRA8888_to_YUV420SP_NEON.s [changed mode: 0755->0644]
libswconverter/csc_RGBA8888_to_YUV420SP_NEON.s [changed mode: 0755->0644]
libswconverter/csc_interleave_memcpy_neon.s [changed mode: 0755->0644]
libswconverter/csc_linear_to_tiled_crop_neon.s [changed mode: 0755->0644]
libswconverter/csc_linear_to_tiled_interleave_crop_neon.s [changed mode: 0755->0644]
libswconverter/csc_tiled_to_linear_crop_neon.s [changed mode: 0755->0644]
libswconverter/csc_tiled_to_linear_deinterleave_crop_neon.s [changed mode: 0755->0644]
libswconverter/csc_tiled_to_linear_uv_deinterleave_neon.s [changed mode: 0755->0644]
libswconverter/csc_tiled_to_linear_uv_neon.s [changed mode: 0755->0644]
libswconverter/csc_tiled_to_linear_y_neon.s [changed mode: 0755->0644]
libswconverter/swconvertor.c [changed mode: 0755->0644]
libv4l2/exynos_mc.c

old mode 100755 (executable)
new mode 100644 (file)
index 38b57a4..9bb8266
@@ -60,8 +60,8 @@ extern "C" {
 #define Exynos_gsc_In() Exynos_Log(EXYNOS_DEV_LOG_DEBUG, EXYNOS_GSC_LOG_TAG, "%s In , Line: %d", __FUNCTION__, __LINE__)
 #define Exynos_gsc_Out() Exynos_Log(EXYNOS_DEV_LOG_DEBUG, EXYNOS_GSC_LOG_TAG, "%s Out , Line: %d", __FUNCTION__, __LINE__)
 #else
-#define Exynos_gsc_In() ((void *)0)
-#define Exynos_gsc_Out() ((void *)0)
+#define Exynos_gsc_In()
+#define Exynos_gsc_Out()
 #endif
 
 typedef struct {
old mode 100755 (executable)
new mode 100644 (file)
index 3c4cc24..d621bc7
@@ -50,9 +50,6 @@ void *exynos_gsc_create_exclusive(
     int out_mode,
     int allow_drm)
 {
-    int i     = 0;
-    int op_id = 0;
-    unsigned int total_sleep_time  = 0;
     int ret = 0;
 
     Exynos_gsc_In();
@@ -141,7 +138,6 @@ void exynos_gsc_destroy(void *handle)
 {
     Exynos_gsc_In();
 
-    int i = 0;
     CGscaler* gsc = GetGscaler(handle);
     if (gsc == NULL) {
         ALOGE("%s::handle == NULL() fail", __func__);
@@ -483,11 +479,6 @@ int exynos_gsc_run_exclusive(void *handle,
 void *exynos_gsc_create_blend_exclusive(int dev_num, int mode, int out_mode,
                                                                 int allow_drm)
 {
-    int i     = 0;
-    int op_id = 0;
-    unsigned int total_sleep_time  = 0;
-    int ret = 0;
-
     Exynos_gsc_In();
 
     if ((dev_num < 0) || (dev_num >= HW_SCAL_MAX)) {
@@ -609,8 +600,6 @@ int exynos_gsc_free_and_close(void *handle)
     Exynos_gsc_In();
 
     struct v4l2_requestbuffers reqbuf;
-    struct v4l2_buffer buf;
-    struct v4l2_plane  planes[NUM_OF_GSC_PLANES];
     int ret = 0;
     CGscaler* gsc = GetGscaler(handle);
     if (gsc == NULL) {
old mode 100755 (executable)
new mode 100644 (file)
index 58b88e0..0dec865
@@ -42,8 +42,6 @@ int CGscaler::m_gsc_output_create(void *handle, int dev_num, int out_mode)
     char node[32];
     char devname[32];
     unsigned int cap;
-    int         i;
-    int         fd = 0;
     CGscaler* gsc = GetGscaler(handle);
     if (gsc == NULL) {
         ALOGE("%s::handle == NULL() fail", __func__);
@@ -181,12 +179,9 @@ int CGscaler::m_gsc_capture_create(void *handle, int dev_num, int out_mode)
     struct media_entity *gsc_sd_entity;
     struct media_entity *gsc_vd_entity;
     struct media_entity *sink_sd_entity;
-    struct media_link *links;
     char node[32];
     char devname[32];
     unsigned int cap;
-    int         i;
-    int         fd = 0;
     CGscaler* gsc = GetGscaler(handle);
     if (gsc == NULL) {
         ALOGE("%s::handle == NULL() fail", __func__);
@@ -283,7 +278,6 @@ int CGscaler::m_gsc_out_stop(void *handle)
 {
     Exynos_gsc_In();
 
-    struct v4l2_requestbuffers reqbuf;
     CGscaler* gsc = GetGscaler(handle);
     if (gsc == NULL) {
         ALOGE("%s::handle == NULL() fail", __func__);
@@ -346,7 +340,6 @@ bool CGscaler::m_gsc_out_destroy(void *handle)
 {
     Exynos_gsc_In();
 
-    int i;
     CGscaler* gsc = GetGscaler(handle);
     if (gsc == NULL) {
         ALOGE("%s::handle == NULL() fail", __func__);
@@ -626,8 +619,7 @@ int CGscaler::m_gsc_m2m_stop(void *handle)
 
     /* if drm is enabled */
     if (gsc->allow_drm && gsc->protection_enabled) {
-        unsigned int protect_id = 0;
-
+/*
         if (gsc->gsc_id == 0)
             protect_id = CP_PROTECT_GSC0;
         else if (gsc->gsc_id == 1)
@@ -636,7 +628,7 @@ int CGscaler::m_gsc_m2m_stop(void *handle)
             protect_id = CP_PROTECT_GSC2;
         else if (gsc->gsc_id == 3)
             protect_id = CP_PROTECT_GSC3;
-
+*/
         /* CP_Disable_Path_Protection(protect_id); */
         gsc->protection_enabled = false;
     }
@@ -787,8 +779,7 @@ int CGscaler::m_gsc_m2m_run_core(void *handle)
      * and power domain is kept on.
      */
     if (is_dirty && gsc->allow_drm && is_drm) {
-        unsigned int protect_id = 0;
-
+/*
         if (gsc->gsc_id == 0) {
             protect_id = CP_PROTECT_GSC0;
         } else if (gsc->gsc_id == 1) {
@@ -802,7 +793,7 @@ int CGscaler::m_gsc_m2m_run_core(void *handle)
             __func__, gsc->gsc_id);
             goto done;
         }
-
+*/
         /* if (CP_Enable_Path_Protection(protect_id) != 0) {
             ALOGE("%s::CP_Enable_Path_Protection failed", __func__);
             goto done;
@@ -1255,14 +1246,11 @@ int CGscaler::m_gsc_out_config(void *handle,
     struct v4l2_requestbuffers reqbuf;
     struct v4l2_subdev_format sd_fmt;
     struct v4l2_subdev_crop   sd_crop;
-    int i;
     unsigned int rotate;
     unsigned int hflip;
     unsigned int vflip;
-    unsigned int plane_size[NUM_OF_GSC_PLANES];
     bool rgb;
 
-    struct v4l2_rect dst_rect;
     int32_t      src_color_space;
     int32_t      dst_color_space;
     int32_t      src_planes;
@@ -1498,14 +1486,10 @@ int CGscaler::m_gsc_cap_config(void *handle,
     struct v4l2_requestbuffers reqbuf;
     struct v4l2_subdev_format sd_fmt;
     struct v4l2_subdev_crop   sd_crop;
-    int i;
     unsigned int rotate;
     unsigned int hflip;
     unsigned int vflip;
-    unsigned int plane_size[NUM_OF_GSC_PLANES];
-    bool rgb;
 
-    struct v4l2_rect dst_rect;
     int32_t      src_color_space;
     int32_t      dst_color_space;
     int32_t      dst_planes;
@@ -1522,7 +1506,6 @@ int CGscaler::m_gsc_cap_config(void *handle,
     dst_color_space = HAL_PIXEL_FORMAT_2_V4L2_PIX(dst_img->format);
     dst_planes = m_gsc_get_plane_count(dst_color_space);
     dst_planes = (dst_planes == -1) ? 1 : dst_planes;
-    rgb = get_yuv_planes(src_color_space) == -1;
     CGscaler::rotateValueHAL2GSC(src_img->rot, &rotate, &hflip, &vflip);
 
     if (CGscaler::m_gsc_check_src_size(&gsc->src_img.fw,
@@ -2057,7 +2040,6 @@ int CGscaler::SetInputCrop(void *handle,
         exynos_mpp_img *src_img, exynos_mpp_img *dst_img)
 {
     struct v4l2_crop crop;
-    int ret = 0;
     CGscaler *gsc = GetGscaler(handle);
     if (gsc == NULL) {
         ALOGE("%s::handle == NULL() fail", __func__);
old mode 100755 (executable)
new mode 100644 (file)
index e36e397..e4dd23f
@@ -187,7 +187,7 @@ public:
         __InitMembers(__mode, __out_mode, __gsc_id, __allow_drm);
     }
 
-    ~CGscaler()
+    virtual ~CGscaler()
     {
         ALOGD("%s", __func__);
     }
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
index 4c12b1f..f42f7fa 100755 (executable)
@@ -191,10 +191,6 @@ static int __media_get_devname_sysfs(struct media_entity *entity)
 
 static int __media_get_media_fd(const char *filename, struct media_device *media)
 {
-    ssize_t num;
-    int media_node;
-    char *ptr;
-
     ALOGD("%s: %s", __func__, filename);
 
     media->fd = open(filename, O_RDWR, 0);
@@ -220,6 +216,10 @@ static int __media_enum_entities(struct media_device *media)
     for (id = 0, ret = 0; ; id = entity->info.id) {
         size = (media->entities_count + 1) * sizeof(*media->entities);
         media->entities = (struct media_entity*)realloc(media->entities, size);
+        if (media->entities == NULL) {
+            ret = -ENOMEM;
+            break;
+               }
 
         entity = &media->entities[media->entities_count];
         memset(entity, 0, sizeof(*entity));