Raise max. number of \be applications to 100, introduce #define for it.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28836 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
greg 2009-03-06 09:20:09 +00:00
parent d303d39798
commit 25abe9651d
1 changed files with 3 additions and 2 deletions

View File

@ -44,6 +44,7 @@
#define MAX_GLYPHS 3000
#define MAX_LINES 300
#define BLUR_MAX_RADIUS 50.0
#define MAX_BE 100
#define ROUND(x) ((int) ((x) + .5))
#define SUBPIXEL_MASK 56 // d6 bitmask for subpixel accuracy adjustment
@ -1158,9 +1159,9 @@ static char* parse_tag(char* p, double pwr) {
} else if (mystrcmp(&p, "be")) {
int val;
if (mystrtoi(&p, &val)) {
// Clamp to 10, since high values need excessive CPU
// Clamp to a safe upper limit, since high values need excessive CPU
val = (val < 0) ? 0 : val;
val = (val > 10) ? 10 : val;
val = (val > MAX_BE) ? MAX_BE : val;
render_context.be = val;
} else
render_context.be = 0;