Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Parborg <darkdefende@gmail.com>2021-05-07 18:21:19 +0300
committerSebastian Parborg <darkdefende@gmail.com>2021-05-07 18:22:12 +0300
commitc2b6dc7e53ae30de0d75a97aeda5844f9ea6506f (patch)
treeb72fb847a704dfc2158657d86a4cb6b4683dbd0f /intern/ffmpeg
parent9c509a721949b7baae1a66b5775f44d52a5ef4c0 (diff)
Cleanup: Fix deinterlace code block style
Diffstat (limited to 'intern/ffmpeg')
-rw-r--r--intern/ffmpeg/ffmpeg_compat.h10
1 files changed, 6 insertions, 4 deletions
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