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:
Diffstat (limited to 'source/blender/imbuf/intern/anim_movie.c')
-rw-r--r--source/blender/imbuf/intern/anim_movie.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/source/blender/imbuf/intern/anim_movie.c b/source/blender/imbuf/intern/anim_movie.c
index 4eb078113dd..c11c6d778a1 100644
--- a/source/blender/imbuf/intern/anim_movie.c
+++ b/source/blender/imbuf/intern/anim_movie.c
@@ -1496,14 +1496,15 @@ static void free_anim_ffmpeg(struct anim *anim)
#endif
-/* Try to init the anim struct.
- * Returns true on success.*/
-
+/**
+ * Try to initialize the #anim struct.
+ * Returns true on success.
+ */
static bool anim_getnew(struct anim *anim)
{
BLI_assert(anim->curtype == ANIM_NONE);
if (anim == NULL) {
- /* Nothing to init. */
+ /* Nothing to initialize. */
return false;
}