+2005-11-21 Jan Schmidt <thaytan@mad.scientist.com>
+
+ * 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 <tim at centricular dot net>
* gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
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
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
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 */
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);
}
}
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;
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
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
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);
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);
}
}
}
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
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) {
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;
}