diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-09-18 19:41:23 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-09-18 19:41:23 +0000 |
commit | 27666c3176ef795dea2768ba979771ab574cf3ca (patch) | |
tree | 1bf3f8488dcee78d90128fc0cc5a53e37c390389 /libavcodec/atrac1data.h | |
parent | 301a24de52f5baa09beff0958327af2c2a7005dc (diff) | |
download | ffmpeg-27666c3176ef795dea2768ba979771ab574cf3ca.tar.gz |
Add missing stdint.h #include to fix 'make checkheaders'.
Originally committed as revision 19913 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/atrac1data.h')
-rw-r--r-- | libavcodec/atrac1data.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/atrac1data.h b/libavcodec/atrac1data.h index 77641f2678..61162fb175 100644 --- a/libavcodec/atrac1data.h +++ b/libavcodec/atrac1data.h @@ -28,6 +28,8 @@ #ifndef AVCODEC_ATRAC1DATA_H #define AVCODEC_ATRAC1DATA_H +#include <stdint.h> + static const uint8_t bfu_amount_tab1[8] = {20, 28, 32, 36, 40, 44, 48, 52}; static const uint8_t bfu_amount_tab2[4] = { 0, 112, 176, 208}; static const uint8_t bfu_amount_tab3[8] = { 0, 24, 36, 48, 72, 108, 132, 156}; |