summaryrefslogtreecommitdiff
path: root/libopie2/opiemm/osoundsystem.h
Unidiff
Diffstat (limited to 'libopie2/opiemm/osoundsystem.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiemm/osoundsystem.h19
1 files changed, 14 insertions, 5 deletions
diff --git a/libopie2/opiemm/osoundsystem.h b/libopie2/opiemm/osoundsystem.h
index ac7a5a7..cce90c0 100644
--- a/libopie2/opiemm/osoundsystem.h
+++ b/libopie2/opiemm/osoundsystem.h
@@ -2,4 +2,3 @@
2                 This file is part of the Opie Project 2                 This file is part of the Opie Project
3 3              (C) 2003-2005 Michael 'Mickey' Lauer <mickey@Vanille.de>
4              (C) 2003 Michael 'Mickey' Lauer <mickey@tm.informatik.uni-frankfurt.de>
5 =. 4 =.
@@ -200,3 +199,6 @@ class OMixerInterface : public QObject
200 QStringList playChannels() const; 199 QStringList playChannels() const;
201 200 /**
201 * @returns true, if the device features multiple recording sources.
202 */
203 bool hasMultipleRecording() const;
202 /** 204 /**
@@ -209,3 +211,6 @@ class OMixerInterface : public QObject
209 bool isStereo( const QString& channel ) const; 211 bool isStereo( const QString& channel ) const;
210 212 /**
213 * @returns tru, if @a channel is a possible recording source.
214 */
215 bool isRecordable( const QString& channel ) const;
211 /** 216 /**
@@ -223,3 +228,7 @@ class OMixerInterface : public QObject
223 int _fd; 228 int _fd;
224 QMap<QString, int> _channels; 229 int _capmask;
230 int _devmask;
231 int _recmask;
232 int _stmask;
233 QMap<QString,int> _channels;
225 234