comparison intfloat_readwrite.h @ 0:ee8f44bb7c4d libavutil

libavutil: Utility code from libavcodec moved to a separate library.
author al
date Mon, 01 Aug 2005 20:07:05 +0000
parents
children 2b3573111ff0
comparison
equal deleted inserted replaced
-1:000000000000 0:ee8f44bb7c4d
1 #ifndef INTFLOAT_READWRITE_H
2 #define INTFLOAT_READWRITE_H
3
4 #include "common.h"
5
6 double av_int2dbl(int64_t v);
7 float av_int2flt(int32_t v);
8 int64_t av_dbl2int(double d);
9 int32_t av_flt2int(float d);
10
11 #endif /* INTFLOAT_READWRITE_H */