diff options
author | Andrew Sayers <ffmpeg-devel@pileofstuff.org> | 2024-02-28 17:09:39 +0000 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2024-03-04 17:38:57 +0100 |
commit | 6096c244bbd4011eba547456338b09ad83d844f6 (patch) | |
tree | 9008f581da5e349fe5115c24009aa08f9297c6f2 /libavcodec/bsf | |
parent | ac86b52f802bd6f54e32ac884b61f4f399211256 (diff) | |
download | ffmpeg-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.c | 24 |
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 }; |