From 915732f5b5902ee6bc592c4b1e1cfd45baf79ca5 Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Fri, 7 Dec 2007 20:07:49 +0000 Subject: sys/oss/: Post decent (and translated) error message when we can't open the audio device for some reason. Original commit message from CVS: * sys/oss/gstossaudio.c: (plugin_init): * sys/oss/gstosssink.c: (gst_oss_sink_open): * sys/oss/gstosssrc.c: (gst_oss_src_open): Post decent (and translated) error message when we can't open the audio device for some reason. --- sys/oss/gstosssrc.c | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) (limited to 'sys/oss/gstosssrc.c') diff --git a/sys/oss/gstosssrc.c b/sys/oss/gstosssrc.c index 3d8f3f75..36aa92dd 100644 --- a/sys/oss/gstosssrc.c +++ b/sys/oss/gstosssrc.c @@ -67,6 +67,8 @@ #include "gstosssrc.h" #include "common.h" +#include + GST_DEBUG_CATEGORY_EXTERN (oss_debug); #define GST_CAT_DEFAULT oss_debug @@ -342,8 +344,14 @@ gst_oss_src_open (GstAudioSrc * asrc) mode |= O_NONBLOCK; oss->fd = open (oss->device, mode, 0); - if (oss->fd == -1) - goto open_failed; + if (oss->fd == -1) { + switch (errno) { + case EACCES: + goto no_permission; + default: + goto open_failed; + } + } if (!oss->mixer) { oss->mixer = gst_ossmixer_new ("/dev/mixer", GST_OSS_MIXER_CAPTURE); @@ -355,11 +363,20 @@ gst_oss_src_open (GstAudioSrc * asrc) } return TRUE; +no_permission: + { + GST_ELEMENT_ERROR (oss, RESOURCE, OPEN_READ, + (_("Could not open audio device for recording." + "You don't have permission to open the device.")), + GST_ERROR_SYSTEM); + return FALSE; + } open_failed: { GST_ELEMENT_ERROR (oss, RESOURCE, OPEN_READ, + (_("Could not open audio device for recording.")), ("Unable to open device %s for recording: %s", - oss->device, g_strerror (errno)), (NULL)); + oss->device, g_strerror (errno))); return FALSE; } } -- cgit