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 /libavfilter | |
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 'libavfilter')
-rw-r--r-- | libavfilter/vf_deshake.c | 2 |
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 |