Mercurial > libavutil.hg
view intfloat_readwrite.h @ 36:8795371b6c88 libavutil
<= vs. >= 10l bug
author | michael |
---|---|
date | Sat, 29 Apr 2006 15:38:20 +0000 |
parents | 2b3573111ff0 |
children | 11be8e0d1344 |
line wrap: on
line source
#ifndef INTFLOAT_READWRITE_H #define INTFLOAT_READWRITE_H #include "common.h" /* IEEE 80 bits extended float */ typedef struct AVExtFloat { uint8_t exponent[2]; uint8_t mantissa[8]; } AVExtFloat; double av_int2dbl(int64_t v); float av_int2flt(int32_t v); double av_ext2dbl(const AVExtFloat ext); int64_t av_dbl2int(double d); int32_t av_flt2int(float d); AVExtFloat av_dbl2ext(double d); #endif /* INTFLOAT_READWRITE_H */