Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Yushin Cho
aom-rav1e
Commits
e6222b1a
Commit
e6222b1a
authored
Apr 16, 2014
by
Alex Converse
Browse files
Fix the CONFIG_ALPHA build.
Change-Id: Ib89fe34812c17cd6294ce3c38f87d43a79abb16f
parent
afc56366
Changes
2
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_quantize.c
View file @
e6222b1a
...
...
@@ -242,10 +242,10 @@ void vp9_init_plane_quantizers(VP9_COMP *cpi, MACROBLOCK *x) {
}
#if CONFIG_ALPHA
x
->
plane
[
3
].
quant
=
cpi
->
a_quant
[
qindex
];
x
->
plane
[
3
].
quant_shift
=
cpi
->
a_quant_shift
[
qindex
];
x
->
plane
[
3
].
zbin
=
cpi
->
a_zbin
[
qindex
];
x
->
plane
[
3
].
round
=
cpi
->
a_round
[
qindex
];
x
->
plane
[
3
].
quant
=
quants
->
a_quant
[
qindex
];
x
->
plane
[
3
].
quant_shift
=
quants
->
a_quant_shift
[
qindex
];
x
->
plane
[
3
].
zbin
=
quants
->
a_zbin
[
qindex
];
x
->
plane
[
3
].
round
=
quants
->
a_round
[
qindex
];
x
->
plane
[
3
].
zbin_extra
=
(
int16_t
)((
cm
->
a_dequant
[
qindex
][
1
]
*
zbin
)
>>
7
);
xd
->
plane
[
3
].
dequant
=
cm
->
a_dequant
[
qindex
];
#endif
...
...
vp9/encoder/vp9_quantize.h
View file @
e6222b1a
...
...
@@ -11,6 +11,7 @@
#ifndef VP9_ENCODER_VP9_QUANTIZE_H_
#define VP9_ENCODER_VP9_QUANTIZE_H_
#include "./vpx_config.h"
#include "vp9/encoder/vp9_block.h"
#ifdef __cplusplus
...
...
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