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:
authorCampbell Barton <ideasman42@gmail.com>2012-10-08 06:51:42 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-10-08 06:51:42 +0400
commitaa1e50be946dfeb17f9bb98b242bdbf6775f1ab6 (patch)
tree8ef66ed44c768e9e0783fc345dc97d9f8f4bbc54 /source/blender/imbuf/intern/util.c
parent2fd27753506013d602cbafe9fbb99649ba01c26c (diff)
add option to build without blenders default avi codec.
Diffstat (limited to 'source/blender/imbuf/intern/util.c')
-rw-r--r--source/blender/imbuf/intern/util.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/imbuf/intern/util.c b/source/blender/imbuf/intern/util.c
index 2d04b7c7413..8dd791c8508 100644
--- a/source/blender/imbuf/intern/util.c
+++ b/source/blender/imbuf/intern/util.c
@@ -211,7 +211,12 @@ int IMB_ispic(const char *filename)
static int isavi(const char *name)
{
+#ifdef WITH_AVI
return AVI_is_avi(name);
+#else
+ (void)name;
+ return FALSE;
+#endif
}
#ifdef WITH_QUICKTIME