aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/bsf
diff options
context:
space:
mode:
authorAndrew Sayers <ffmpeg-devel@pileofstuff.org>2024-02-28 17:09:39 +0000
committerStefano Sabatini <stefasab@gmail.com>2024-03-04 17:38:57 +0100
commit6096c244bbd4011eba547456338b09ad83d844f6 (patch)
tree9008f581da5e349fe5115c24009aa08f9297c6f2 /libavcodec/bsf
parentac86b52f802bd6f54e32ac884b61f4f399211256 (diff)
downloadffmpeg-6096c244bbd4011eba547456338b09ad83d844f6.tar.gz
fix /// comments that should be ///<
Actual command: sed -i -e "s/\([;,] *\)<* *\/\/\/ *<* */\1\/\/\/< /" $( git grep -l "[;,] */// " ) Signed-off-by: Andrew Sayers <ffmpeg-devel@pileofstuff.org>
Diffstat (limited to 'libavcodec/bsf')
-rw-r--r--libavcodec/bsf/noise.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/libavcodec/bsf/noise.c b/libavcodec/bsf/noise.c
index 7bdaa3c1db..3a0f388dd6 100644
--- a/libavcodec/bsf/noise.c
+++ b/libavcodec/bsf/noise.c
@@ -28,18 +28,18 @@
#include "libavutil/eval.h"
static const char *const var_names[] = {
- "n", /// packet index, starting from zero
- "tb", /// timebase
- "pts", /// packet presentation timestamp
- "dts", /// packet decoding timestamp
- "nopts", /// AV_NOPTS_VALUE
- "startpts", /// first seen non-AV_NOPTS_VALUE packet timestamp
- "startdts", /// first seen non-AV_NOPTS_VALUE packet timestamp
- "duration", "d", /// packet duration
- "pos", /// original position of packet in its source
- "size", /// packet size
- "key" , /// packet keyframe flag
- "state", /// random-ish state
+ "n", ///< packet index, starting from zero
+ "tb", ///< timebase
+ "pts", ///< packet presentation timestamp
+ "dts", ///< packet decoding timestamp
+ "nopts", ///< AV_NOPTS_VALUE
+ "startpts", ///< first seen non-AV_NOPTS_VALUE packet timestamp
+ "startdts", ///< first seen non-AV_NOPTS_VALUE packet timestamp
+ "duration", "d", ///< packet duration
+ "pos", ///< original position of packet in its source
+ "size", ///< packet size
+ "key" , ///< packet keyframe flag
+ "state", ///< random-ish state
NULL
};