diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-06-16 08:25:48 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-06-16 08:25:48 +0000 |
commit | b11829a9d93970aa4c327578bb9ffc9de9cacd3f (patch) | |
tree | e334574e075bf317bf864e69dcf952ea020f6a4e /libavcodec | |
parent | 66b26265f87f1839d9fa0baaa92ad57b1d4cf3fb (diff) | |
download | ffmpeg-b11829a9d93970aa4c327578bb9ffc9de9cacd3f.tar.gz |
Add missing #includes to fix 'make checkheaders'.
Originally committed as revision 13776 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/acelp_vectors.h | 2 | ||||
-rw-r--r-- | libavcodec/ra144.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/acelp_vectors.h b/libavcodec/acelp_vectors.h index ba865e9d6d..f9e32c12ca 100644 --- a/libavcodec/acelp_vectors.h +++ b/libavcodec/acelp_vectors.h @@ -23,6 +23,8 @@ #ifndef FFMPEG_ACELP_VECTORS_H #define FFMPEG_ACELP_VECTORS_H +#include <stdint.h> + /* * Track|Pulse| Positions * ------------------------------------------------------------------------- diff --git a/libavcodec/ra144.h b/libavcodec/ra144.h index 891cd9bf74..fd74c972c7 100644 --- a/libavcodec/ra144.h +++ b/libavcodec/ra144.h @@ -22,6 +22,8 @@ #ifndef FFMPEG_RA144_H #define FFMPEG_RA144_H +#include <stdint.h> + /* 14.4 data tables */ static const int16_t wavtable1[256][9] = { { 541, 956, 768, -1011, -811, -717, -571, -893, -576}, |