aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-11-08 13:54:15 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2015-11-11 23:32:48 +0100
commit6e4bfbe936179f1ca0f1f7c812f4bc8b817e487e (patch)
tree84f368352594667dcc5c32e2f9dec1eb68024857
parentf38beb47daa80f66e4aeecf3f855151111bb5219 (diff)
downloadffmpeg-6e4bfbe936179f1ca0f1f7c812f4bc8b817e487e.tar.gz
avutil/softfloat: Fix typo in av_mul_sf() doxy
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 4135a2bfd6d0a835f57031de57ae42363d455574) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-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.
*/