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:
authorStefan Werner <stewreo@gmail.com>2020-07-16 08:48:33 +0300
committerStefan Werner <stewreo@gmail.com>2020-07-16 08:48:33 +0300
commita2638d0f410770eab53dc2c65c69c1bf4db3fdf2 (patch)
treedb612c808cca5a502aeb43ebc4ff4c5f031ea01c /source/blender/imbuf
parent79ba0c3ab0ea24f67023b8c4c41659cc021e46de (diff)
parent2811de6e5c2a114a8612fffc7b317e9f91943d1e (diff)
Merge branch 'master' into mac_arm64
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/anim_movie.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/imbuf/intern/anim_movie.c b/source/blender/imbuf/intern/anim_movie.c
index 220801137f5..8361c43afc1 100644
--- a/source/blender/imbuf/intern/anim_movie.c
+++ b/source/blender/imbuf/intern/anim_movie.c
@@ -306,6 +306,10 @@ struct anim *IMB_open_anim(const char *name,
bool IMB_anim_can_produce_frames(const struct anim *anim)
{
+#if !(defined(WITH_AVI) || defined(WITH_FFMPEG))
+ UNUSED_VARS(anim);
+#endif
+
#ifdef WITH_AVI
if (anim->avi != NULL) {
return true;