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>2010-01-27 00:41:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-01-27 00:41:38 +0300
commit709b1a93e61e5c53f981819949641fb5db01d48e (patch)
tree7e2546594fa1ef5c5034d35b96efb69f301eb45a /source/blender/blenlib/BLI_path_util.h
parent586af8ca479ad22e59ef3a45694096f8a5e16405 (diff)
support for #'s for output animation paths
This was supported... image: /tmp/foo_###_bar --> /tmp/foo_001_bar.png But not this... anim: /tmp/foo_###_bar --> /tmp/foo_001_250_bar.avi
Diffstat (limited to 'source/blender/blenlib/BLI_path_util.h')
-rw-r--r--source/blender/blenlib/BLI_path_util.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_path_util.h b/source/blender/blenlib/BLI_path_util.h
index ca483903d46..f9ef3d8c828 100644
--- a/source/blender/blenlib/BLI_path_util.h
+++ b/source/blender/blenlib/BLI_path_util.h
@@ -98,6 +98,7 @@ int BLI_has_parent(char *path);
*/
int BLI_convertstringcode(char *path, const char *basepath);
int BLI_convertstringframe(char *path, int frame);
+int BLI_convertstringframe_range(char *path, int sta, int end);
int BLI_convertstringcwd(char *path);
void BLI_makestringcode(const char *relfile, char *file);