diff options
author | Alex Converse <alex.converse@gmail.com> | 2012-05-07 16:25:12 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-05-08 20:05:20 +0200 |
commit | 40f81769aec24a93563cd547e02ba8478aa95849 (patch) | |
tree | ab070a0ec60ed7a3e83b5f7f931a8835c2b3575b /libavcodec | |
parent | 3607dc2b1a64ab74b823a3efbeda5097e533e62c (diff) | |
download | ffmpeg-40f81769aec24a93563cd547e02ba8478aa95849.tar.gz |
options_table: Add some missing #includes to fix "make checkheaders".
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/options_table.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/options_table.h b/libavcodec/options_table.h index 1e2560c941..eed3bdb483 100644 --- a/libavcodec/options_table.h +++ b/libavcodec/options_table.h @@ -20,6 +20,12 @@ #ifndef AVCODEC_OPTIONS_TABLE #define AVCODEC_OPTIONS_TABLE +#include <float.h> +#include <limits.h> + +#include "libavutil/opt.h" +#include "avcodec.h" + #define OFFSET(x) offsetof(AVCodecContext,x) #define DEFAULT 0 //should be NAN but it does not work as it is not a constant in glibc as required by ANSI/ISO C //these names are too long to be readable |