mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
cudautils: fix critical typo in gst_cuda_buffer_fallback_copy
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2194>
This commit is contained in:
parent
3d9f25d322
commit
c68c40a6bc
1 changed files with 1 additions and 1 deletions
|
@ -706,7 +706,7 @@ gst_cuda_buffer_fallback_copy (GstBuffer * dst, const GstVideoInfo * dst_info,
|
|||
}
|
||||
|
||||
/* src and dst resolutions can be different, pick min value */
|
||||
for (i = 0; GST_VIDEO_FRAME_N_PLANES (&dst_frame); i++) {
|
||||
for (i = 0; i < GST_VIDEO_FRAME_N_PLANES (&dst_frame); i++) {
|
||||
guint dst_width_in_bytes, src_width_in_bytes;
|
||||
guint dst_height, src_height;
|
||||
guint width_in_bytes, height;
|
||||
|
|
Loading…
Reference in a new issue