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
9895ebe4
Commit
9895ebe4
authored
Aug 07, 2007
by
Benoit Fouet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid showing banner twice.
Originally committed as revision 9980 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
92df8910
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
ffmpeg.c
ffmpeg.c
+1
-4
No files found.
ffmpeg.c
View file @
9895ebe4
...
...
@@ -3711,7 +3711,6 @@ static void show_banner(void)
static
void
show_license
(
void
)
{
show_banner
();
#ifdef CONFIG_GPL
printf
(
"FFmpeg is free software; you can redistribute it and/or modify
\n
"
...
...
@@ -3760,7 +3759,6 @@ static void log_callback_help(void* ptr, int level, const char* fmt, va_list vl)
static
void
show_help
(
void
)
{
av_log_set_callback
(
log_callback_help
);
show_banner
();
printf
(
"usage: ffmpeg [[infile options] -i infile]... {[outfile options] outfile}...
\n
"
"Hyper fast Audio and Video encoder
\n
"
);
printf
(
"
\n
"
);
...
...
@@ -3812,10 +3810,9 @@ int main(int argc, char **argv)
avformat_opts
=
av_alloc_format_context
();
sws_opts
=
sws_getContext
(
16
,
16
,
0
,
16
,
16
,
0
,
sws_flags
,
NULL
,
NULL
,
NULL
);
show_banner
();
if
(
argc
<=
1
)
show_help
();
else
show_banner
();
/* parse options */
parse_options
(
argc
,
argv
,
options
);
...
...
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