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 C72F046A9D for ; Thu, 29 Feb 2024 15:51:53 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 74C6768D17A; Thu, 29 Feb 2024 17:51:50 +0200 (EET) Received: from b-painless.mh.aa.net.uk (b-painless.mh.aa.net.uk [81.187.30.52]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 5DD3D68CE33 for ; Thu, 29 Feb 2024 17:51:44 +0200 (EET) Received: from c.e.9.3.3.0.b.1.e.3.4.b.6.2.c.9.0.5.8.0.9.1.8.0.0.b.8.0.1.0.0.2.ip6.arpa ([2001:8b0:819:850:9c26:b43e:1b03:39ec] helo=andrews-2024-laptop.lan) by painless-b.tch.aa.net.uk with esmtp (Exim 4.96) (envelope-from ) id 1rfihD-00Ci9K-2m; Thu, 29 Feb 2024 15:51:43 +0000 From: Andrew Sayers To: ffmpeg-devel@ffmpeg.org Date: Thu, 29 Feb 2024 15:51:33 +0000 Message-ID: <20240229155133.849386-1-ffmpeg-devel@pileofstuff.org> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH] all: fix "param"s that should be "@param" 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 Cc: Andrew Sayers 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: Actual command: sed -i -e "s/\(^ *\\* \)\(param[^a-z]\)/\1@\2/" $( git grep -l "^ *\\* param[^a-z]" ) Signed-off-by: Andrew Sayers --- libavcodec/evrcdec.c | 10 +++++----- libavutil/bprint.h | 12 ++++++------ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/libavcodec/evrcdec.c b/libavcodec/evrcdec.c index af7640d7e1..44d5bee722 100644 --- a/libavcodec/evrcdec.c +++ b/libavcodec/evrcdec.c @@ -495,11 +495,11 @@ static void fcb_excitation(EVRCContext *e, const uint16_t *codebook, /** * Synthesis of the decoder output signal. * - * param[in] in input signal - * param[in] filter_coeffs LPC coefficients - * param[in/out] memory synthesis filter memory - * param buffer_length amount of data to process - * param[out] samples output samples + * @param[in] in input signal + * @param[in] filter_coeffs LPC coefficients + * @param[in/out] memory synthesis filter memory + * @param buffer_length amount of data to process + * @param[out] samples output samples * * TIA/IS-127 5.2.3.15, 5.7.3.4 */ diff --git a/libavutil/bprint.h b/libavutil/bprint.h index 8559745478..4ac8570561 100644 --- a/libavutil/bprint.h +++ b/libavutil/bprint.h @@ -172,9 +172,9 @@ void av_bprint_chars(AVBPrint *buf, char c, unsigned n); /** * Append data to a print buffer. * - * param buf bprint buffer to use - * param data pointer to data - * param size size of data + * @param buf bprint buffer to use + * @param data pointer to data + * @param size size of data */ void av_bprint_append_data(AVBPrint *buf, const char *data, unsigned size); @@ -182,9 +182,9 @@ struct tm; /** * Append a formatted date and time to a print buffer. * - * param buf bprint buffer to use - * param fmt date and time format string, see strftime() - * param tm broken-down time structure to translate + * @param buf bprint buffer to use + * @param fmt date and time format string, see strftime() + * @param tm broken-down time structure to translate * * @note due to poor design of the standard strftime function, it may * produce poor results if the format string expands to a very long text and -- 2.43.0 _______________________________________________ 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".