diff options
| author | James Almer <[email protected]> | 2015-04-30 17:22:27 -0300 |
|---|---|---|
| committer | James Almer <[email protected]> | 2015-04-30 17:38:41 -0300 |
| commit | 39fbb27ec3a33438aa450d434fb764848d3162c1 (patch) | |
| tree | 00dc587f67adb452f7e7fe9fc30502ddb4a1848d | |
| parent | 7ad528cf23da5479c7cbf4676d071a07a709d8b6 (diff) | |
avutil/softfloat_tables: add missing stdint.h include
Fixes make checkheaders
Signed-off-by: James Almer <[email protected]>
| -rw-r--r-- | libavutil/softfloat_tables.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/softfloat_tables.h b/libavutil/softfloat_tables.h index 9d3c808eef..461f2b221d 100644 --- a/libavutil/softfloat_tables.h +++ b/libavutil/softfloat_tables.h @@ -47,6 +47,8 @@ #ifndef AVUTIL_SOFTFLOAT_TABLES_H #define AVUTIL_SOFTFLOAT_TABLES_H +#include <stdint.h> + static const int32_t av_sqrttbl_sf[512+1] = { /* sqrt(x), 0.5<=x<1 */ 0x2d413ccd,0x2d4c8bb3,0x2d57d7c6,0x2d63210a, 0x2d6e677f,0x2d79ab2a,0x2d84ec0b,0x2d902a23, |
