summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog9
-rw-r--r--ext/aalib/gstaasink.c6
-rw-r--r--ext/mikmod/gstmikmod.c4
-rw-r--r--gst/goom/gstgoom.c6
4 files changed, 17 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index e7847abf..16e65266 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2005-11-21 Jan Schmidt <thaytan@mad.scientist.com>
+
+ * 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)
+
2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
* ext/aalib/gstaasink.c: (gst_aasink_setcaps):
diff --git a/ext/aalib/gstaasink.c b/ext/aalib/gstaasink.c
index aec94295..d9c95982 100644
--- a/ext/aalib/gstaasink.c
+++ b/ext/aalib/gstaasink.c
@@ -238,9 +238,9 @@ gst_aasink_fixate (GstPad * pad, GstCaps * caps)
structure = gst_caps_get_structure (caps, 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);
}
static gboolean
diff --git a/ext/mikmod/gstmikmod.c b/ext/mikmod/gstmikmod.c
index b9a70ac3..db83dc46 100644
--- a/ext/mikmod/gstmikmod.c
+++ b/ext/mikmod/gstmikmod.c
@@ -253,9 +253,9 @@ gst_mikmod_srcfixate (GstPad * pad, const GstCaps * caps)
ret = gst_caps_copy (caps);
structure = gst_caps_get_structure (ret, 0);
- if (gst_caps_structure_fixate_field_nearest_int (structure, "channels", 2))
+ if (gst_structure_fixate_field_nearest_int (structure, "channels", 2))
return ret;
- if (gst_caps_structure_fixate_field_nearest_int (structure, "rate", 44100))
+ if (gst_structure_fixate_field_nearest_int (structure, "rate", 44100))
return ret;
gst_caps_free (ret);
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);