comparison softfloat.h @ 527:6ebdeca51ff4 libavutil

cosmetics: Fix two common typos: wont --> will not, lets --> let us.
author diego
date Thu, 24 Jul 2008 17:09:28 +0000
parents b4ff998c79e3
children bd4052d9050c
comparison
equal deleted inserted replaced
526:27593a5d8acd 527:6ebdeca51ff4
72 } 72 }
73 73
74 /** 74 /**
75 * 75 *
76 * @return will not be more denormalized then a+b, so if either input is 76 * @return will not be more denormalized then a+b, so if either input is
77 * normalized then the output wont be worse then the other input 77 * normalized then the output will not be worse then the other input
78 * if both are normalized then the output will be normalized 78 * if both are normalized then the output will be normalized
79 */ 79 */
80 static inline av_const SoftFloat av_mul_sf(SoftFloat a, SoftFloat b){ 80 static inline av_const SoftFloat av_mul_sf(SoftFloat a, SoftFloat b){
81 a.exp += b.exp; 81 a.exp += b.exp;
82 a.mant = (a.mant * (int64_t)b.mant) >> ONE_BITS; 82 a.mant = (a.mant * (int64_t)b.mant) >> ONE_BITS;