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
eb11cca5
Commit
eb11cca5
authored
Sep 26, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg: document alternative to the lossless libx264 presets
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
a96b171d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
ffmpeg.c
ffmpeg.c
+4
-1
No files found.
ffmpeg.c
View file @
eb11cca5
...
...
@@ -4107,7 +4107,10 @@ static int opt_preset(OptionsContext *o, const char *opt, const char *arg)
subtitle_codec_name
;
if
(
!
(
f
=
get_preset_file
(
filename
,
sizeof
(
filename
),
arg
,
*
opt
==
'f'
,
codec_name
)))
{
fprintf
(
stderr
,
"File for preset '%s' not found
\n
"
,
arg
);
if
(
!
strncmp
(
arg
,
"libx264-lossless"
,
strlen
(
"libx264-lossless"
))){
fprintf
(
stderr
,
"Please use -preset <speed> -qp 0
\n
"
);
}
else
fprintf
(
stderr
,
"File for preset '%s' not found
\n
"
,
arg
);
exit_program
(
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