Mercurial > libavutil.hg
comparison intfloat_readwrite.h @ 873:4d9ad0ed07d0 libavutil
Replace many includes of libavutil/common.h with what is actually needed
This reduces the number of false dependencies on header files and
speeds up compilation.
| author | mru |
|---|---|
| date | Tue, 09 Mar 2010 17:39:19 +0000 |
| parents | bd4052d9050c |
| children |
comparison
equal
deleted
inserted
replaced
| 872:9d32a031ab0b | 873:4d9ad0ed07d0 |
|---|---|
| 20 | 20 |
| 21 #ifndef AVUTIL_INTFLOAT_READWRITE_H | 21 #ifndef AVUTIL_INTFLOAT_READWRITE_H |
| 22 #define AVUTIL_INTFLOAT_READWRITE_H | 22 #define AVUTIL_INTFLOAT_READWRITE_H |
| 23 | 23 |
| 24 #include <stdint.h> | 24 #include <stdint.h> |
| 25 #include "common.h" | 25 #include "attributes.h" |
| 26 | 26 |
| 27 /* IEEE 80 bits extended float */ | 27 /* IEEE 80 bits extended float */ |
| 28 typedef struct AVExtFloat { | 28 typedef struct AVExtFloat { |
| 29 uint8_t exponent[2]; | 29 uint8_t exponent[2]; |
| 30 uint8_t mantissa[8]; | 30 uint8_t mantissa[8]; |
