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
29f36f7e
Commit
29f36f7e
authored
Jun 28, 2016
by
Sarah Parker
Browse files
Fix compiler warnings in yv12extend.c
Change-Id: I1f6f5b8861c4081b1f4b85c531c5d7ef0cb67bab
parent
7458f117
Changes
1
Hide whitespace changes
Inline
Side-by-side
vpx_scale/generic/yv12extend.c
View file @
29f36f7e
...
...
@@ -233,6 +233,7 @@ void vpx_extend_frame_borders_y_c(YV12_BUFFER_CONFIG *ybf) {
ext_size
+
ybf
->
y_height
-
ybf
->
y_crop_height
,
ext_size
+
ybf
->
y_width
-
ybf
->
y_crop_width
);
}
#endif // CONFIG_VP9 || CONFIG_VP10
#if CONFIG_VP9_HIGHBITDEPTH
static
void
memcpy_short_addr
(
uint8_t
*
dst8
,
const
uint8_t
*
src8
,
int
num
)
{
...
...
@@ -241,7 +242,6 @@ static void memcpy_short_addr(uint8_t *dst8, const uint8_t *src8, int num) {
memcpy
(
dst
,
src
,
num
*
sizeof
(
uint16_t
));
}
#endif // CONFIG_VP9_HIGHBITDEPTH
#endif // CONFIG_VP9 || CONFIG_VP10
// Copies the source image into the destination image and updates the
// destination's UMV borders.
...
...
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