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
bf0669aa
Commit
bf0669aa
authored
Sep 02, 2004
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
forgotten parameter
Originally committed as revision 3428 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
d89dc06a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
ffmpeg.c
ffmpeg.c
+3
-0
No files found.
ffmpeg.c
View file @
bf0669aa
...
@@ -184,6 +184,7 @@ static int context = 0;
...
@@ -184,6 +184,7 @@ static int context = 0;
static
int
predictor
=
0
;
static
int
predictor
=
0
;
static
int
video_profile
=
FF_PROFILE_UNKNOWN
;
static
int
video_profile
=
FF_PROFILE_UNKNOWN
;
static
int
video_level
=
FF_LEVEL_UNKNOWN
;
static
int
video_level
=
FF_LEVEL_UNKNOWN
;
static
int
nsse_weight
=
8
;
extern
int
loop_input
;
/* currently a hack */
extern
int
loop_input
;
/* currently a hack */
static
int
gop_size
=
12
;
static
int
gop_size
=
12
;
...
@@ -3154,6 +3155,7 @@ static void opt_output_file(const char *filename)
...
@@ -3154,6 +3155,7 @@ static void opt_output_file(const char *filename)
video_enc
->
prediction_method
=
predictor
;
video_enc
->
prediction_method
=
predictor
;
video_enc
->
profile
=
video_profile
;
video_enc
->
profile
=
video_profile
;
video_enc
->
level
=
video_level
;
video_enc
->
level
=
video_level
;
video_enc
->
nsse_weight
=
nsse_weight
;
if
(
packet_size
){
if
(
packet_size
){
video_enc
->
rtp_mode
=
1
;
video_enc
->
rtp_mode
=
1
;
...
@@ -3845,6 +3847,7 @@ const OptionDef options[] = {
...
@@ -3845,6 +3847,7 @@ const OptionDef options[] = {
{
"pred"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
&
predictor
},
"prediction method"
,
""
},
{
"pred"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
&
predictor
},
"prediction method"
,
""
},
{
"vprofile"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
&
video_profile
},
"profile"
,
""
},
{
"vprofile"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
&
video_profile
},
"profile"
,
""
},
{
"vlevel"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
&
video_level
},
"level"
,
""
},
{
"vlevel"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
&
video_level
},
"level"
,
""
},
{
"nssew"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
&
nsse_weight
},
"weight"
,
""
},
/* audio options */
/* audio options */
{
"ab"
,
HAS_ARG
|
OPT_AUDIO
,
{(
void
*
)
opt_audio_bitrate
},
"set audio bitrate (in kbit/s)"
,
"bitrate"
,
},
{
"ab"
,
HAS_ARG
|
OPT_AUDIO
,
{(
void
*
)
opt_audio_bitrate
},
"set audio bitrate (in kbit/s)"
,
"bitrate"
,
},
...
...
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