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
6fd46414
Commit
6fd46414
authored
Sep 12, 2005
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dont include opt.h in avcodec.h
Originally committed as revision 4591 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
1471c6c2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
2 deletions
+4
-2
ffmpeg.c
ffmpeg.c
+1
-0
avcodec.h
libavcodec/avcodec.h
+1
-2
opt.c
libavcodec/opt.c
+1
-0
utils.c
libavcodec/utils.c
+1
-0
No files found.
ffmpeg.c
View file @
6fd46414
...
...
@@ -21,6 +21,7 @@
#include "avformat.h"
#include "framehook.h"
#include "dsputil.h"
#include "opt.h"
#ifndef CONFIG_WIN32
#include <unistd.h>
...
...
libavcodec/avcodec.h
View file @
6fd46414
...
...
@@ -12,7 +12,6 @@ extern "C" {
#endif
#include "avutil.h"
#include "opt.h"
#include <sys/types.h>
/* size_t */
//FIXME the following 2 really dont belong in here
...
...
@@ -682,7 +681,7 @@ struct AVCLASS {
or AVFormatContext, which begin with an AVClass.
Needed because av_log is in libavcodec and has no visibility
of AVIn/OutputFormat */
AVOption
*
option
;
struct
AVOption
*
option
;
};
/**
...
...
libavcodec/opt.c
View file @
6fd46414
...
...
@@ -25,6 +25,7 @@
*/
#include "avcodec.h"
#include "opt.h"
static
double
av_parse_num
(
const
char
*
name
,
char
**
tail
){
double
d
;
...
...
libavcodec/utils.c
View file @
6fd46414
...
...
@@ -28,6 +28,7 @@
#include "dsputil.h"
#include "mpegvideo.h"
#include "integer.h"
#include "opt.h"
#include <stdarg.h>
#include <limits.h>
#include <float.h>
...
...
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