mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
sys/oss/gstosshelper.c: Use GST_WARNING instead of a g_critical. This situation is not caused by the application.
Original commit message from CVS: * sys/oss/gstosshelper.c: Use GST_WARNING instead of a g_critical. This situation is not caused by the application.
This commit is contained in:
parent
85a436a654
commit
dedf80a378
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2007-09-23 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* sys/oss/gstosshelper.c:
|
||||
Use GST_WARNING instead of a g_critical. This situation is not caused
|
||||
by the application.
|
||||
|
||||
2007-09-22 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* po/LINGUAS:
|
||||
|
|
|
@ -154,9 +154,10 @@ gst_oss_helper_probe_caps (gint fd)
|
|||
}
|
||||
}
|
||||
|
||||
if (gst_caps_is_empty (caps))
|
||||
if (gst_caps_is_empty (caps)) {
|
||||
/* fixme: make user-visible */
|
||||
g_critical ("Your OSS device could not be probed correctly");
|
||||
GST_WARNING ("Your OSS device could not be probed correctly");
|
||||
}
|
||||
|
||||
GST_DEBUG ("probed caps: %" GST_PTR_FORMAT, caps);
|
||||
|
||||
|
|
Loading…
Reference in a new issue