summaryrefslogtreecommitdiffstats
path: root/plugins/audiooutput/arts
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-03 02:15:56 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-03 02:15:56 +0000
commit50b48aec6ddd451a6d1709c0942477b503457663 (patch)
treea9ece53ec06fd0a2819de7a2a6de997193566626 /plugins/audiooutput/arts
downloadk3b-50b48aec6ddd451a6d1709c0942477b503457663.tar.gz
k3b-50b48aec6ddd451a6d1709c0942477b503457663.zip
Added abandoned KDE3 version of K3B
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1084400 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'plugins/audiooutput/arts')
-rw-r--r--plugins/audiooutput/arts/Makefile.am13
-rw-r--r--plugins/audiooutput/arts/k3bartsoutputplugin.cpp90
-rw-r--r--plugins/audiooutput/arts/k3bartsoutputplugin.h47
-rw-r--r--plugins/audiooutput/arts/k3bartsoutputplugin.plugin9
4 files changed, 159 insertions, 0 deletions
diff --git a/plugins/audiooutput/arts/Makefile.am b/plugins/audiooutput/arts/Makefile.am
new file mode 100644
index 0000000..6d5adf5
--- /dev/null
+++ b/plugins/audiooutput/arts/Makefile.am
@@ -0,0 +1,13 @@
+AM_CPPFLAGS = -I$(srcdir)/../../../libk3b/core -I$(srcdir)/../../../libk3b/plugin $(all_includes)
+
+kde_module_LTLIBRARIES = libk3bartsoutputplugin.la
+
+libk3bartsoutputplugin_la_SOURCES = k3bartsoutputplugin.cpp
+
+libk3bartsoutputplugin_la_LIBADD = ../../../libk3b/libk3b.la -lartsc
+libk3bartsoutputplugin_la_LDFLAGS = -avoid-version -module -no-undefined $(all_libraries)
+
+pluginsdir = $(kde_datadir)/k3b/plugins
+plugins_DATA = k3bartsoutputplugin.plugin
+
+METASOURCES = AUTO
diff --git a/plugins/audiooutput/arts/k3bartsoutputplugin.cpp b/plugins/audiooutput/arts/k3bartsoutputplugin.cpp
new file mode 100644
index 0000000..893571a
--- /dev/null
+++ b/plugins/audiooutput/arts/k3bartsoutputplugin.cpp
@@ -0,0 +1,90 @@
+/*
+ *
+ * $Id: k3bartsoutputplugin.cpp 619556 2007-01-03 17:38:12Z trueg $
+ * Copyright (C) 2004 Sebastian Trueg <trueg@k3b.org>
+ *
+ * This file is part of the K3b project.
+ * Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * See the file "COPYING" for the exact licensing terms.
+ */
+
+#include <config.h>
+
+#include "k3bartsoutputplugin.h"
+#include <k3bpluginfactory.h>
+
+#include <kdebug.h>
+
+
+K_EXPORT_COMPONENT_FACTORY( libk3bartsoutputplugin, K3bPluginFactory<K3bArtsOutputPlugin>( "k3bartsoutputplugin" ) )
+
+
+K3bArtsOutputPlugin::K3bArtsOutputPlugin( QObject* parent, const char* name )
+ : K3bAudioOutputPlugin( parent, name ),
+ m_initialized(false),
+ m_lastErrorCode(0)
+{
+}
+
+
+K3bArtsOutputPlugin::~K3bArtsOutputPlugin()
+{
+ cleanup();
+}
+
+
+int K3bArtsOutputPlugin::write( char* data, int len )
+{
+ for( int i = 0; i < len-1; i+=2 ) {
+ char b = data[i];
+ data[i] = data[i+1];
+ data[i+1] = b;
+ }
+
+ m_lastErrorCode = arts_write( m_stream, data, len );
+
+ if( m_lastErrorCode < 0 )
+ return -1;
+ else
+ return len;
+}
+
+
+void K3bArtsOutputPlugin::cleanup()
+{
+ if( m_initialized ) {
+ arts_close_stream( m_stream );
+ kdDebug() << "(K3bArtsOutputPlugin::cleanup) arts_free()" << endl;
+ arts_free();
+ kdDebug() << "(K3bArtsOutputPlugin::cleanup) arts_free() done" << endl;
+ m_initialized = false;
+ }
+}
+
+
+bool K3bArtsOutputPlugin::init()
+{
+ kdDebug() << "(K3bArtsOutputPlugin::init)" << endl;
+ if( !m_initialized ) {
+ kdDebug() << "(K3bArtsOutputPlugin::init) arts_init()" << endl;
+ m_lastErrorCode = arts_init();
+ m_initialized = ( m_lastErrorCode == 0 );
+ kdDebug() << "(K3bArtsOutputPlugin::init) arts_init() done: " << m_lastErrorCode << endl;
+ if( m_initialized )
+ m_stream = arts_play_stream( 44100, 16, 2, "K3bArtsOutputPlugin" );
+ }
+
+ return m_initialized;
+}
+
+
+QString K3bArtsOutputPlugin::lastErrorMessage() const
+{
+ return QString::fromLocal8Bit( arts_error_text(m_lastErrorCode) );
+}
+
diff --git a/plugins/audiooutput/arts/k3bartsoutputplugin.h b/plugins/audiooutput/arts/k3bartsoutputplugin.h
new file mode 100644
index 0000000..57a2b22
--- /dev/null
+++ b/plugins/audiooutput/arts/k3bartsoutputplugin.h
@@ -0,0 +1,47 @@
+/*
+ *
+ * $Id: k3bartsoutputplugin.h 619556 2007-01-03 17:38:12Z trueg $
+ * Copyright (C) 2004 Sebastian Trueg <trueg@k3b.org>
+ *
+ * This file is part of the K3b project.
+ * Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * See the file "COPYING" for the exact licensing terms.
+ */
+
+#ifndef _K3B_ARTS_AUDIO_OUTPUT_H_
+#define _K3B_ARTS_AUDIO_OUTPUT_H_
+
+#include <k3baudiooutputplugin.h>
+
+#include <artsc/artsc.h>
+
+
+class K3bArtsOutputPlugin : public K3bAudioOutputPlugin
+{
+ public:
+ K3bArtsOutputPlugin( QObject* parent = 0, const char* name = 0 );
+ ~K3bArtsOutputPlugin();
+
+ int pluginSystemVersion() const { return 3; }
+ QCString soundSystem() const { return "arts"; }
+
+ bool init();
+ void cleanup();
+
+ QString lastErrorMessage() const;
+
+ int write( char* data, int len );
+
+ private:
+ bool m_initialized;
+ int m_lastErrorCode;
+
+ arts_stream_t m_stream;
+};
+
+#endif
diff --git a/plugins/audiooutput/arts/k3bartsoutputplugin.plugin b/plugins/audiooutput/arts/k3bartsoutputplugin.plugin
new file mode 100644
index 0000000..599869f
--- /dev/null
+++ b/plugins/audiooutput/arts/k3bartsoutputplugin.plugin
@@ -0,0 +1,9 @@
+[K3b Plugin]
+Lib=libk3bartsoutputplugin
+Group=AudioOutput
+Name=K3b Arts Audio Output Plugin
+Author=Sebastian Trueg
+Email=trueg@k3b.org
+Version=1.0
+Comment=Audio Output plugin which plays through arts
+License=GPL