diff --git a/ChangeLog b/ChangeLog index 1830bdef6c..c4a9cd0f7a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,24 @@ +2005-11-21 Jan Schmidt + + * ext/libvisual/visual.c: (get_buffer): + * gst-libs/gst/audio/gstbaseaudiosrc.c: + (gst_base_audio_src_fixate): + * gst/audioconvert/gstaudioconvert.c: + (gst_audio_convert_fixate_caps): + * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate): + * gst/audiotestsrc/gstaudiotestsrc.c: + (gst_audiotestsrc_src_fixate): + * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate): + * gst/videorate/gstvideorate.c: (gst_videorate_setcaps): + * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps): + * gst/videotestsrc/gstvideotestsrc.c: + (gst_videotestsrc_src_fixate): + * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): + * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate): + Rename gst_caps_structure_fixate_* to gst_structure_fixate_* + (#322027) + + 2005-11-21 Tim-Philipp Müller * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps), diff --git a/ext/libvisual/visual.c b/ext/libvisual/visual.c index 07526f5eb8..44ea87e1cd 100644 --- a/ext/libvisual/visual.c +++ b/ext/libvisual/visual.c @@ -326,9 +326,9 @@ get_buffer (GstVisual * visual, GstBuffer ** outbuf) s = gst_caps_get_structure (caps, 0); - gst_caps_structure_fixate_field_nearest_int (s, "width", 320); - gst_caps_structure_fixate_field_nearest_int (s, "height", 240); - gst_caps_structure_fixate_field_nearest_double (s, "framerate", 30.0); + gst_structure_fixate_field_nearest_int (s, "width", 320); + gst_structure_fixate_field_nearest_int (s, "height", 240); + gst_structure_fixate_field_nearest_double (s, "framerate", 30.0); gst_pad_fixate_caps (visual->srcpad, caps); } else diff --git a/gst-libs/gst/audio/gstbaseaudiosrc.c b/gst-libs/gst/audio/gstbaseaudiosrc.c index b1d14b417e..6008a650d5 100644 --- a/gst-libs/gst/audio/gstbaseaudiosrc.c +++ b/gst-libs/gst/audio/gstbaseaudiosrc.c @@ -207,13 +207,13 @@ gst_base_audio_src_fixate (GstPad * pad, GstCaps * caps) s = gst_caps_get_structure (caps, 0); - gst_caps_structure_fixate_field_nearest_int (s, "rate", 44100); - gst_caps_structure_fixate_field_nearest_int (s, "channels", 2); - gst_caps_structure_fixate_field_nearest_int (s, "depth", 16); - gst_caps_structure_fixate_field_nearest_int (s, "width", 16); + gst_structure_fixate_field_nearest_int (s, "rate", 44100); + gst_structure_fixate_field_nearest_int (s, "channels", 2); + gst_structure_fixate_field_nearest_int (s, "depth", 16); + gst_structure_fixate_field_nearest_int (s, "width", 16); gst_structure_set (s, "signed", G_TYPE_BOOLEAN, TRUE, NULL); if (gst_structure_has_field (s, "endianness")) - gst_caps_structure_fixate_field_nearest_int (s, "endianness", G_BYTE_ORDER); + gst_structure_fixate_field_nearest_int (s, "endianness", G_BYTE_ORDER); } static gboolean diff --git a/gst/audioconvert/gstaudioconvert.c b/gst/audioconvert/gstaudioconvert.c index 8afa5db607..26b7120646 100644 --- a/gst/audioconvert/gstaudioconvert.c +++ b/gst/audioconvert/gstaudioconvert.c @@ -372,23 +372,22 @@ gst_audio_convert_fixate_caps (GstBaseTransform * base, if (gst_structure_get_int (ins, "channels", &channels)) { if (gst_structure_has_field (outs, "channels")) { - gst_caps_structure_fixate_field_nearest_int (outs, "channels", channels); + gst_structure_fixate_field_nearest_int (outs, "channels", channels); } } if (gst_structure_get_int (ins, "rate", &rate)) { if (gst_structure_has_field (outs, "rate")) { - gst_caps_structure_fixate_field_nearest_int (outs, "rate", rate); + gst_structure_fixate_field_nearest_int (outs, "rate", rate); } } if (gst_structure_get_int (ins, "endianness", &endianness)) { if (gst_structure_has_field (outs, "endianness")) { - gst_caps_structure_fixate_field_nearest_int (outs, "endianness", - endianness); + gst_structure_fixate_field_nearest_int (outs, "endianness", endianness); } } if (gst_structure_get_int (ins, "width", &width)) { if (gst_structure_has_field (outs, "width")) { - gst_caps_structure_fixate_field_nearest_int (outs, "width", width); + gst_structure_fixate_field_nearest_int (outs, "width", width); } } else { /* this is not allowed */ @@ -396,18 +395,18 @@ gst_audio_convert_fixate_caps (GstBaseTransform * base, if (gst_structure_get_int (ins, "depth", &depth)) { if (gst_structure_has_field (outs, "depth")) { - gst_caps_structure_fixate_field_nearest_int (outs, "depth", depth); + gst_structure_fixate_field_nearest_int (outs, "depth", depth); } } else { /* set depth as width */ if (gst_structure_has_field (outs, "depth")) { - gst_caps_structure_fixate_field_nearest_int (outs, "depth", width); + gst_structure_fixate_field_nearest_int (outs, "depth", width); } } if (gst_structure_get_boolean (ins, "signed", &signedness)) { if (gst_structure_has_field (outs, "signed")) { - gst_caps_structure_fixate_field_boolean (outs, "signed", signedness); + gst_structure_fixate_field_boolean (outs, "signed", signedness); } } diff --git a/gst/audioscale/gstaudioscale.c b/gst/audioscale/gstaudioscale.c index d648580837..1c0883f791 100644 --- a/gst/audioscale/gstaudioscale.c +++ b/gst/audioscale/gstaudioscale.c @@ -256,7 +256,7 @@ gst_audioscale_fixate (GstPad * pad, const GstCaps * caps) copy = gst_caps_copy (caps); structure = gst_caps_get_structure (copy, 0); - if (gst_caps_structure_fixate_field_nearest_int (structure, "rate", rate)) + if (gst_structure_fixate_field_nearest_int (structure, "rate", rate)) return copy; gst_caps_free (copy); return NULL; diff --git a/gst/audiotestsrc/gstaudiotestsrc.c b/gst/audiotestsrc/gstaudiotestsrc.c index 4b43563a63..6750a94dcb 100644 --- a/gst/audiotestsrc/gstaudiotestsrc.c +++ b/gst/audiotestsrc/gstaudiotestsrc.c @@ -212,7 +212,7 @@ gst_audiotestsrc_src_fixate (GstPad * pad, GstCaps * caps) structure = gst_caps_get_structure (caps, 0); - gst_caps_structure_fixate_field_nearest_int (structure, "rate", 44100); + gst_structure_fixate_field_nearest_int (structure, "rate", 44100); } static gboolean diff --git a/gst/sine/gstsinesrc.c b/gst/sine/gstsinesrc.c index 86bda70f4b..d433c00804 100644 --- a/gst/sine/gstsinesrc.c +++ b/gst/sine/gstsinesrc.c @@ -161,7 +161,7 @@ gst_sinesrc_src_fixate (GstPad * pad, GstCaps * caps) structure = gst_caps_get_structure (caps, 0); - gst_caps_structure_fixate_field_nearest_int (structure, "rate", 44100); + gst_structure_fixate_field_nearest_int (structure, "rate", 44100); } static gboolean diff --git a/gst/videorate/gstvideorate.c b/gst/videorate/gstvideorate.c index 8f1b4418c8..5881045590 100644 --- a/gst/videorate/gstvideorate.c +++ b/gst/videorate/gstvideorate.c @@ -315,7 +315,7 @@ gst_videorate_setcaps (GstPad * pad, GstCaps * caps) structure = gst_caps_get_structure (caps, 0); /* and fixate */ - gst_caps_structure_fixate_field_nearest_int (structure, "framerate", fps); + gst_structure_fixate_field_nearest_int (structure, "framerate", fps); gst_structure_get_double (structure, "framerate", &fps); diff --git a/gst/videoscale/gstvideoscale.c b/gst/videoscale/gstvideoscale.c index b6645cdecf..d9c91f3c43 100644 --- a/gst/videoscale/gstvideoscale.c +++ b/gst/videoscale/gstvideoscale.c @@ -536,19 +536,19 @@ gst_videoscale_fixate_caps (GstBaseTransform * base, GstPadDirection direction, GST_DEBUG_OBJECT (base, "scaling to %dx%d", w, h); /* now fixate */ - gst_caps_structure_fixate_field_nearest_int (outs, "width", w); - gst_caps_structure_fixate_field_nearest_int (outs, "height", h); + gst_structure_fixate_field_nearest_int (outs, "width", w); + gst_structure_fixate_field_nearest_int (outs, "height", h); } else { gint width, height; if (gst_structure_get_int (ins, "width", &width)) { if (gst_structure_has_field (outs, "width")) { - gst_caps_structure_fixate_field_nearest_int (outs, "width", width); + gst_structure_fixate_field_nearest_int (outs, "width", width); } } if (gst_structure_get_int (ins, "height", &height)) { if (gst_structure_has_field (outs, "height")) { - gst_caps_structure_fixate_field_nearest_int (outs, "height", height); + gst_structure_fixate_field_nearest_int (outs, "height", height); } } } diff --git a/gst/videotestsrc/gstvideotestsrc.c b/gst/videotestsrc/gstvideotestsrc.c index 36907ff6d5..e947e25323 100644 --- a/gst/videotestsrc/gstvideotestsrc.c +++ b/gst/videotestsrc/gstvideotestsrc.c @@ -176,9 +176,9 @@ gst_videotestsrc_src_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 void diff --git a/sys/v4l/gstv4lsrc.c b/sys/v4l/gstv4lsrc.c index 78da9003f1..3f5a4aa027 100644 --- a/sys/v4l/gstv4lsrc.c +++ b/sys/v4l/gstv4lsrc.c @@ -234,12 +234,9 @@ gst_v4lsrc_fixate (GstPad * pad, GstCaps * caps) structure = gst_caps_get_structure (caps, i); const GValue *v; - gst_caps_structure_fixate_field_nearest_int (structure, "width", - targetwidth); - gst_caps_structure_fixate_field_nearest_int (structure, "height", - targetheight); - gst_caps_structure_fixate_field_nearest_double (structure, "framerate", - 7.5); + gst_structure_fixate_field_nearest_int (structure, "width", targetwidth); + gst_structure_fixate_field_nearest_int (structure, "height", targetheight); + gst_structure_fixate_field_nearest_double (structure, "framerate", 7.5); v = gst_structure_get_value (structure, "format"); if (v && G_VALUE_TYPE (v) != GST_TYPE_FOURCC) { diff --git a/sys/xvimage/xvimagesink.c b/sys/xvimage/xvimagesink.c index 5c0d195430..553ac399af 100644 --- a/sys/xvimage/xvimagesink.c +++ b/sys/xvimage/xvimagesink.c @@ -1240,14 +1240,13 @@ gst_xvimagesink_fixate (GstPad * pad, const GstCaps * caps) newcaps = gst_caps_copy (caps); structure = gst_caps_get_structure (newcaps, 0); - if (gst_caps_structure_fixate_field_nearest_int (structure, "width", 320)) { + if (gst_structure_fixate_field_nearest_int (structure, "width", 320)) { return newcaps; } - if (gst_caps_structure_fixate_field_nearest_int (structure, "height", 240)) { + if (gst_structure_fixate_field_nearest_int (structure, "height", 240)) { return newcaps; } - if (gst_caps_structure_fixate_field_nearest_double (structure, "framerate", - 30.0)) { + if (gst_structure_fixate_field_nearest_double (structure, "framerate", 30.0)) { return newcaps; }