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

ChangeLog
sys/v4l2/gstv4l2src.c

index 1d16487..dc12697 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,11 @@
 2006-08-30  Edgard Lima <edgard.lima@indt.org.br>
 
        * sys/v4l2/gstv4l2src.c:
+       Another small fix to set_caps function (sucks copy/paste error).
+       
+2006-08-30  Edgard Lima <edgard.lima@indt.org.br>
+
+       * sys/v4l2/gstv4l2src.c:
        Send new_segment in GST_FORMAT_TIME instead of in GST_FORMAT_BYTES.
 
 2006-08-30  Edgard Lima <edgard.lima@indt.org.br>
index b1263fd..ff83b0f 100644 (file)
@@ -825,9 +825,7 @@ gst_v4l2src_set_caps (GstBaseSrc * src, GstCaps * caps)
     gst_structure_set (structure,
         "width", G_TYPE_INT, w,
         "height", G_TYPE_INT, h,
-        "framerate", GST_TYPE_FRACTION,
-        gst_value_get_fraction_numerator (framerate),
-        gst_value_get_fraction_denominator (framerate), NULL);
+        "framerate", GST_TYPE_FRACTION, fps_n, fps_d, NULL);
   } else {
     gst_structure_set (structure,
         "width", G_TYPE_INT, w, "height", G_TYPE_INT, h, NULL);
@@ -847,9 +845,7 @@ gst_v4l2src_set_caps (GstBaseSrc * src, GstCaps * caps)
       gst_structure_set (structure,
           "width", G_TYPE_INT, w,
           "height", G_TYPE_INT, h,
-          "framerate", GST_TYPE_FRACTION,
-          gst_value_get_fraction_numerator (framerate),
-          gst_value_get_fraction_denominator (framerate), NULL);
+          "framerate", GST_TYPE_FRACTION, v4l2src->fps_n, v4l2src->fps_d, NULL);
     }
   }