summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opierec/device.h
blob: dbc7b0004c4092e09df54fea86f4a1c7c66b3f25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48

#ifndef DEVICE_H
#define DEVICE_H
#include <qobject.h>
#include <sys/soundcard.h>

class Device : public QObject {
   Q_OBJECT
public:
   Device( QObject * parent=0, bool record=0 );
   ~Device() {};
   bool closeDevice( bool);
   int getChannels();
   int getFormat();
   int getInVolume();
   int getOutVolume();
   int getRate();
   int getRes();
   int sd; //sound descriptor
   void changedInVolume(int);
   void changedOutVolume(int);
   bool openDsp();
   int getDeviceFormat();
   int getDeviceRate();
   int getDeviceBits();
   int getDeviceChannels();
   int getDeviceFragSize();
   bool setFragSize(int);
   bool setDeviceChannels(int);
   bool setDeviceRate(int);
   bool setDeviceFormat(int);
   bool reset();

   int devRead(int, short *, int);
   int devWrite(int, short *, int);   

private:
   int devRes, devCh, devRate, devForm, flags;
   QString dspstr, mixstr;
   bool selectMicInput();
   int openDevice( int );
private slots:

protected:
  
};

#endif