summaryrefslogtreecommitdiffstats
path: root/ext/mikmod
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 /ext/mikmod
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 'ext/mikmod')
-rw-r--r--ext/mikmod/gstmikmod.c4
1 files changed, 2 insertions, 2 deletions
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);