Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
libvpx
Commits
2d8a9548
Commit
2d8a9548
authored
11 years ago
by
James Zern
Committed by
Gerrit Code Review
11 years ago
Browse files
Options
Download
Plain Diff
Merge "vpxenc: remove some warnings w/--disable-(vp8|vp9)"
parents
8ce5f68f
5248d711
v1.14.0-linphone
1.4.X
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
frame_parallel
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
mcw
mcw2
nextgen
nextgenv2
playground
sandbox/Jingning/experimental
sandbox/Jingning/transcode
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
sandbox/hkuang/frame_parallel
sandbox/hkuang@google.com/decode
sandbox/jimbankoski@google.com/proposed-aom
sandbox/jingning@google.com/decoder_test_suite
sandbox/jingning@google.com/experimental
sandbox/jzern@google.com/test
sandbox/wangch@google.com/vp9
sandbox/yaowu@google.com/mergeaom
v1.12.0-linphone
v1.6.1_linphone
v1.7.0-linphone
v1.9.0-linphone
v1.9.0
v1.9.0-rc1
v1.8.2
v1.8.1
v1.8.0
v1.7.0
v1.6.1
v1.6.0
v1.5.0
v1.4.0
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vpxenc.c
+13
-14
vpxenc.c
with
13 additions
and
14 deletions
vpxenc.c
+
13
−
14
View file @
2d8a9548
...
...
@@ -362,12 +362,6 @@ static const arg_def_t static_thresh = ARG_DEF(NULL, "static-thresh", 1,
"Motion detection threshold"
);
static
const
arg_def_t
cpu_used
=
ARG_DEF
(
NULL
,
"cpu-used"
,
1
,
"CPU Used (-16..16)"
);
static
const
arg_def_t
token_parts
=
ARG_DEF
(
NULL
,
"token-parts"
,
1
,
"Number of token partitions to use, log2"
);
static
const
arg_def_t
tile_cols
=
ARG_DEF
(
NULL
,
"tile-columns"
,
1
,
"Number of tile columns to use, log2"
);
static
const
arg_def_t
tile_rows
=
ARG_DEF
(
NULL
,
"tile-rows"
,
1
,
"Number of tile rows to use, log2"
);
static
const
arg_def_t
auto_altref
=
ARG_DEF
(
NULL
,
"auto-alt-ref"
,
1
,
"Enable automatic alt reference frames"
);
static
const
arg_def_t
arnr_maxframes
=
ARG_DEF
(
NULL
,
"arnr-maxframes"
,
1
,
...
...
@@ -387,16 +381,10 @@ static const arg_def_t cq_level = ARG_DEF(NULL, "cq-level", 1,
"Constant/Constrained Quality level"
);
static
const
arg_def_t
max_intra_rate_pct
=
ARG_DEF
(
NULL
,
"max-intra-rate"
,
1
,
"Max I-frame bitrate (pct)"
);
static
const
arg_def_t
lossless
=
ARG_DEF
(
NULL
,
"lossless"
,
1
,
"Lossless mode"
);
#if CONFIG_VP9_ENCODER
static
const
arg_def_t
frame_parallel_decoding
=
ARG_DEF
(
NULL
,
"frame-parallel"
,
1
,
"Enable frame parallel decodability features"
);
static
const
arg_def_t
aq_mode
=
ARG_DEF
(
NULL
,
"aq-mode"
,
1
,
"Adaptive q mode (0: off (by default), 1: variance 2: complexity)"
);
#endif
#if CONFIG_VP8_ENCODER
static
const
arg_def_t
token_parts
=
ARG_DEF
(
NULL
,
"token-parts"
,
1
,
"Number of token partitions to use, log2"
);
static
const
arg_def_t
*
vp8_args
[]
=
{
&
cpu_used
,
&
auto_altref
,
&
noise_sens
,
&
sharpness
,
&
static_thresh
,
&
token_parts
,
&
arnr_maxframes
,
&
arnr_strength
,
&
arnr_type
,
...
...
@@ -414,6 +402,17 @@ static const int vp8_arg_ctrl_map[] = {
#endif
#if CONFIG_VP9_ENCODER
static
const
arg_def_t
tile_cols
=
ARG_DEF
(
NULL
,
"tile-columns"
,
1
,
"Number of tile columns to use, log2"
);
static
const
arg_def_t
tile_rows
=
ARG_DEF
(
NULL
,
"tile-rows"
,
1
,
"Number of tile rows to use, log2"
);
static
const
arg_def_t
lossless
=
ARG_DEF
(
NULL
,
"lossless"
,
1
,
"Lossless mode"
);
static
const
arg_def_t
frame_parallel_decoding
=
ARG_DEF
(
NULL
,
"frame-parallel"
,
1
,
"Enable frame parallel decodability features"
);
static
const
arg_def_t
aq_mode
=
ARG_DEF
(
NULL
,
"aq-mode"
,
1
,
"Adaptive q mode (0: off (by default), 1: variance 2: complexity)"
);
static
const
arg_def_t
*
vp9_args
[]
=
{
&
cpu_used
,
&
auto_altref
,
&
noise_sens
,
&
sharpness
,
&
static_thresh
,
&
tile_cols
,
&
tile_rows
,
&
arnr_maxframes
,
&
arnr_strength
,
&
arnr_type
,
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets