Add missing extra info for mm_sound_release_focus 80/120980/1 accepted/tizen_common accepted/tizen_ivi accepted/tizen_mobile accepted/tizen_tv accepted/tizen_wearable accepted/tizen/common/20170329.171858 accepted/tizen/ivi/20170329.221931 accepted/tizen/mobile/20170329.221823 accepted/tizen/tv/20170329.221859 accepted/tizen/unified/20170329.221948 accepted/tizen/wearable/20170329.221915 submit/tizen/20170328.103759
authorJeongmo Yang <jm80.yang@samsung.com>
Mon, 27 Mar 2017 02:25:44 +0000 (11:25 +0900)
committerJeongmo Yang <jm80.yang@samsung.com>
Mon, 27 Mar 2017 02:37:06 +0000 (11:37 +0900)
[Version] 0.10.116
[Profile] Common
[Issue Type] Bug fix
[Dependency module] N/A

Change-Id: I7625fdd8eea4fee9530b6d8c33316d8e5e1dd12e
Signed-off-by: Jeongmo Yang <jm80.yang@samsung.com>
src/mm_camcorder_internal.c

index 61343a1..7eda99a 100644 (file)
@@ -1301,7 +1301,7 @@ _ERR_CAMCORDER_CMD_PRECON_AFTER_LOCK:
        }
 
        if (hcamcorder->acquired_focus > 0) {
-               mm_sound_release_focus(hcamcorder->sound_focus_id, hcamcorder->acquired_focus, NULL);
+               mm_sound_release_focus(hcamcorder->sound_focus_id, hcamcorder->acquired_focus, "mm-camcorder release focus");
                _mmcam_dbg_warn("release sound focus [focus %d] done", hcamcorder->acquired_focus);
                hcamcorder->acquired_focus = 0;
        }
@@ -3358,7 +3358,7 @@ void _mmcamcorder_sound_signal_callback(mm_sound_signal_name_t signal, int value
                /* unregister focus related callback */
                if (hcamcorder->sound_focus_id > 0) {
                        if (hcamcorder->acquired_focus > 0) {
-                               mm_sound_release_focus(hcamcorder->sound_focus_id, hcamcorder->acquired_focus, NULL);
+                               mm_sound_release_focus(hcamcorder->sound_focus_id, hcamcorder->acquired_focus, "mm-camcorder release focus");
                                _mmcam_dbg_warn("release acquired focus [focus %d] done", hcamcorder->acquired_focus);
                                hcamcorder->acquired_focus = 0;
                        }