diff options
Diffstat (limited to 'ext/audioresample')
-rw-r--r-- | ext/audioresample/gstaudioresample.c | 2 |
1 files changed, 1 insertions, 1 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; } } |