aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter
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 /libavfilter
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 'libavfilter')
-rw-r--r--libavfilter/vf_deshake.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_deshake.c b/libavfilter/vf_deshake.c
index 00e7472f67..107b78a7d1 100644
--- a/libavfilter/vf_deshake.c
+++ b/libavfilter/vf_deshake.c
@@ -88,7 +88,7 @@ typedef struct Transform {
typedef struct DeshakeContext {
const AVClass *class;
- int counts[2*MAX_R+1][2*MAX_R+1]; /// < Scratch buffer for motion search
+ int counts[2*MAX_R+1][2*MAX_R+1]; ///< Scratch buffer for motion search
double *angles; ///< Scratch buffer for block angles
unsigned angles_size;
AVFrame *ref; ///< Previous frame