From d45ea33ff14b7feaae29fe992b4d20cb96a1f48e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 25 Nov 2013 16:59:10 +1100 Subject: Fix T37591: 'Extensions' option ignored for movies. --- source/blender/blenlib/intern/path_util.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'source/blender/blenlib/intern/path_util.c') diff --git a/source/blender/blenlib/intern/path_util.c b/source/blender/blenlib/intern/path_util.c index 4b8ee6e2847..3900ee014dc 100644 --- a/source/blender/blenlib/intern/path_util.c +++ b/source/blender/blenlib/intern/path_util.c @@ -719,6 +719,15 @@ bool BLI_path_frame_range(char *path, int sta, int end, int digits) return false; } +/** + * Check if we have '#' chars, usable for #BLI_path_frame, #BLI_path_frame_range + */ +bool BLI_path_frame_check_chars(const char *path) +{ + int ch_sta, ch_end; /* dummy args */ + return stringframe_chars(path, &ch_sta, &ch_end); +} + /** * If path begins with "//", strips that and replaces it with basepath directory. Also converts * a drive-letter prefix to something more sensible if this is a non-drive-letter-based system. -- cgit v1.2.3