* Convert a SoftFloat to a double precision float. */
| 50 | * Convert a SoftFloat to a double precision float. |
| 51 | */ |
| 52 | static inline av_const double av_sf2double(SoftFloat v) { |
| 53 | v.exp -= ONE_BITS +1; |
| 54 | return ldexp(v.mant, v.exp); |
| 55 | } |
| 56 | |
| 57 | static av_const SoftFloat av_normalize_sf(SoftFloat a){ |
| 58 | if(a.mant){ |