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:
authorTon Roosendaal <ton@blender.org>2013-04-30 15:11:18 +0400
committerTon Roosendaal <ton@blender.org>2013-04-30 15:11:18 +0400
commit1ed6ab2f8c0bb42efa65233ab7dc6d0fb3fb77dc (patch)
treebd8122031ca3d7f565d759680fd9fbe519a561a3 /source/blender/imbuf
parent3b04b861bd964a54ee88defe899978ae564cb037 (diff)
Bug fix #35143
Animplayer treated .tif extensions as movie files, so that didn't work. Added another hardcoded check for it, like for png tga exr jpg etc. Why FFmpeg thinks .tif is a movie... that's for another day :) Quicktime QTKit did same btw.
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/util.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/imbuf/intern/util.c b/source/blender/imbuf/intern/util.c
index 849ba300fbf..fa1316f631f 100644
--- a/source/blender/imbuf/intern/util.c
+++ b/source/blender/imbuf/intern/util.c
@@ -297,6 +297,7 @@ static int isffmpeg(const char *filename)
BLI_testextensie(filename, ".dds") ||
BLI_testextensie(filename, ".tga") ||
BLI_testextensie(filename, ".bmp") ||
+ BLI_testextensie(filename, ".tif") ||
BLI_testextensie(filename, ".exr") ||
BLI_testextensie(filename, ".cin") ||
BLI_testextensie(filename, ".wav"))