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
7f1fd976
Commit
7f1fd976
authored
Apr 16, 2013
by
Anton Khirnov
Committed by
Diego Biurrun
Apr 16, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmdutils: Fix build with lavfi disabled
Signed-off-by:
Diego Biurrun
<
diego@biurrun.de
>
parent
5b27c307
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
cmdutils.c
cmdutils.c
+4
-0
No files found.
cmdutils.c
View file @
7f1fd976
...
...
@@ -1268,6 +1268,7 @@ static void show_help_muxer(const char *name)
show_help_children
(
fmt
->
priv_class
,
AV_OPT_FLAG_ENCODING_PARAM
);
}
#if CONFIG_AVFILTER
static
void
show_help_filter
(
const
char
*
name
)
{
const
AVFilter
*
f
=
avfilter_get_by_name
(
name
);
...
...
@@ -1305,6 +1306,7 @@ static void show_help_filter(const char *name)
show_help_children
(
f
->
priv_class
,
AV_OPT_FLAG_VIDEO_PARAM
|
AV_OPT_FLAG_AUDIO_PARAM
);
}
#endif
int
show_help
(
void
*
optctx
,
const
char
*
opt
,
const
char
*
arg
)
{
...
...
@@ -1326,8 +1328,10 @@ int show_help(void *optctx, const char *opt, const char *arg)
show_help_demuxer
(
par
);
}
else
if
(
!
strcmp
(
topic
,
"muxer"
))
{
show_help_muxer
(
par
);
#if CONFIG_AVFILTER
}
else
if
(
!
strcmp
(
topic
,
"filter"
))
{
show_help_filter
(
par
);
#endif
}
else
{
show_help_default
(
topic
,
par
);
}
...
...
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