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 E923A4116E for ; Sat, 16 Apr 2022 13:44:25 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id D2C0B68B278; Sat, 16 Apr 2022 16:44:22 +0300 (EEST) Received: from mail-4325.protonmail.ch (mail-4325.protonmail.ch [185.70.43.25]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 08E0E68B0AD for ; Sat, 16 Apr 2022 16:44:15 +0300 (EEST) Date: Sat, 16 Apr 2022 13:44:06 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1650116654; bh=8hckvbz/natM+4zDQ0HiuCtx1d94yJ1+n+URaiUJ2z8=; h=Date:To:From:Reply-To:Subject:Message-ID:From:To:Cc:Date:Subject: Reply-To:Feedback-ID:Message-ID; b=TKIiODcqV4UbJMGd7RTZNX+TYmiM3hISbk2/tcWdbzegJfUp+rtmMtXS8XMWXpCEB WsjUCsYIY7FYnIJtxmDrhPGThvYPSecIeEDIhG8lFoDZExBNFrxQoweujryyyIU8c6 t1UFOisiQnrFw22PoDdXk8GiIKMv6483tVhkZYuUW3z9XYwcqax1JJ7P4NOtfIt/IY MaFLSRr1kMJHslfQSTJGQERCcsyYuAutcDi7ymV6bmiUiuntn76zInL60bluP5nEbh +8lWolZo8KkFpT0mJd1WDgvtTwgo9oBpNgjFtK29YDmXst6kzxM/kK0amukScLt9JH q9vSUgCMzS0GQ== To: "ffmpeg-devel@ffmpeg.org" From: luzpaz Message-ID: MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 1/1] libavcodec/x86: fix source comment typos 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: >From d4fc528e4a0b24689900900abea56c317040605d Mon Sep 17 00:00:00 2001 From: luz paz Date: Sat, 16 Apr 2022 09:37:57 -0400 Subject: [PATCH] [PATCH] libavcodec/x86: fix source comment typos Fixes some asm source comment typos --- libavcodec/x86/celt_pvq_search.asm | 2 +- libavcodec/x86/fft.asm | 2 +- libavcodec/x86/hevc_idct.asm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/x86/celt_pvq_search.asm b/libavcodec/x86/celt_pvq_search.asm index 5c1e6d6174..cf059e3bb8 100644 --- a/libavcodec/x86/celt_pvq_search.asm +++ b/libavcodec/x86/celt_pvq_search.asm @@ -105,7 +105,7 @@ align 16 addps m5, m7 ; m5 = Sxy_new = X[i] + Sxy_norm %if USE_APPROXIMATION == 1 - andps m5, m0 ; if(X[i] == 0) Sxy_new = 0; Prevent aproximation error from setting pulses in array padding. + andps m5, m0 ; if(X[i] == 0) Sxy_new = 0; Prevent approximation error from setting pulses in array padding. %endif %else diff --git a/libavcodec/x86/fft.asm b/libavcodec/x86/fft.asm index a671e8f48e..09252ab182 100644 --- a/libavcodec/x86/fft.asm +++ b/libavcodec/x86/fft.asm @@ -25,7 +25,7 @@ ; These functions are not individually interchangeable with the C versions. ; While C takes arrays of FFTComplex, SSE/3DNow leave intermediate results -; in blocks as conventient to the vector size. +; in blocks as convenient to the vector size. ; i.e. {4x real, 4x imaginary, 4x real, ...} (or 2x respectively) %include "libavutil/x86/x86util.asm" diff --git a/libavcodec/x86/hevc_idct.asm b/libavcodec/x86/hevc_idct.asm index 1eb1973f27..1ad4eeb8eb 100644 --- a/libavcodec/x86/hevc_idct.asm +++ b/libavcodec/x86/hevc_idct.asm @@ -532,7 +532,7 @@ cglobal hevc_idct_8x8_%1, 1, 1, 8, coeffs ; %1, %2 - transform constants ; %3, %4 - regs with interleaved coeffs ; %5 - 1/0 SWAP or add -; %6, %7 - registers for intermidiate sums +; %6, %7 - registers for intermediate sums ; %8 - accumulator register %macro ADD_ROWS 8 pmaddwd %6, %3, %1 -- 2.35.1 _______________________________________________ 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".