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/util.c')
-rw-r--r--source/blender/imbuf/intern/util.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/source/blender/imbuf/intern/util.c b/source/blender/imbuf/intern/util.c
index ca793d04d9b..ba8480b636f 100644
--- a/source/blender/imbuf/intern/util.c
+++ b/source/blender/imbuf/intern/util.c
@@ -373,19 +373,6 @@ static int isffmpeg(const char *filename)
}
#endif
-#ifdef WITH_REDCODE
-static int isredcode(const char *filename)
-{
- struct redcode_handle *h = redcode_open(filename);
- if (!h) {
- return 0;
- }
- redcode_close(h);
- return 1;
-}
-
-#endif
-
int imb_get_anim_type(const char *name)
{
int type;
@@ -424,9 +411,6 @@ int imb_get_anim_type(const char *name)
if (isavi(name)) return (ANIM_AVI);
#endif
-#ifdef WITH_REDCODE
- if (isredcode(name)) return (ANIM_REDCODE);
-#endif
type = IMB_ispic(name);
if (type) {
return ANIM_SEQUENCE;