This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avfilter/vf_deband: avoid doubles
tags/n4.4
Paul B Mahol
4 years ago
parent
8d21eccd26
commit
178a0d6f7d
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavfilter/vf_deband.c
+ 1
- 1
libavfilter/vf_deband.c
View File
@@ -117,7 +117,7 @@ static int query_formats(AVFilterContext *ctx)
static float frand(int x, int y)
{
const float r = sinf(x * 12.9898 + y * 78.233) * 43758.545;
const float r = sinf(x * 12.9898
f
+ y * 78.233
f
) * 43758.545
f
;
return r - floorf(r);
}
Write
Preview
Loading…
Cancel
Save