mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
image: fix source stride in picture copy.
This commit is contained in:
parent
ab94048ea0
commit
de7432f712
1 changed files with 1 additions and 1 deletions
|
@ -1007,7 +1007,7 @@ memcpy_pic(
|
|||
for (i = 0; i < height; i++) {
|
||||
memcpy(dst, src, len);
|
||||
dst += dst_stride;
|
||||
src += dst_stride;
|
||||
src += src_stride;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue