From: Jeongmo Yang Date: Mon, 16 Nov 2015 04:32:24 +0000 (+0900) Subject: Release version 0.10.17 X-Git-Tag: accepted/tizen/mobile/20151117.005448^0 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fmultimedia%2Flibmm-camcorder.git;a=commitdiff_plain;h=3271a32fa45d8228481612e024060c44981d7b4b Release version 0.10.17 1. Fix typo 2. Fix max value of recording motion rate attribute Change-Id: Ifc333fb0fd3c493669415a1819dee1f43056e1f0 Signed-off-by: Jeongmo Yang --- diff --git a/packaging/libmm-camcorder.spec b/packaging/libmm-camcorder.spec index 227c624..689af1c 100644 --- a/packaging/libmm-camcorder.spec +++ b/packaging/libmm-camcorder.spec @@ -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 diff --git a/src/mm_camcorder_attribute.c b/src/mm_camcorder_attribute.c index 980e298..478215b 100644 --- a/src/mm_camcorder_attribute.c +++ b/src/mm_camcorder_attribute.c @@ -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, }, { diff --git a/src/mm_camcorder_util.c b/src/mm_camcorder_util.c index dc0bbef..c8abf6b 100644 --- a/src/mm_camcorder_util.c +++ b/src/mm_camcorder_util.c @@ -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; }