From ae1277dd8e1567e05e6604dc288d7f33db553e8a Mon Sep 17 00:00:00 2001 From: Jeongmo Yang Date: Wed, 9 Jun 2021 15:37:19 +0900 Subject: [PATCH] Fix typo [Version] 0.10.239 [Issue Type] Typo Change-Id: Id6bd891e95f7390f48f6198d66a23321621ca966 Signed-off-by: Jeongmo Yang --- packaging/libmm-camcorder.spec | 2 +- src/mm_camcorder_stillshot.c | 2 +- src/mm_camcorder_videorec.c | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packaging/libmm-camcorder.spec b/packaging/libmm-camcorder.spec index ee28361..28686a2 100755 --- a/packaging/libmm-camcorder.spec +++ b/packaging/libmm-camcorder.spec @@ -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 diff --git a/src/mm_camcorder_stillshot.c b/src/mm_camcorder_stillshot.c index 5517217..3e02677 100644 --- a/src/mm_camcorder_stillshot.c +++ b/src/mm_camcorder_stillshot.c @@ -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; } diff --git a/src/mm_camcorder_videorec.c b/src/mm_camcorder_videorec.c index 64b0c99..b128b11 100644 --- a/src/mm_camcorder_videorec.c +++ b/src/mm_camcorder_videorec.c @@ -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; -- 2.34.1