Commit 8b0ff902 authored by cehoyos's avatar cehoyos

Due to a typo in videogen.c, the regression test videos were not as

complex as originally planned.
Typo fixed (the background moves less linear now) and regression test
results updated.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19478 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 65b36670
This diff is collapsed.
This diff is collapsed.
......@@ -222,7 +222,7 @@ static void gen_image(int num, int w, int h)
for(y=0;y<h;y++) {
for(x=0;x<w;x++) {
x1 = (x << FRAC_BITS) + dx;
y1 = (y << FRAC_BITS) + dx;
y1 = (y << FRAC_BITS) + dy;
r = ((y1 * 7) >> FRAC_BITS) & 0xff;
g = (((x1 + y1) * 9) >> FRAC_BITS) & 0xff;
b = ((x1 * 5) >> FRAC_BITS) & 0xff;
......
This diff is collapsed.
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