Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
3c206aca
Commit
3c206aca
authored
May 11, 2016
by
hui su
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos in control function for VP9E_SET_TARGET_LEVEL
Change-Id: Ic797c6be579c3434681a5e9dbb3900ae49c43958
parent
2f55beb3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
vp9/vp9_cx_iface.c
vp9/vp9_cx_iface.c
+1
-1
vpx/vp8cx.h
vpx/vp8cx.h
+3
-3
No files found.
vp9/vp9_cx_iface.c
View file @
3c206aca
...
...
@@ -803,7 +803,7 @@ static vpx_codec_err_t ctrl_set_frame_periodic_boost(vpx_codec_alg_priv_t *ctx,
static
vpx_codec_err_t
ctrl_set_target_level
(
vpx_codec_alg_priv_t
*
ctx
,
va_list
args
)
{
struct
vp9_extracfg
extra_cfg
=
ctx
->
extra_cfg
;
extra_cfg
.
target_level
=
CAST
(
VP9E_SET_
LEVEL_STATS
,
args
);
extra_cfg
.
target_level
=
CAST
(
VP9E_SET_
TARGET_LEVEL
,
args
);
return
update_extra_cfg
(
ctx
,
&
extra_cfg
);
}
...
...
vpx/vp8cx.h
View file @
3c206aca
...
...
@@ -562,7 +562,7 @@ enum vp8e_enc_control_id {
*
* Supported in codecs: VP9
*/
VP9E_SET_TARGET_LEVEL
,
VP9E_SET_TARGET_LEVEL
};
/*!\brief vpx 1-D scaling mode
...
...
@@ -818,8 +818,8 @@ VPX_CTRL_USE_TYPE(VP9E_SET_SVC_REF_FRAME_CONFIG, vpx_svc_ref_frame_config_t *)
VPX_CTRL_USE_TYPE
(
VP9E_SET_RENDER_SIZE
,
int
*
)
#define VPX_CTRL_VP9E_SET_RENDER_SIZE
VPX_CTRL_USE_TYPE
(
VP9E_SET_
LEVEL_STATS
,
unsigned
int
)
#define VPX_CTRL_VP9E_SET_
LEVEL_STATS
VPX_CTRL_USE_TYPE
(
VP9E_SET_
TARGET_LEVEL
,
unsigned
int
)
#define VPX_CTRL_VP9E_SET_
TARGET_LEVEL
/*!\endcond */
/*! @} - end defgroup vp8_encoder */
...
...
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