Commit 40f81769 authored by Alex Converse's avatar Alex Converse Committed by Diego Biurrun

options_table: Add some missing #includes to fix "make checkheaders".

Signed-off-by: 's avatarDiego Biurrun <diego@biurrun.de>
parent 3607dc2b
......@@ -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
......
......@@ -19,6 +19,11 @@
#ifndef AVFORMAT_OPTIONS_TABLE
#define AVFORMAT_OPTIONS_TABLE
#include <limits.h>
#include "libavutil/opt.h"
#include "avformat.h"
#define OFFSET(x) offsetof(AVFormatContext,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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment