From d5b69aa606f1d8e40c096fe56791d823af737626 Mon Sep 17 00:00:00 2001 From: starfish <8675654+starfish002@user.noreply.gitee.com> Date: Thu, 20 May 2021 17:19:45 +0800 Subject: [PATCH] =?UTF-8?q?format=E6=8E=A5=E5=8F=A3=EF=BC=8CL1=E4=B8=8EL2?= =?UTF-8?q?=E4=B8=80=E8=87=B4=EF=BC=8C=E5=90=8C=E6=AD=A5=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- format/interfaces/include/format_interface.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/format/interfaces/include/format_interface.h b/format/interfaces/include/format_interface.h index c38d6395c2..a0d8892092 100755 --- a/format/interfaces/include/format_interface.h +++ b/format/interfaces/include/format_interface.h @@ -331,7 +331,7 @@ int32_t FormatDemuxerStop(void *handle); * @since 1.0 * @version 1.0 */ -int32_t FormatDemuxerDestory(void *handle); +int32_t FormatDemuxerDestroy(void *handle); /** * @brief Creates a muxer and returns its context handle. @@ -353,7 +353,7 @@ int32_t FormatMuxerCreate(void **handle, FormatOutputConfig *outputConfig); * @since 1.0 * @version 1.0 */ -int32_t FormatMuxerDestory(const void *handle); +int32_t FormatMuxerDestroy(const void *handle); /** * @brief Adds a media track source for the muxer. For details about track sources, see {@link TrackSource}. -- Gitee