summaryrefslogtreecommitdiffstats
path: root/gst/goom
diff options
context:
space:
mode:
authorJan Schmidt <thaytan@mad.scientist.com>2005-11-21 14:31:05 +0000
committerJan Schmidt <thaytan@mad.scientist.com>2005-11-21 14:31:05 +0000
commitc8c73fd8e32c0016d66c760223be86df4b961354 (patch)
tree09846a3ce25286dbf3e12d893fc22ebbf7c6cb48 /gst/goom
parentc36b3310f3a16535b4e0757e05d5a849f8cf859a (diff)
Rename gst_caps_structure_fixate_* to gst_structure_fixate_* (#322027)
Original commit message from CVS: * ext/aalib/gstaasink.c: (gst_aasink_fixate): * ext/mikmod/gstmikmod.c: (gst_mikmod_srcfixate): * gst/goom/gstgoom.c: (gst_goom_src_negotiate): * sys/osxvideo/osxvideosink.m: Rename gst_caps_structure_fixate_* to gst_structure_fixate_* (#322027)
Diffstat (limited to 'gst/goom')
-rw-r--r--gst/goom/gstgoom.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/goom/gstgoom.c b/gst/goom/gstgoom.c
index a7e7708c..8b58ab6d 100644
--- a/gst/goom/gstgoom.c
+++ b/gst/goom/gstgoom.c
@@ -260,9 +260,9 @@ gst_goom_src_negotiate (GstGoom * goom)
}
structure = gst_caps_get_structure (target, 0);
- gst_caps_structure_fixate_field_nearest_int (structure, "width", 320);
- gst_caps_structure_fixate_field_nearest_int (structure, "height", 240);
- gst_caps_structure_fixate_field_nearest_double (structure, "framerate", 30.0);
+ gst_structure_fixate_field_nearest_int (structure, "width", 320);
+ gst_structure_fixate_field_nearest_int (structure, "height", 240);
+ gst_structure_fixate_field_nearest_double (structure, "framerate", 30.0);
gst_pad_set_caps (goom->srcpad, target);
gst_caps_unref (target);