Increase max-frame to 500,000

Note that we could increase to 524286 without loosing subframe precision,
however this is a round number allowing for longer video export / animations.

See T46859 for details.
This commit is contained in:
Campbell Barton 2016-03-03 08:43:22 +11:00
parent e3e3f3851c
commit f7062b2407
1 changed files with 5 additions and 4 deletions

View File

@ -1739,16 +1739,17 @@ extern const char *RE_engine_id_CYCLES;
/* **************** SCENE ********************* */
/* note that much higher maxframes give imprecise sub-frames, see: T46859 */
/* for general use */
#define MAXFRAME 300000
#define MAXFRAMEF 300000.0f
#define MAXFRAME 500000
#define MAXFRAMEF 500000.0f
#define MINFRAME 0
#define MINFRAMEF 0.0f
/* (minimum frame number for current-frame) */
#define MINAFRAME -300000
#define MINAFRAMEF -300000.0f
#define MINAFRAME -500000
#define MINAFRAMEF -500000.0f
/* depricate this! */
#define TESTBASE(v3d, base) ( \