+2005-02-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
+
+ * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
+ Kick the hell out of gcc for not warning me about a symbol conflict.
+
2005-02-22 Luca Ognibene <luogni@tin.it>
Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
static GList *device_combinations;
GList *padtempllist;
gint openmode = O_RDONLY;
- gboolean mixer = FALSE;
+ gboolean is_mixer = FALSE;
/* Ok, so how do we open the device? We assume that we have (max.) one
* pad, and if this is a sinkpad, we're osssink (w). else, we're osssrc
if (GST_PAD_TEMPLATE_DIRECTION (firstpadtempl) == GST_PAD_SINK) {
openmode = O_WRONLY;
}
- mixer = TRUE;
+ is_mixer = TRUE;
}
if (!init && !check) {
/* we just check the dsp. we assume the mixer always works.
* we don't need a mixer anyway (says OSS)... If we are a
* mixer element, we use the mixer anyway. */
- if ((fd = open (mixer ? mixer :
+ if ((fd = open (is_mixer ? mixer :
dsp, openmode | O_NONBLOCK)) > 0 || errno == EBUSY) {
GstOssDeviceCombination *combi;
combi = g_new0 (GstOssDeviceCombination, 1);
combi->dsp = dsp;
combi->mixer = mixer;
- combi->dev = mixer ? mixer_dev : dsp_dev;
+ combi->dev = is_mixer ? mixer_dev : dsp_dev;
device_combinations = device_combination_append (device_combinations,
combi);
} else {