diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-11-25 22:01:56 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-11-25 22:01:56 +0000 |
commit | 7ef126b0d3d816fe3b69bc797fc8559bb5aa6bac (patch) | |
tree | f63489212ba733937337f44c05ed394273119c7b /src/xine-engine/load_plugins.c | |
parent | b95792ae75b5d77a9183f7a45f76d14c7e30b74a (diff) | |
download | xine-lib-7ef126b0d3d816fe3b69bc797fc8559bb5aa6bac.tar.gz xine-lib-7ef126b0d3d816fe3b69bc797fc8559bb5aa6bac.tar.bz2 |
return of the arts audio output plugin
CVS patchset: 3367
CVS date: 2002/11/25 22:01:56
Diffstat (limited to 'src/xine-engine/load_plugins.c')
-rw-r--r-- | src/xine-engine/load_plugins.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index 77132277d..058c5a413 100644 --- a/src/xine-engine/load_plugins.c +++ b/src/xine-engine/load_plugins.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: load_plugins.c,v 1.115 2002/11/23 10:56:23 mroi Exp $ + * $Id: load_plugins.c,v 1.116 2002/11/25 22:02:15 guenter Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -971,8 +971,10 @@ static ao_driver_t *_load_audio_driver (xine_t *this, plugin_node_t *node, if (!node->plugin_class) node->plugin_class = _load_plugin_class (this, node->filename, node->info, data); - if (!node->plugin_class) + if (!node->plugin_class) { + printf ("load_plugins: failed to load plugin class %s\n", node->info->id); return NULL; + } driver = ((audio_driver_class_t *)node->plugin_class)->open_plugin(node->plugin_class, data); |