Commit afbc88ac authored by michael's avatar michael

Cast constants to float to avoid gcc converting to and from

float<->double in every operation.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23118 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 46396d58
......@@ -43,8 +43,8 @@
# define SHR(a,b) ((a)*(1.0/(1<<(b))))
# define compute_antialias compute_antialias_float
# define FIXR_OLD(a) ((int)((a) * FRAC_ONE + 0.5))
# define FIXR(x) (x)
# define FIXHR(x) (x)
# define FIXR(x) ((float)(x))
# define FIXHR(x) ((float)(x))
# define MULH3(x, y, s) ((s)*(y)*(x))
# define MULLx(x, y, s) ((y)*(x))
# define RENAME(a) a ## _float
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment