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
a91467a0
Commit
a91467a0
authored
11 years ago
by
Dmitry Kovalev
Committed by
Gerrit Code Review
11 years ago
Browse files
Options
Download
Plain Diff
Merge "Cleaning up vp9_cx_iface.c file."
parents
8e7f37a8
286669d5
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
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
vp9/vp9_cx_iface.c
+16
-18
vp9/vp9_cx_iface.c
with
16 additions
and
18 deletions
vp9/vp9_cx_iface.c
+
16
−
18
View file @
a91467a0
...
...
@@ -944,7 +944,7 @@ static vpx_image_t *vp9e_get_preview(vpx_codec_alg_priv_t *ctx) {
flags
.
noise_level
=
ctx
->
preview_ppcfg
.
noise_level
;
}
if
(
0
==
vp9_get_preview_raw_frame
(
ctx
->
cpi
,
&
sd
,
&
flags
))
{
if
(
vp9_get_preview_raw_frame
(
ctx
->
cpi
,
&
sd
,
&
flags
)
==
0
)
{
yuvconfig2image
(
&
ctx
->
preview_img
,
&
sd
,
NULL
);
return
&
ctx
->
preview_img
;
}
else
{
...
...
@@ -955,7 +955,7 @@ static vpx_image_t *vp9e_get_preview(vpx_codec_alg_priv_t *ctx) {
static
vpx_codec_err_t
vp9e_update_entropy
(
vpx_codec_alg_priv_t
*
ctx
,
int
ctr_id
,
va_list
args
)
{
int
update
=
va_arg
(
args
,
int
);
const
int
update
=
va_arg
(
args
,
int
);
vp9_update_entropy
(
ctx
->
cpi
,
update
);
return
VPX_CODEC_OK
;
}
...
...
@@ -963,7 +963,7 @@ static vpx_codec_err_t vp9e_update_entropy(vpx_codec_alg_priv_t *ctx,
static
vpx_codec_err_t
vp9e_update_reference
(
vpx_codec_alg_priv_t
*
ctx
,
int
ctr_id
,
va_list
args
)
{
int
update
=
va_arg
(
args
,
int
);
const
int
update
=
va_arg
(
args
,
int
);
vp9_update_reference
(
ctx
->
cpi
,
update
);
return
VPX_CODEC_OK
;
}
...
...
@@ -971,7 +971,7 @@ static vpx_codec_err_t vp9e_update_reference(vpx_codec_alg_priv_t *ctx,
static
vpx_codec_err_t
vp9e_use_reference
(
vpx_codec_alg_priv_t
*
ctx
,
int
ctr_id
,
va_list
args
)
{
int
reference_flag
=
va_arg
(
args
,
int
);
const
int
reference_flag
=
va_arg
(
args
,
int
);
vp9_use_as_reference
(
ctx
->
cpi
,
reference_flag
);
return
VPX_CODEC_OK
;
}
...
...
@@ -987,10 +987,9 @@ static vpx_codec_err_t vp9e_set_roi_map(vpx_codec_alg_priv_t *ctx,
static
vpx_codec_err_t
vp9e_set_activemap
(
vpx_codec_alg_priv_t
*
ctx
,
int
ctr_id
,
va_list
args
)
{
vpx_active_map_t
*
data
=
va_arg
(
args
,
vpx_active_map_t
*
);
vpx_active_map_t
*
const
map
=
va_arg
(
args
,
vpx_active_map_t
*
);
if
(
data
)
{
vpx_active_map_t
*
map
=
(
vpx_active_map_t
*
)
data
;
if
(
map
)
{
if
(
!
vp9_set_active_map
(
ctx
->
cpi
,
map
->
active_map
,
map
->
rows
,
map
->
cols
))
return
VPX_CODEC_OK
;
else
...
...
@@ -1001,15 +1000,13 @@ static vpx_codec_err_t vp9e_set_activemap(vpx_codec_alg_priv_t *ctx,
}
static
vpx_codec_err_t
vp9e_set_scalemode
(
vpx_codec_alg_priv_t
*
ctx
,
int
ctr_id
,
va_list
args
)
{
vpx_scaling_mode_t
*
scalemode
=
va_arg
(
args
,
vpx_scaling_mode_t
*
);
int
ctr_id
,
va_list
args
)
{
vpx_scaling_mode_t
*
const
mode
=
va_arg
(
args
,
vpx_scaling_mode_t
*
);
if
(
scalemode
!=
NULL
)
{
int
res
;
res
=
vp9_set_internal_size
(
ctx
->
cpi
,
(
VPX_SCALING
)
scalemode
->
h_scaling_mode
,
(
VPX_SCALING
)
scalemode
->
v_scaling_mode
);
if
(
mode
)
{
const
int
res
=
vp9_set_internal_size
(
ctx
->
cpi
,
(
VPX_SCALING
)
mode
->
h_scaling_mode
,
(
VPX_SCALING
)
mode
->
v_scaling_mode
);
return
(
res
==
0
)
?
VPX_CODEC_OK
:
VPX_CODEC_INVALID_PARAM
;
}
else
{
return
VPX_CODEC_INVALID_PARAM
;
...
...
@@ -1051,10 +1048,11 @@ static vpx_codec_err_t vp9e_set_svc_layer_id(vpx_codec_alg_priv_t *ctx,
static
vpx_codec_err_t
vp9e_set_svc_parameters
(
vpx_codec_alg_priv_t
*
ctx
,
int
ctr_id
,
va_list
args
)
{
VP9_COMP
*
c
pi
=
(
VP9_COMP
*
)
ctx
->
cpi
;
vpx_svc_parameters_t
*
params
=
va_arg
(
args
,
vpx_svc_parameters_t
*
);
VP9_COMP
*
c
onst
cpi
=
ctx
->
cpi
;
vpx_svc_parameters_t
*
const
params
=
va_arg
(
args
,
vpx_svc_parameters_t
*
);
if
(
params
==
NULL
)
return
VPX_CODEC_INVALID_PARAM
;
if
(
params
==
NULL
)
return
VPX_CODEC_INVALID_PARAM
;
cpi
->
svc
.
spatial_layer_id
=
params
->
spatial_layer
;
cpi
->
svc
.
temporal_layer_id
=
params
->
temporal_layer
;
...
...
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