From 067cd49f49154ee3e1625c38a50655f353c9b7a4 Mon Sep 17 00:00:00 2001 From: Gilbok Lee Date: Thu, 14 Mar 2019 13:09:32 +0900 Subject: [PATCH] Fix typo error (destory -> destroy) [Version] 0.10.12 [Profile] Mobile, TV [Issue Type] Fix type error Change-Id: I369c8e33d02694a02c9bf3a19bb6bccc0397ab76 --- packaging/libmm-transcode.spec | 2 +- transcode/include/mm_transcode.h | 12 ++++++------ transcode/mm_transcode.c | 2 +- transcode/mm_transcode_seek.c | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) 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); -- 2.34.1