summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/audiodevice.h
Unidiff
Diffstat (limited to 'core/multimedia/opieplayer/audiodevice.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/audiodevice.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/core/multimedia/opieplayer/audiodevice.h b/core/multimedia/opieplayer/audiodevice.h
index ec70788..d59c388 100644
--- a/core/multimedia/opieplayer/audiodevice.h
+++ b/core/multimedia/opieplayer/audiodevice.h
@@ -1,7 +1,7 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. 2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of the Qtopia Environment. 4** This file is part of Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
@@ -17,10 +17,14 @@
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20// L.J.Potter added changes Fri 02-15-2002
21
20#ifndef AUDIODEVICE_H 22#ifndef AUDIODEVICE_H
21#define AUDIODEVICE_H 23#define AUDIODEVICE_H
22 24
25
23#include <qobject.h> 26#include <qobject.h>
27#include <sys/soundcard.h>
24 28
25 29
26class AudioDevicePrivate; 30class AudioDevicePrivate;
@@ -29,7 +33,7 @@ class AudioDevicePrivate;
29class AudioDevice : public QObject { 33class AudioDevice : public QObject {
30 Q_OBJECT 34 Q_OBJECT
31public: 35public:
32 AudioDevice( unsigned int freq = 44000, unsigned int channels = 2, unsigned int bytesPerSample = 2 ); 36 AudioDevice( unsigned int freq = 44000, unsigned int channels = 2, unsigned int bytesPerSample = AFMT_S16_LE );
33 ~AudioDevice(); 37 ~AudioDevice();
34 38
35 unsigned int canWrite() const; 39 unsigned int canWrite() const;