Release version 0.10.17 88/51788/1 accepted/tizen/mobile/20151117.005448 accepted/tizen/tv/20151117.005500 accepted/tizen/wearable/20151117.005511 submit/tizen/20151116.054236
authorJeongmo Yang <jm80.yang@samsung.com>
Mon, 16 Nov 2015 04:32:24 +0000 (13:32 +0900)
committerJeongmo Yang <jm80.yang@samsung.com>
Mon, 16 Nov 2015 04:32:24 +0000 (13:32 +0900)
1. Fix typo
2. Fix max value of recording motion rate attribute

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

index 227c624..689af1c 100644 (file)
@@ -2,7 +2,7 @@
 
 Name:       libmm-camcorder
 Summary:    Camera and recorder library
-Version:    0.10.16
+Version:    0.10.17
 Release:    0
 Group:      Multimedia/Libraries
 License:    Apache-2.0
index 980e298..478215b 100644 (file)
@@ -388,7 +388,7 @@ _mmcamcorder_alloc_attribute( MMHandleType handle, MMCamPreset *info )
                        {(void*)1},
                        MM_ATTRS_VALID_TYPE_DOUBLE_RANGE,
                        {.double_min = 0.0},
-                       {.double_max = _MMCAMCORDER_MAX_INT},
+                       {.double_max = _MMCAMCORDER_MAX_DOUBLE},
                        _mmcamcorder_commit_camera_recording_motion_rate,
                },
                {
index dc0bbef..c8abf6b 100644 (file)
@@ -625,7 +625,7 @@ int _mmcamcorder_get_freespace(const gchar *path, const gchar *root_directory, g
 
                if (stat(root_directory, &stat_root) != 0) {
                        *free_space = 0;
-                       _mmcam_dbg_err("failed to stat for [%s][errno %d]", path, errno);
+                       _mmcam_dbg_err("failed to stat for [%s][errno %d]", root_directory, errno);
                        return -1;
                }