diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-01-09 14:06:30 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-01-09 15:09:07 +0100 |
commit | 4b48201d4d9d57a2a1ecf8504bc928aff83cb99a (patch) | |
tree | 63a9b5580c320c876892773c3877ce433ec321bb | |
parent | d48132b7de7601c8c2769c0e92a43baa7759b991 (diff) | |
download | ffmpeg-4b48201d4d9d57a2a1ecf8504bc928aff83cb99a.tar.gz |
ac3tab.h: #include the correct headers
-rw-r--r-- | libavcodec/ac3tab.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/ac3tab.h b/libavcodec/ac3tab.h index c2b3febcb7..83edec52d1 100644 --- a/libavcodec/ac3tab.h +++ b/libavcodec/ac3tab.h @@ -22,7 +22,9 @@ #ifndef AVCODEC_AC3TAB_H #define AVCODEC_AC3TAB_H -#include "libavutil/common.h" +#include <stdint.h> + +#include "libavutil/internal.h" #include "ac3.h" #if CONFIG_HARDCODED_TABLES |