v4l2object: fix debug message if driver rejects stride
authorGuillaume Desmottes <guillaume.desmottes@collabora.com>
Wed, 17 Apr 2019 06:16:10 +0000 (11:46 +0530)
committerGuillaume Desmottes <guillaume.desmottes@collabora.com>
Sat, 2 Nov 2019 11:47:43 +0000 (12:47 +0100)
The 'want' and 'got' strides were inversed.

sys/v4l2/gstv4l2object.c

index 6835ed5475e5a20ade9deea8bea8109c9da45c85..61f899d2de56b848dcf67da8be3e7a3bd332c782 100644 (file)
@@ -4779,8 +4779,8 @@ gst_v4l2_object_try_import (GstV4l2Object * obj, GstBuffer * buffer)
           if (format.fmt.pix_mp.plane_fmt[i].bytesperline != wanted_stride[i]) {
             GST_DEBUG_OBJECT (obj->dbg_obj,
                 "[%i] Driver did not accept the new stride (wants %i, got %i)",
-                i, format.fmt.pix_mp.plane_fmt[i].bytesperline,
-                wanted_stride[i]);
+                i, wanted_stride[i],
+                format.fmt.pix_mp.plane_fmt[i].bytesperline);
             return FALSE;
           }
         }
@@ -4788,7 +4788,7 @@ gst_v4l2_object_try_import (GstV4l2Object * obj, GstBuffer * buffer)
         if (format.fmt.pix.bytesperline != wanted_stride[0]) {
           GST_DEBUG_OBJECT (obj->dbg_obj,
               "Driver did not accept the new stride (wants %i, got %i)",
-              format.fmt.pix.bytesperline, wanted_stride[0]);
+              wanted_stride[0], format.fmt.pix.bytesperline);
           return FALSE;
         }
       }