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
c539ec02
Commit
c539ec02
authored
Jun 20, 2015
by
Jingning Han
Committed by
Gerrit Code Review
Jun 20, 2015
Browse files
Merge "Add dynamic range comment to vp9_int_pro_col"
parents
90c9ede8
8e8bc5f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_avg.c
View file @
c539ec02
...
...
@@ -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