From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 9816A40C96 for ; Wed, 5 Jul 2023 03:36:28 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id E6CAA68C631; Wed, 5 Jul 2023 06:36:24 +0300 (EEST) Received: from m13205.mail.163.com (m13205.mail.163.com [220.181.13.205]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id C529968C618 for ; Wed, 5 Jul 2023 06:36:17 +0300 (EEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=163.com; s=s110527; h=Date:From:Subject:Content-Type:MIME-Version: Message-ID; bh=+bVtTwRcuJ62dUd7dSlhbkkdlpAsysbQeWseiPWUyM0=; b=J OJtJUHlWrnId3UWKhjdh0fVZFQ3HpaqbEtpeohkIa83ZvQTNxawKl9Wj1PNQf7HF Xhuw9WOoNxqTTFnxsSGoBynMR2bhyUDYxxMDFK2O0b6taBRJ8U+VBcCLtWxwyEW5 fcngHKqgXChfu5g5aOB/yF2D27oA7/ElamilbTYtoU= Received: from liqitong$163.com ( [220.203.232.199] ) by ajax-webmail-wmsvr199 (Coremail) ; Wed, 5 Jul 2023 11:36:14 +0800 (GMT+08:00) X-Originating-IP: [220.203.232.199] Date: Wed, 5 Jul 2023 11:36:14 +0800 (GMT+08:00) From: "QiTong Li" To: "ffmpeg-devel@ffmpeg.org" X-Priority: 3 X-Mailer: Coremail Webmail Server Version XT5.0.13 build 20210622(1d4788a8) MailMasterPC/4.19.2.1004_(Win11_21H2) Copyright (c) 2002-2023 www.mailtech.cn 163com X-NTES-SC: AL_QuyTCvmZt0ks4iecYekXkkwbhec4UMa4vP8k2o9ROp80qSDvxiErbV55L0bY7NOVDh6lkTm5YAdh9eNefKJXUqRibD+D2p18IySd8RjbiTn6 MIME-Version: 1.0 Message-ID: <3169cf0a.5f9d.189241f3e9e.Coremail.liqitong@163.com> X-Coremail-Locale: zh_CN X-CM-TRANSID: hseowACHjysu5aRk7SovAA--.54223W X-CM-SenderInfo: poltx3xrqjqiywtou0bp/xtbBawSjn1et9cZYggABsB X-Coremail-Antispam: 1U5529EdanIXcx71UUUUU7vcSsGvfC2KfnxnUU== X-Content-Filtered-By: Mailman/MimeDel 2.1.29 Subject: [FFmpeg-devel] [PATCH] fftools/ffplay: Fixed typo in frame_queue_destory X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: Not sure if the function naming frame_queue_destory is intended because "destory" is not really a word. Changing it to "destroy" makes more sense. Signed-off-by: QiTong Li --- fftools/ffplay.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fftools/ffplay.c b/fftools/ffplay.c index 663f61d8b2..51cde0d208 100644 --- a/fftools/ffplay.c +++ b/fftools/ffplay.c @@ -696,7 +696,7 @@ static int frame_queue_init(FrameQueue *f, PacketQueue *pktq, int max_size, int return 0; } -static void frame_queue_destory(FrameQueue *f) +static void frame_queue_destroy(FrameQueue *f) { int i; for (i = 0; i < f->max_size; i++) { @@ -1252,9 +1252,9 @@ static void stream_close(VideoState *is) packet_queue_destroy(&is->subtitleq); /* free all pictures */ - frame_queue_destory(&is->pictq); - frame_queue_destory(&is->sampq); - frame_queue_destory(&is->subpq); + frame_queue_destroy(&is->pictq); + frame_queue_destroy(&is->sampq); + frame_queue_destroy(&is->subpq); SDL_DestroyCond(is->continue_read_thread); sws_freeContext(is->sub_convert_ctx); av_free(is->filename); -- 2.33.0.windows.2 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".