Commit 9276b8f0 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Calculate gradient from parameter instead of using a global variable.

Originally committed as revision 19482 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 04e257fa
......@@ -197,8 +197,8 @@ static int ipol(uint8_t *src, int x, int y){
static void gen_image(int num, int w, int h)
{
const int c = h_cos [teta];
const int s = h_sin [teta];
const int c = h_cos [num % 360];
const int s = h_sin [num % 360];
const int xi = -(w/2) * c;
const int yi = (w/2) * s;
......
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