Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
79be2c32
Commit
79be2c32
authored
Aug 01, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc/print_options: Move options headers to a saner place
parent
b5a13865
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
print_options.c
doc/print_options.c
+2
-4
No files found.
doc/print_options.c
View file @
79be2c32
...
@@ -27,7 +27,9 @@
...
@@ -27,7 +27,9 @@
#include <float.h>
#include <float.h>
#include "libavformat/avformat.h"
#include "libavformat/avformat.h"
#include "libavformat/options_table.h"
#include "libavcodec/avcodec.h"
#include "libavcodec/avcodec.h"
#include "libavcodec/options_table.h"
#include "libavutil/opt.h"
#include "libavutil/opt.h"
static
void
print_usage
(
void
)
static
void
print_usage
(
void
)
...
@@ -96,16 +98,12 @@ static void show_opts(const AVOption *opts, int per_stream)
...
@@ -96,16 +98,12 @@ static void show_opts(const AVOption *opts, int per_stream)
static
void
show_format_opts
(
void
)
static
void
show_format_opts
(
void
)
{
{
#include "libavformat/options_table.h"
printf
(
"@section Format AVOptions
\n
"
);
printf
(
"@section Format AVOptions
\n
"
);
show_opts
(
avformat_options
,
0
);
show_opts
(
avformat_options
,
0
);
}
}
static
void
show_codec_opts
(
void
)
static
void
show_codec_opts
(
void
)
{
{
#include "libavcodec/options_table.h"
printf
(
"@section Codec AVOptions
\n
"
);
printf
(
"@section Codec AVOptions
\n
"
);
show_opts
(
avcodec_options
,
1
);
show_opts
(
avcodec_options
,
1
);
}
}
...
...
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