diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2005-11-21 14:33:11 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2005-11-21 14:33:11 +0000 |
commit | 8a7c7d077f64ea13efefc7374b1c565383b32272 (patch) | |
tree | 20b06d4d4483f84677160d4d753eae0326cccd09 /ext | |
parent | 7f1b45229fa255f362ae560a785f9d99af14bc14 (diff) | |
download | gst-plugins-bad-8a7c7d077f64ea13efefc7374b1c565383b32272.tar.gz gst-plugins-bad-8a7c7d077f64ea13efefc7374b1c565383b32272.tar.bz2 gst-plugins-bad-8a7c7d077f64ea13efefc7374b1c565383b32272.zip |
Rename gst_caps_structure_fixate_* to gst_structure_fixate_* (#322027)
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)
Diffstat (limited to 'ext')
-rw-r--r-- | ext/audioresample/gstaudioresample.c | 2 | ||||
-rw-r--r-- | ext/polyp/polypsink.c | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/ext/audioresample/gstaudioresample.c b/ext/audioresample/gstaudioresample.c index 363acd9b..46944b80 100644 --- a/ext/audioresample/gstaudioresample.c +++ b/ext/audioresample/gstaudioresample.c @@ -212,7 +212,7 @@ static GstCaps *gst_audioresample_fixate (GstPad * pad, const GstCaps * caps) copy = gst_caps_copy (caps); structure = gst_caps_get_structure (copy, 0); if (rate) { - if (gst_caps_structure_fixate_field_nearest_int (structure, "rate", rate)) { + if (gst_structure_fixate_field_nearest_int (structure, "rate", rate)) { return copy; } } diff --git a/ext/polyp/polypsink.c b/ext/polyp/polypsink.c index 8afc8708..a18569b4 100644 --- a/ext/polyp/polypsink.c +++ b/ext/polyp/polypsink.c @@ -575,10 +575,10 @@ gst_polypsink_sink_fixate (GstPad * pad, const GstCaps * caps) NULL); structure = gst_caps_get_structure (newcaps, 0); - if (gst_caps_structure_fixate_field_nearest_int (structure, "rate", 44100) || - gst_caps_structure_fixate_field_nearest_int (structure, "depth", 16) || - gst_caps_structure_fixate_field_nearest_int (structure, "width", 16) || - gst_caps_structure_fixate_field_nearest_int (structure, "channels", 2)) + if (gst_structure_fixate_field_nearest_int (structure, "rate", 44100) || + gst_structure_fixate_field_nearest_int (structure, "depth", 16) || + gst_structure_fixate_field_nearest_int (structure, "width", 16) || + gst_structure_fixate_field_nearest_int (structure, "channels", 2)) return newcaps; gst_caps_free (newcaps); |