Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-11-08 15:54:15 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2015-11-08 16:23:37 +0300
commit4135a2bfd6d0a835f57031de57ae42363d455574 (patch)
treeb84bfd42d390a7407c802e25505a93b4e63b39e9 /libavutil
parent4b6ad23609f4a70b562b8f83eb74bc9fd1e5950d (diff)
avutil/softfloat: Fix typo in av_mul_sf() doxy
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/softfloat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/softfloat.h b/libavutil/softfloat.h
index 53356697df..fcad0f00cc 100644
--- a/libavutil/softfloat.h
+++ b/libavutil/softfloat.h
@@ -90,7 +90,7 @@ static inline av_const SoftFloat av_normalize1_sf(SoftFloat a){
}
/**
- * @return Will not be more denormalized than a+b. So if either input is
+ * @return Will not be more denormalized than a*b. So if either input is
* normalized, then the output will not be worse then the other input.
* If both are normalized, then the output will be normalized.
*/