Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
fed62e04
Commit
fed62e04
authored
Apr 15, 2013
by
Ronald S. Bultje
Committed by
Gerrit Code Review
Apr 15, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Fix width/height switch-up in U/V SB quantize code." into experimental
parents
04956a61
f551c2d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
vp9/encoder/vp9_quantize.c
vp9/encoder/vp9_quantize.c
+3
-3
No files found.
vp9/encoder/vp9_quantize.c
View file @
fed62e04
...
...
@@ -477,7 +477,7 @@ void vp9_quantize_sbuv_32x32(MACROBLOCK *x, BLOCK_SIZE_TYPE bsize) {
void
vp9_quantize_sbuv_16x16
(
MACROBLOCK
*
x
,
BLOCK_SIZE_TYPE
bsize
)
{
const
int
bwl
=
mb_width_log2
(
bsize
);
const
int
bhl
=
mb_
width
_log2
(
bsize
);
const
int
bhl
=
mb_
height
_log2
(
bsize
);
const
int
uoff
=
16
<<
(
bhl
+
bwl
);
int
i
;
...
...
@@ -487,7 +487,7 @@ void vp9_quantize_sbuv_16x16(MACROBLOCK *x, BLOCK_SIZE_TYPE bsize) {
void
vp9_quantize_sbuv_8x8
(
MACROBLOCK
*
x
,
BLOCK_SIZE_TYPE
bsize
)
{
const
int
bwl
=
mb_width_log2
(
bsize
);
const
int
bhl
=
mb_
width
_log2
(
bsize
);
const
int
bhl
=
mb_
height
_log2
(
bsize
);
const
int
uoff
=
16
<<
(
bhl
+
bwl
);
int
i
;
...
...
@@ -497,7 +497,7 @@ void vp9_quantize_sbuv_8x8(MACROBLOCK *x, BLOCK_SIZE_TYPE bsize) {
void
vp9_quantize_sbuv_4x4
(
MACROBLOCK
*
x
,
BLOCK_SIZE_TYPE
bsize
)
{
const
int
bwl
=
mb_width_log2
(
bsize
);
const
int
bhl
=
mb_
width
_log2
(
bsize
);
const
int
bhl
=
mb_
height
_log2
(
bsize
);
const
int
uoff
=
16
<<
(
bhl
+
bwl
);
int
i
;
...
...
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