From 0539a3f1e9019bf5a092f5d3dd27d4d47e3b6c99 Mon Sep 17 00:00:00 2001 From: Jens Verwiebe Date: Fri, 2 Dec 2011 18:09:31 +0000 Subject: OSX: match quicktime and QTKit export to other formats/codecs --- source/blender/quicktime/apple/qtkit_export.m | 2 +- source/blender/quicktime/apple/quicktime_export.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/quicktime') diff --git a/source/blender/quicktime/apple/qtkit_export.m b/source/blender/quicktime/apple/qtkit_export.m index b26781d8026..c2e364b6080 100644 --- a/source/blender/quicktime/apple/qtkit_export.m +++ b/source/blender/quicktime/apple/qtkit_export.m @@ -213,7 +213,7 @@ void makeqtstring (RenderData *rd, char *string) { BLI_make_existing_file(string); if (BLI_strcasecmp(string + strlen(string) - 4, ".mov")) { - sprintf(txt, "%04d_%04d.mov", (rd->sfra) , (rd->efra) ); + sprintf(txt, "%04d-%04d.mov", (rd->sfra) , (rd->efra) ); strcat(string, txt); } } diff --git a/source/blender/quicktime/apple/quicktime_export.c b/source/blender/quicktime/apple/quicktime_export.c index ffda20ead7f..18c1ed23f8a 100644 --- a/source/blender/quicktime/apple/quicktime_export.c +++ b/source/blender/quicktime/apple/quicktime_export.c @@ -507,7 +507,7 @@ void filepath_qt(char *string, RenderData *rd) { BLI_make_existing_file(string); if (BLI_strcasecmp(string + strlen(string) - 4, ".mov")) { - sprintf(txt, "%04d_%04d.mov", (rd->sfra) , (rd->efra) ); + sprintf(txt, "%04d-%04d.mov", (rd->sfra) , (rd->efra) ); strcat(string, txt); } } -- cgit v1.2.3