Fix typo error (destory -> destroy) 25/201425/1 accepted/tizen_5.5_unified accepted/tizen_5.5_unified_mobile_hotfix accepted/tizen_5.5_unified_wearable_hotfix accepted/tizen_6.0_unified accepted/tizen_6.0_unified_hotfix accepted/tizen_unified tizen tizen_5.5 tizen_5.5_mobile_hotfix tizen_5.5_tv tizen_5.5_wearable_hotfix tizen_6.0 tizen_6.0_hotfix accepted/tizen/5.5/unified/20191031.021837 accepted/tizen/5.5/unified/mobile/hotfix/20201027.084928 accepted/tizen/5.5/unified/wearable/hotfix/20201027.115709 accepted/tizen/6.0/unified/20201030.114508 accepted/tizen/6.0/unified/hotfix/20201103.004130 accepted/tizen/unified/20190316.005449 submit/tizen/20190315.015740 submit/tizen_5.5/20191031.000004 submit/tizen_5.5_mobile_hotfix/20201026.185103 submit/tizen_5.5_wearable_hotfix/20201026.184303 submit/tizen_6.0/20201029.205104 submit/tizen_6.0_hotfix/20201102.192504 submit/tizen_6.0_hotfix/20201103.114804 tizen_5.5.m2_release tizen_6.0.m2_release
authorGilbok Lee <gilbok.lee@samsung.com>
Thu, 14 Mar 2019 04:09:32 +0000 (13:09 +0900)
committerGilbok Lee <gilbok.lee@samsung.com>
Thu, 14 Mar 2019 04:10:07 +0000 (13:10 +0900)
[Version] 0.10.12
[Profile] Mobile, TV
[Issue Type] Fix type error

Change-Id: I369c8e33d02694a02c9bf3a19bb6bccc0397ab76

packaging/libmm-transcode.spec
transcode/include/mm_transcode.h
transcode/mm_transcode.c
transcode/mm_transcode_seek.c

index b720b7a..f75c8c7 100644 (file)
@@ -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
index a4002c6..6bdc0e1 100644 (file)
@@ -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
index 1865111..f4de8b7 100644 (file)
@@ -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);
index 26975f5..570324c 100644 (file)
@@ -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);