~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

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

Tags: upstream-2.40
ImportĀ upstreamĀ versionĀ 2.40

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
        }