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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-05-07 13:30:15 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-05-07 13:30:15 +0400
commit69fc654f94cc16176248aeeef89dddd03ffebdc8 (patch)
tree75bf45b4f020b157f9ddb27de372aaf8b3f1cb0c /source/blender/makesrna/intern/rna_scene_api.c
parentf618bada2b27ab9b41ebbdc3be8baff4e798a6c0 (diff)
Style cleanup: change ffmpeg, avi and frame server api to rna-ish naming style
Diffstat (limited to 'source/blender/makesrna/intern/rna_scene_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_scene_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_scene_api.c b/source/blender/makesrna/intern/rna_scene_api.c
index a5e807a9622..e3bb6e7b58a 100644
--- a/source/blender/makesrna/intern/rna_scene_api.c
+++ b/source/blender/makesrna/intern/rna_scene_api.c
@@ -75,7 +75,7 @@ static void rna_Scene_update_tagged(Scene *scene)
static void rna_SceneRender_get_frame_path(RenderData *rd, int frame, char *name)
{
if (BKE_imtype_is_movie(rd->im_format.imtype))
- BKE_makeanimstring(name, rd);
+ BKE_movie_filepath_get(name, rd);
else
BKE_makepicstring(name, rd->pic, G.main->name, (frame == INT_MIN) ? rd->cfra : frame, rd->im_format.imtype,
rd->scemode & R_EXTENSION, TRUE);