Commit 01247f67 authored by John Koleszar's avatar John Koleszar
Browse files

Fix overlapping writes by copy_and_extend_plane

Broken by refactoring commit 180cd5fa

Change-Id: I307f6e54d93219a31e7336f1633103ecb25e4832
parent e7b3b692
No related merge requests found
Showing with 1 addition and 1 deletion
...@@ -78,7 +78,7 @@ void vp9_copy_and_extend_frame(const YV12_BUFFER_CONFIG *src, ...@@ -78,7 +78,7 @@ void vp9_copy_and_extend_frame(const YV12_BUFFER_CONFIG *src,
copy_and_extend_plane(src->v_buffer, src->uv_stride, copy_and_extend_plane(src->v_buffer, src->uv_stride,
dst->v_buffer, dst->uv_stride, dst->v_buffer, dst->uv_stride,
src->uv_width, src->uv_height, src->uv_width, src->uv_height,
et_y, el_y, eb_uv, er_uv); et_uv, el_uv, eb_uv, er_uv);
} }
void vp9_copy_and_extend_frame_with_rect(const YV12_BUFFER_CONFIG *src, void vp9_copy_and_extend_frame_with_rect(const YV12_BUFFER_CONFIG *src,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment