A small fix to set_caps function.
authorEdgard Lima <edgard.lima@indt.org.br>
Wed, 30 Aug 2006 11:36:06 +0000 (11:36 +0000)
committerEdgard Lima <edgard.lima@indt.org.br>
Wed, 30 Aug 2006 11:36:06 +0000 (11:36 +0000)
Original commit message from CVS:
A small fix to set_caps function.

ChangeLog
sys/v4l2/gstv4l2src.c

index 97bb3c1..5e2268e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-08-30  Edgard Lima <edgard.lima@indt.org.br>
+
+       * sys/v4l2/gstv4l2src.c:
+       A small fix to set_caps function.
+
 2006-08-30  Edward Hervey  <edward@fluendo.com>
 
        * gst/qtdemux/qtdemux.c:
index 3ad39a4..9837ad8 100644 (file)
@@ -829,8 +829,7 @@ gst_v4l2src_set_caps (GstBaseSrc * src, GstCaps * caps)
         gst_value_get_fraction_denominator (framerate), NULL);
   } else {
     gst_structure_set (structure,
-        "width", G_TYPE_INT, w,
-        "height", G_TYPE_INT, h, "framerate", GST_TYPE_FRACTION, NULL);
+        "width", G_TYPE_INT, w, "height", G_TYPE_INT, h, NULL);
   }
 
   if (!gst_v4l2src_capture_init (v4l2src))