Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
8e8bc5f2
Commit
8e8bc5f2
authored
Jun 16, 2015
by
Jingning Han
Browse files
Add dynamic range comment to vp9_int_pro_col
Change-Id: If14d9f874bd0bf2c5a455982088fd70591f5ea5a
parent
001baa5d
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_avg.c
View file @
8e8bc5f2
...
...
@@ -142,9 +142,11 @@ void vp9_int_pro_row_c(int16_t *hbuf, uint8_t const *ref,
}
}
// width: value range {16, 32, 64}.
int16_t
vp9_int_pro_col_c
(
uint8_t
const
*
ref
,
const
int
width
)
{
int
idx
;
int16_t
sum
=
0
;
// sum: 14 bit, dynamic range [0, 16320]
for
(
idx
=
0
;
idx
<
width
;
++
idx
)
sum
+=
ref
[
idx
];
return
sum
;
...
...
Write
Preview
Supports
Markdown
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