From c8c73fd8e32c0016d66c760223be86df4b961354 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Mon, 21 Nov 2005 14:31:05 +0000 Subject: 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) --- gst/goom/gstgoom.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gst/goom') 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); -- cgit