Remove unused parameter 69/192969/1
authorJeongmo Yang <jm80.yang@samsung.com>
Tue, 13 Nov 2018 08:48:23 +0000 (17:48 +0900)
committerJeongmo Yang <jm80.yang@samsung.com>
Tue, 13 Nov 2018 08:48:23 +0000 (17:48 +0900)
[Version] 0.10.171
[Profile] Common
[Issue Type] Update
[Dependency module] N/A

Change-Id: If5ad00af93a5f2aa9ea67ef9f81c4df5368f1660
Signed-off-by: Jeongmo Yang <jm80.yang@samsung.com>
packaging/libmm-camcorder.spec
src/include/mm_camcorder_attribute.h
src/mm_camcorder_attribute.c
src/mm_camcorder_internal.c

index fa0c5be..da87f2a 100644 (file)
@@ -1,6 +1,6 @@
 Name:       libmm-camcorder
 Summary:    Camera and recorder library
-Version:    0.10.170
+Version:    0.10.171
 Release:    0
 Group:      Multimedia/Libraries
 License:    Apache-2.0
index 87afe27..4229bee 100644 (file)
@@ -250,7 +250,7 @@ typedef struct {
  * @see                _mmcamcorder_dealloc_attribute()
  *
  */
-MMHandleType _mmcamcorder_alloc_attribute(MMHandleType handle, MMCamPreset *info);
+MMHandleType _mmcamcorder_alloc_attribute(MMHandleType handle);
 
 /**
  * This function release structure of attributes.
index 67bf734..bb0199e 100644 (file)
@@ -81,7 +81,7 @@ static int  __mmcamcorder_check_valid_pair(MMHandleType handle, char **err_attr_
 |    GLOBAL FUNCTION DEFINITIONS:                                      |
 -----------------------------------------------------------------------*/
 MMHandleType
-_mmcamcorder_alloc_attribute(MMHandleType handle, MMCamPreset *info)
+_mmcamcorder_alloc_attribute(MMHandleType handle)
 {
        _mmcam_dbg_log("");
 
index cb094f5..8f8ded8 100644 (file)
@@ -194,7 +194,7 @@ int _mmcamcorder_create(MMHandleType *handle, MMCamPreset *info)
                goto _ERR_DEFAULT_VALUE_INIT;
        }
 
-       hcamcorder->attributes = _mmcamcorder_alloc_attribute((MMHandleType)hcamcorder, info);
+       hcamcorder->attributes = _mmcamcorder_alloc_attribute((MMHandleType)hcamcorder);
        if (!(hcamcorder->attributes)) {
                _mmcam_dbg_err("_mmcamcorder_create::alloc attribute error.");