Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
aom-rav1e
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
aom-rav1e
Commits
c57816fb
Commit
c57816fb
authored
8 years ago
by
Yaowu Xu
Committed by
Gerrit Code Review
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge "vp10_highbd_quantize_fp: use const consistently" into nextgenv2
parents
9df7c254
f9efcb34
No related branches found
Branches containing commit
No related tags found
2 merge requests
!6
Rav1e 11 yushin 1
,
!3
Rav1e 10 yushin
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vp10/encoder/quantize.c
+2
-2
2 additions, 2 deletions
vp10/encoder/quantize.c
vp10/encoder/x86/vp10_highbd_quantize_sse4.c
+1
-1
1 addition, 1 deletion
vp10/encoder/x86/vp10_highbd_quantize_sse4.c
with
3 additions
and
3 deletions
vp10/encoder/quantize.c
+
2
−
2
View file @
c57816fb
...
...
@@ -982,7 +982,7 @@ void vp10_highbd_quantize_fp_c(const tran_low_t *coeff_ptr,
const
int16_t
*
dequant_ptr
,
uint16_t
*
eob_ptr
,
const
int16_t
*
scan
,
const
int16_t
*
iscan
,
const
int
log_scale
)
{
const
int16_t
*
iscan
,
int
log_scale
)
{
int
i
;
int
eob
=
-
1
;
const
int
scale
=
1
<<
log_scale
;
...
...
@@ -1069,7 +1069,7 @@ void vp10_highbd_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs,
tran_low_t
*
qcoeff_ptr
,
tran_low_t
*
dqcoeff_ptr
,
const
int16_t
*
dequant_ptr
,
uint16_t
*
eob_ptr
,
const
int16_t
*
scan
,
const
int16_t
*
iscan
,
const
int
log_scale
)
{
const
int16_t
*
iscan
,
int
log_scale
)
{
int
i
,
non_zero_count
=
(
int
)
n_coeffs
,
eob
=
-
1
;
int
zbins
[
2
]
=
{
zbin_ptr
[
0
],
zbin_ptr
[
1
]};
int
round
[
2
]
=
{
round_ptr
[
0
],
round_ptr
[
1
]};
...
...
This diff is collapsed.
Click to expand it.
vp10/encoder/x86/vp10_highbd_quantize_sse4.c
+
1
−
1
View file @
c57816fb
...
...
@@ -119,7 +119,7 @@ void vp10_highbd_quantize_fp_sse4_1(const tran_low_t *coeff_ptr,
uint16_t
*
eob_ptr
,
const
int16_t
*
scan
,
const
int16_t
*
iscan
,
const
int
log_scale
)
{
int
log_scale
)
{
__m128i
coeff
[
2
],
qcoeff
[
2
],
dequant
[
2
],
qparam
[
3
],
coeff_sign
;
__m128i
eob
=
_mm_setzero_si128
();
const
tran_low_t
*
src
=
coeff_ptr
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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