Skip to content
Snippets Groups Projects
Commit 766cd65f authored by Kazunori Kobayashi's avatar Kazunori Kobayashi Committed by Matthew Waters
Browse files

omxvideodec: Use GST_VIDEO_FRAME_PLANE_STRIDE() to get output buffer's stride

GST_VIDEO_FRAME_PLANE_STRIDE() should be used to get the actual buffer stride,
as reported in the buffers's GstVideoMeta, when copying data to that buffer.

https://bugzilla.gnome.org/show_bug.cgi?id=768173
parent 7d52ad84
No related branches found
No related tags found
No related merge requests found
......@@ -515,7 +515,7 @@ gst_omx_video_dec_fill_buffer (GstOMXVideoDec * self,
data = src;
for (h = 0; h < dst_height[p]; h++) {
memcpy (dst, data, dst_width[p]);
dst += GST_VIDEO_INFO_PLANE_STRIDE (vinfo, p);
dst += GST_VIDEO_FRAME_PLANE_STRIDE (&frame, p);
data += src_stride[p];
}
src += src_size[p];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment