Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
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
ad3b12f8
Commit
ad3b12f8
authored
Jun 12, 2013
by
John Koleszar
Committed by
Gerrit Code Review
Jun 12, 2013
Browse files
Merge "Fix chroma output when scaling"
parents
1a5bb3cc
01016ff9
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_onyx_if.c
View file @
ad3b12f8
...
...
@@ -1981,7 +1981,7 @@ static void scale_and_extend_frame(YV12_BUFFER_CONFIG *src_fb,
const
int
dst_stride
=
dst_strides
[
i
];
uint8_t
*
src
=
srcs
[
i
]
+
y
/
factor
*
in_h
/
out_h
*
src_stride
+
x
/
factor
*
in_w
/
out_w
;
uint8_t
*
dst
=
dsts
[
i
]
+
y
*
dst_stride
+
x
;
uint8_t
*
dst
=
dsts
[
i
]
+
y
/
factor
*
dst_stride
+
x
/
factor
;
vp9_convolve8
(
src
,
src_stride
,
dst
,
dst_stride
,
vp9_sub_pel_filters_8
[
x_q4
&
0xf
],
16
*
in_w
/
out_w
,
...
...
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