summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorAndrew Sayers <ffmpeg-devel@pileofstuff.org>2024-02-29 15:51:33 +0000
committerStefano Sabatini <stefasab@gmail.com>2024-03-04 17:45:00 +0100
commitdea1d7531d028f0f0a8ebb9e9455162ae9d87bc5 (patch)
tree54bab3c10390f7d1d2f7a81ffbcfefe03cd29bca /libavutil
parent0dde5c5efaefc0484021e6e5399dcb7206922b42 (diff)
fix "param"s that should be "@param"
Actual command: sed -i -e "s/\(^ *\\* \)\(param[^a-z]\)/\1@\2/" $( git grep -l "^ *\\* param[^a-z]" ) Signed-off-by: Andrew Sayers <ffmpeg-devel@pileofstuff.org>
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/bprint.h12
1 files changed, 6 insertions, 6 deletions
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