summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opierec/device.h
blob: f92be9800c21a689436523bdcbf4e6006c434b2c (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

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

class Device : public QObject {
    Q_OBJECT
public:
    Device( QObject * parent=0, const char * dspStr=0, const char * mixerStr=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();

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

protected:
  
};

#endif