mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
videoblend: use correct stride when scaling
This commit is contained in:
parent
11a494d5c9
commit
d03f926162
1 changed files with 4 additions and 3 deletions
|
@ -161,8 +161,8 @@ gst_video_blend_scale_linear_RGBA (GstVideoInfo * src, GstBuffer * src_buffer,
|
|||
int j;
|
||||
int x;
|
||||
int dest_size;
|
||||
guint dest_stride = dest_width * 4;
|
||||
guint src_stride = src->width * 4;
|
||||
guint dest_stride;
|
||||
guint src_stride;
|
||||
guint8 *dest_pixels;
|
||||
guint8 *tmpbuf = g_malloc (dest_width * 8 * 4);
|
||||
GstVideoFrame src_frame, dest_frame;
|
||||
|
@ -188,7 +188,8 @@ gst_video_blend_scale_linear_RGBA (GstVideoInfo * src, GstBuffer * src_buffer,
|
|||
else
|
||||
x_increment = ((src->width - 1) << 16) / (dest_width - 1) - 1;
|
||||
|
||||
dest_size = dest_width * 4;
|
||||
dest_size = dest_stride = dest_width * 4;
|
||||
src_stride = GST_VIDEO_FRAME_PLANE_STRIDE (&src_frame, 0);
|
||||
|
||||
#define LINE(x) ((tmpbuf) + (dest_size)*((x)&1))
|
||||
|
||||
|
|
Loading…
Reference in a new issue