It was not intended to be a static private function
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
#include "common.h"
#include "log.h"
-static av_const double av_sf2double(SoftFloat v) {
- v.exp -= ONE_BITS +1;
- if(v.exp > 0) return (double)v.mant * (double)(1 << v.exp);
- else return (double)v.mant / (double)(1 << (-v.exp));
-}
-
void av_sincos_sf(int a, int *s, int *c)
{
int idx, sign;
int32_t exp;
}SoftFloat;
+static inline av_const double av_sf2double(SoftFloat v) {
+ v.exp -= ONE_BITS +1;
+ if(v.exp > 0) return (double)v.mant * (double)(1 << v.exp);
+ else return (double)v.mant / (double)(1 << (-v.exp));
+}
+
static av_const SoftFloat av_normalize_sf(SoftFloat a){
if(a.mant){
#if 1