Fix typo 07/259507/1 accepted/tizen/unified/20210615.120229 submit/tizen/20210615.011749
authorJeongmo Yang <jm80.yang@samsung.com>
Wed, 9 Jun 2021 06:37:19 +0000 (15:37 +0900)
committerJeongmo Yang <jm80.yang@samsung.com>
Wed, 9 Jun 2021 06:37:35 +0000 (15:37 +0900)
[Version] 0.10.239
[Issue Type] Typo

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

index ee28361..28686a2 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       libmm-camcorder
 Summary:    Camera and recorder library
-Version:    0.10.238
+Version:    0.10.239
 Release:    0
 Group:      Multimedia/Libraries
 License:    Apache-2.0
index 5517217..3e02677 100644 (file)
@@ -198,7 +198,7 @@ int _mmcamcorder_remove_stillshot_pipeline(MMHandleType handle)
        if (sc->encode_element[_MMCAMCORDER_ENCODE_MAIN_PIPE].gst) {
                ret = _mmcamcorder_gst_set_state(handle, sc->encode_element[_MMCAMCORDER_ENCODE_MAIN_PIPE].gst, GST_STATE_NULL);
                if (ret != MM_ERROR_NONE) {
-                       MMCAM_LOG_ERROR("Faile to change encode main pipeline state [0x%x]", ret);
+                       MMCAM_LOG_ERROR("Failed to change encode main pipeline state [0x%x]", ret);
                        return ret;
                }
 
index 64b0c99..b128b11 100644 (file)
@@ -429,7 +429,7 @@ int _mmcamcorder_remove_audio_pipeline(MMHandleType handle)
                        This is a typical problem of unref. Even though I unref bin here, it takes much time to finalize each elements.
                        So I clean handles first, make them unref later. Audio recording, however, isn't needed this process.
                        It's because the pipeline of audio recording destroys at the same time,
-                       and '_mmcamcorder_element_release_noti' will perfom removing handle.
+                       and '_mmcamcorder_element_release_noti' will perform removing handle.
                */
                _mmcamcorder_remove_element_handle(handle, (void *)sc->encode_element, _MMCAMCORDER_AUDIOSRC_BIN, _MMCAMCORDER_AUDIOSRC_VOL);
 
@@ -482,7 +482,7 @@ int _mmcamcorder_remove_encode_pipeline(MMHandleType handle)
                        This is a typical problem of unref. Even though I unref bin here, it takes much time to finalize each elements.
                        So I clean handles first, make them unref later. Audio recording, however, isn't needed this process.
                        It's because the pipeline of audio recording destroys at the same time,
-                       and '_mmcamcorder_element_release_noti' will perfom removing handle.
+                       and '_mmcamcorder_element_release_noti' will perform removing handle.
                */
                /* _mmcamcorder_remove_element_handle(handle, (void *)sc->encode_element,
                        _MMCAMCORDER_ENCODE_MAIN_PIPE, _MMCAMCORDER_ENCSINK_SINK); */
@@ -804,7 +804,7 @@ int _mmcamcorder_video_command(MMHandleType handle, int command)
                                "PassFirstVideoFrame",
                                &(sc->pass_first_vframe));
 
-                       MMCAM_LOG_INFO("Drop video frame count[%d], Pass fisrt video frame count[%d]",
+                       MMCAM_LOG_INFO("Drop video frame count[%d], Pass first video frame count[%d]",
                                sc->drop_vframe, sc->pass_first_vframe);
 
                        info->record_drop_count = (guint)motion_rate;