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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2014-01-20 19:52:06 +0400
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2014-01-20 19:55:00 +0400
commita2930c634f5debf2dc25cc2b80e7c91f84eae833 (patch)
tree9564c001a6fc754cf77cab949bc1b59262bca7fd /source/blender/quicktime/quicktime_import.h
parent9f2f2ed546b6577b246f7b41e79d2c5c17b77e70 (diff)
Code cleanup: remove quicktime image loading code (not animation loading).
This code has been broken for a few years and no one noticed, it's also less useful now that we support PSD image loading ourselves which was the original motivation to have this.
Diffstat (limited to 'source/blender/quicktime/quicktime_import.h')
-rw-r--r--source/blender/quicktime/quicktime_import.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/source/blender/quicktime/quicktime_import.h b/source/blender/quicktime/quicktime_import.h
index e45720496cc..3c6b2028031 100644
--- a/source/blender/quicktime/quicktime_import.h
+++ b/source/blender/quicktime/quicktime_import.h
@@ -48,7 +48,10 @@
# endif /* __FIXMATH__ */
#endif /* _WIN32 _ */
-char *get_valid_qtname(const char *name);
+/* init/exit */
+
+void quicktime_init(void);
+void quicktime_exit(void);
/* quicktime movie import functions */
@@ -57,9 +60,4 @@ int startquicktime(struct anim *anim);
void free_anim_quicktime(struct anim *anim);
ImBuf *qtime_fetchibuf(struct anim *anim, int position);
-/* quicktime image import functions */
-
-int imb_is_a_quicktime(char *name);
-ImBuf *imb_quicktime_decode(unsigned char *mem, int size, int flags);
-
#endif /* __QUICKTIME_IMPORT_H__ */