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
avutil/libm: fix fminf typo
Found-by: ubitux Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer
11 years ago
parent
97508af274
commit
2c1bf3fc96
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavutil/libm.h
+ 1
- 1
libavutil/libm.h
View File
@@ -84,7 +84,7 @@ static av_always_inline float cbrtf(float x)
#if !HAVE_FMINF
#undef fminf
#define fminf(x, y) ((float)fmin
f
(x,y))
#define fminf(x, y) ((float)fmin(x,y))
#endif
#if !HAVE_ISINF
Write
Preview
Loading…
Cancel
Save