summaryrefslogtreecommitdiff
path: root/tools/zalsa/alsathread.h
diff options
context:
space:
mode:
authorfalkTX <falktx@falktx.com>2021-04-14 19:35:02 +0100
committerfalkTX <falktx@falktx.com>2021-04-14 19:35:02 +0100
commit5041ab0fe7fb719efa5122386d355397289a91f0 (patch)
tree0fd2e614c2741e65d15902ec6b4c48d8e5afa807 /tools/zalsa/alsathread.h
parente984aeb2b4163b45f095515610432d9f59db243e (diff)
parent852ba2b8ebc944865e75d8eb5d4550d408772f3b (diff)
downloadjack2-4bcf7bb07e596e7029e81857677426583f863b8d.tar.gz
Merge branch 'develop'v1.9.18
Diffstat (limited to 'tools/zalsa/alsathread.h')
-rw-r--r--tools/zalsa/alsathread.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/tools/zalsa/alsathread.h b/tools/zalsa/alsathread.h
new file mode 100644
index 00000000..f9cb761c
--- /dev/null
+++ b/tools/zalsa/alsathread.h
@@ -0,0 +1,68 @@
+// ----------------------------------------------------------------------------
+//
+// Copyright (C) 2012-2018 Fons Adriaensen <fons@linuxaudio.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 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
+//
+// ----------------------------------------------------------------------------
+
+
+#ifndef __ALSATHREAD_H
+#define __ALSATHREAD_H
+
+
+#include <zita-alsa-pcmi.h>
+#include "jack/jack.h"
+#include "pxthread.h"
+#include "lfqueue.h"
+
+
+class Alsathread : public Pxthread
+{
+public:
+
+ enum { INIT, WAIT, PROC, TERM };
+ enum { PLAY, CAPT };
+
+ Alsathread (Alsa_pcmi *alsadev, int mode);
+ virtual ~Alsathread (void);
+ virtual void thr_main (void);
+
+ int start (Lfq_audio *audioq, Lfq_int32 *commq, Lfq_adata *alsaq, int rtprio);
+
+private:
+
+ void send (int k, double t);
+ int capture (void);
+ int playback (void);
+
+ Alsa_pcmi *_alsadev;
+ int _mode;
+ int _state;
+ int _nfail;
+ int _fsize;
+ Lfq_audio *_audioq;
+ Lfq_int32 *_commq;
+ Lfq_adata *_alsaq;
+ bool _first;
+// double _jtmod;
+ double _t0;
+ double _t1;
+ double _dt;
+ double _w1;
+ double _w2;
+};
+
+
+#endif