Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
40f81769
Commit
40f81769
authored
May 07, 2012
by
Alex Converse
Committed by
Diego Biurrun
May 08, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
options_table: Add some missing #includes to fix "make checkheaders".
Signed-off-by:
Diego Biurrun
<
diego@biurrun.de
>
parent
3607dc2b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
options_table.h
libavcodec/options_table.h
+6
-0
options_table.h
libavformat/options_table.h
+5
-0
No files found.
libavcodec/options_table.h
View file @
40f81769
...
@@ -20,6 +20,12 @@
...
@@ -20,6 +20,12 @@
#ifndef AVCODEC_OPTIONS_TABLE
#ifndef AVCODEC_OPTIONS_TABLE
#define 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 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
#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
//these names are too long to be readable
...
...
libavformat/options_table.h
View file @
40f81769
...
@@ -19,6 +19,11 @@
...
@@ -19,6 +19,11 @@
#ifndef AVFORMAT_OPTIONS_TABLE
#ifndef AVFORMAT_OPTIONS_TABLE
#define AVFORMAT_OPTIONS_TABLE
#define AVFORMAT_OPTIONS_TABLE
#include <limits.h>
#include "libavutil/opt.h"
#include "avformat.h"
#define OFFSET(x) offsetof(AVFormatContext,x)
#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
#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
//these names are too long to be readable
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment