Skip to content
GitLab
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
c1f611be
Commit
c1f611be
authored
Feb 01, 2013
by
Yaowu Xu
Committed by
Gerrit Code Review
Feb 01, 2013
Browse files
Merge "fix a small bug in 16 point forward dct" into experimental
parents
c94e55ad
ab1cad9b
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_dct.c
View file @
c1f611be
...
...
@@ -1288,7 +1288,7 @@ static void dct16x16_1d(int16_t input[16], int16_t output[16],
output
[
15
]
=
(
intermediate
[
11
]
+
intermediate
[
12
]
+
output_rounding
)
>>
output_shift
;
output
[
1
]
=
-
(
intermediate
[
1
1
]
-
intermediate
[
1
2
]
+
output_rounding
)
output
[
1
]
=
(
intermediate
[
1
2
]
-
intermediate
[
1
1
]
+
output_rounding
)
>>
output_shift
;
output
[
7
]
=
(
2
*
(
intermediate
[
13
]
*
C8
)
+
final_rounding
)
>>
final_shift
;
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment