[Bf-blender-cvs] [c2b6dc7e53a] master: Cleanup: Fix deinterlace code block style

Sebastian Parborg noreply at git.blender.org
Fri May 7 17:22:44 CEST 2021


Commit: c2b6dc7e53ae30de0d75a97aeda5844f9ea6506f
Author: Sebastian Parborg
Date:   Fri May 7 17:21:19 2021 +0200
Branches: master
https://developer.blender.org/rBc2b6dc7e53ae30de0d75a97aeda5844f9ea6506f

Cleanup: Fix deinterlace code block style

===================================================================

M	intern/ffmpeg/ffmpeg_compat.h

===================================================================

diff --git a/intern/ffmpeg/ffmpeg_compat.h b/intern/ffmpeg/ffmpeg_compat.h
index 1b1e2fad594..54a004d53e2 100644
--- a/intern/ffmpeg/ffmpeg_compat.h
+++ b/intern/ffmpeg/ffmpeg_compat.h
@@ -80,9 +80,11 @@ int64_t av_get_pts_from_frame(AVFormatContext *avctx, AVFrame *picture)
   return pts;
 }
 
-/* --- Deinterlace code block begin --- */
-
-/* NOTE: The code in this block are from FFmpeg 2.6.4, which is licensed by LGPL. */
+/* -------------------------------------------------------------------- */
+/** \name Deinterlace code block
+ *
+ * NOTE: The code in this block are from FFmpeg 2.6.4, which is licensed by LGPL.
+ * \{ */
 
 #define MAX_NEG_CROP 1024
 
@@ -280,6 +282,6 @@ int av_image_deinterlace(
   return 0;
 }
 
-/* --- Deinterlace code block end --- */
+/** \} Deinterlace code block */
 
 #endif



More information about the Bf-blender-cvs mailing list