From: Gilbok Lee Date: Thu, 14 Mar 2019 04:09:32 +0000 (+0900) Subject: Fix typo error (destory -> destroy) X-Git-Tag: submit/tizen/20190315.015740^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Ftizen_5.5;p=platform%2Fcore%2Fmultimedia%2Flibmm-transcode.git Fix typo error (destory -> destroy) [Version] 0.10.12 [Profile] Mobile, TV [Issue Type] Fix type error Change-Id: I369c8e33d02694a02c9bf3a19bb6bccc0397ab76 --- diff --git a/packaging/libmm-transcode.spec b/packaging/libmm-transcode.spec index b720b7a..f75c8c7 100644 --- a/packaging/libmm-transcode.spec +++ b/packaging/libmm-transcode.spec @@ -1,6 +1,6 @@ Name: libmm-transcode Summary: Multimedia Framework Video Transcode Library -Version: 0.10.11 +Version: 0.10.12 Release: 0 Group: System/Libraries License: Apache-2.0 diff --git a/transcode/include/mm_transcode.h b/transcode/include/mm_transcode.h index a4002c6..6bdc0e1 100644 --- a/transcode/include/mm_transcode.h +++ b/transcode/include/mm_transcode.h @@ -163,8 +163,8 @@ mm_transcode_is_busy(MMHandleType MMHandle, bool *is_busy); * @param MMHandle [in] MMHandleType * @return This function returns transcode processor result value - * if the result is 0, then handle destory succeed - * else if the result is -1, then handle destory failed + * if the result is 0, then handle destroy succeed + * else if the result is -1, then handle destroy failed */ int mm_transcode_cancel(MMHandleType MMHandle); @@ -174,13 +174,13 @@ mm_transcode_cancel(MMHandleType MMHandle); /** * - * @remark Transcode Handle Destory + * @remark Transcode Handle Destroy * * @param MMHandle [in] MMHandleType * @return This function returns transcode processor result value - * if the result is 0, then handle destory succeed - * else if the result is -1, then handle destory failed + * if the result is 0, then handle destroy succeed + * else if the result is -1, then handle destroy failed */ int mm_transcode_destroy(MMHandleType MMHandle); @@ -190,7 +190,7 @@ mm_transcode_destroy(MMHandleType MMHandle); /** * - * @remark Transcode Handle Destory + * @remark Transcode Handle Destroy * * @param MMHandle [in] MMHandleType * @param» containerformat [in/out] Container format diff --git a/transcode/mm_transcode.c b/transcode/mm_transcode.c index 1865111..f4de8b7 100644 --- a/transcode/mm_transcode.c +++ b/transcode/mm_transcode.c @@ -394,7 +394,7 @@ int mm_transcode_destroy(MMHandleType MMHandle) g_cond_signal(handle->property->thread_cond); LOGD("===> send completed signal <-destroy"); g_mutex_unlock(handle->property->thread_mutex); - LOGD("unlock destory"); + LOGD("unlock destroy"); if (strlen(handle->param->outputfile) > 0) { unlink(handle->param->outputfile); LOGD("[Cancel] unlink %s", handle->param->outputfile); diff --git a/transcode/mm_transcode_seek.c b/transcode/mm_transcode_seek.c index 26975f5..570324c 100644 --- a/transcode/mm_transcode_seek.c +++ b/transcode/mm_transcode_seek.c @@ -629,7 +629,7 @@ static int _mm_transcode_exec(handle_s *handle, handle_param_s *param) if (handle->property->repeat_thread_exit) { g_mutex_unlock(handle->property->thread_mutex); - LOGD("unlock destory"); + LOGD("unlock destroy"); } else { LOGD("start_pos: %lu, duration: %lu, seek_mode: %d output file name: %s\n", param->start_pos, param->duration, param->seek_mode, param->outputfile); handle->param = g_new0(handle_param_s, 1);