~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/src/writemovie.c

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * $Id: writemovie.c,v 1.5 2003/12/21 22:31:03 ton Exp $
 
2
 * $Id: writemovie.c,v 1.7 2005/05/11 19:56:42 ton Exp $
3
3
 *
4
4
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
5
5
 *
68
68
#define MAXQUAL R.r.quality
69
69
#define MINQUAL 30
70
70
 
 
71
 
71
72
/* globals */
72
73
 
73
74
static CL_Handle        compr, soft_compr;
107
108
 
108
109
        RE_make_existing_file(string);
109
110
 
110
 
        if (strcasecmp(string + len - 3, ".mv")) {
 
111
        if (BLI_strcasecmp(string + len - 3, ".mv")) {
111
112
                sprintf(txt, "%04d_%04d.mv", sfra, efra);
112
113
                strcat(string, txt);
113
114
        }