Rename gst_caps_structure_fixate_* to gst_structure_fixate_* (#322027)
authorJan Schmidt <thaytan@mad.scientist.com>
Mon, 21 Nov 2005 14:33:11 +0000 (14:33 +0000)
committerJan Schmidt <thaytan@mad.scientist.com>
Mon, 21 Nov 2005 14:33:11 +0000 (14:33 +0000)
Original commit message from CVS:
* ext/audioresample/gstaudioresample.c:
* ext/polyp/polypsink.c: (gst_polypsink_sink_fixate):
* gst/librfb/gstrfbsrc.c: (gst_rfbsrc_fixate):
* gst/modplug/gstmodplug.cc:
* sys/glsink/glimagesink.c: (gst_glimagesink_fixate):
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_fixate):
Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
(#322027)

sys/v4l2/gstv4l2src.c

index 7d0e16a2c9a232ff5f1ca50994f540477810a5ef..ef0f2be7a7188bdc393ab840b713d5c18defaedf 100644 (file)
@@ -690,8 +690,7 @@ gst_v4l2src_fixate (GstPad * pad, const GstCaps * const_caps)
   for (i = 0; i < gst_caps_get_size (caps); i++) {
     structure = gst_caps_get_structure (caps, i);
     changed |=
-        gst_caps_structure_fixate_field_nearest_int (structure, "width",
-        G_MAXINT);
+        gst_structure_fixate_field_nearest_int (structure, "width", G_MAXINT);
   }
   if (changed)
     return caps;
@@ -699,8 +698,7 @@ gst_v4l2src_fixate (GstPad * pad, const GstCaps * const_caps)
   for (i = 0; i < gst_caps_get_size (caps); i++) {
     structure = gst_caps_get_structure (caps, i);
     changed |=
-        gst_caps_structure_fixate_field_nearest_int (structure, "height",
-        G_MAXINT);
+        gst_structure_fixate_field_nearest_int (structure, "height", G_MAXINT);
   }
   if (changed)
     return caps;