summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-07-07 03:24:25 (UTC)
committer llornkcor <llornkcor>2002-07-07 03:24:25 (UTC)
commitf9ef0ea0b313a213516d15b0f4779efbb3cf5231 (patch) (unidiff)
treea5be21dc21ed11fae9cf11a8dc396cd388f674b0
parent4f44b353d8211a51e2f0bfb609f2c2d79c44827f (diff)
downloadopie-f9ef0ea0b313a213516d15b0f4779efbb3cf5231.zip
opie-f9ef0ea0b313a213516d15b0f4779efbb3cf5231.tar.gz
opie-f9ef0ea0b313a213516d15b0f4779efbb3cf5231.tar.bz2
mute/unmute audio device when opening closing, since its fixed in volumeapplet
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/audiodevice.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/multimedia/opieplayer/audiodevice.cpp b/core/multimedia/opieplayer/audiodevice.cpp
index abbe5c8..020f6be 100644
--- a/core/multimedia/opieplayer/audiodevice.cpp
+++ b/core/multimedia/opieplayer/audiodevice.cpp
@@ -1,389 +1,389 @@
1/********************************************************************** 1/**********************************************************************
2 ** Copyright (C) 2000 Trolltech AS. All rights reserved. 2 ** Copyright (C) 2000 Trolltech AS. All rights reserved.
3 ** 3 **
4 ** This file is part of 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
8 ** Foundation and appearing in the file LICENSE.GPL included in the 8 ** Foundation and appearing in the file LICENSE.GPL included in the
9 ** packaging of this file. 9 ** packaging of this file.
10 ** 10 **
11 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13 ** 13 **
14 ** See http://www.trolltech.com/gpl/ for GPL licensing information. 14 ** See http://www.trolltech.com/gpl/ for GPL licensing information.
15 ** 15 **
16 ** Contact info@trolltech.com if any conditions of this licensing are 16 ** Contact info@trolltech.com if any conditions of this licensing are
17 ** not clear to you. 17 ** not clear to you.
18 ** 18 **
19 **********************************************************************/ 19 **********************************************************************/
20// L.J.Potter added better error code Fri 02-15-2002 14:37:47 20// L.J.Potter added better error code Fri 02-15-2002 14:37:47
21 21
22 22
23#include <stdlib.h> 23#include <stdlib.h>
24#include <stdio.h> 24#include <stdio.h>
25#include <qpe/qpeapplication.h> 25#include <qpe/qpeapplication.h>
26#include <qpe/config.h> 26#include <qpe/config.h>
27#include <qmessagebox.h> 27#include <qmessagebox.h>
28 28
29#include "audiodevice.h" 29#include "audiodevice.h"
30 30
31 31
32#include <errno.h> 32#include <errno.h>
33 33
34#if ( defined Q_WS_QWS || defined(_WS_QWS_) ) && !defined(QT_NO_COP) 34#if ( defined Q_WS_QWS || defined(_WS_QWS_) ) && !defined(QT_NO_COP)
35#include "qpe/qcopenvelope_qws.h" 35#include "qpe/qcopenvelope_qws.h"
36#endif 36#endif
37 37
38// #ifdef Q_WS_WIN 38// #ifdef Q_WS_WIN
39// #include <windows.h> 39// #include <windows.h>
40// #include <mmsystem.h> 40// #include <mmsystem.h>
41// #include <mmreg.h> 41// #include <mmreg.h>
42// #endif 42// #endif
43#if defined(Q_WS_X11) || defined(Q_WS_QWS) 43#if defined(Q_WS_X11) || defined(Q_WS_QWS)
44#include <fcntl.h> 44#include <fcntl.h>
45#include <sys/ioctl.h> 45#include <sys/ioctl.h>
46#include <sys/soundcard.h> 46#include <sys/soundcard.h>
47#include <sys/stat.h> 47#include <sys/stat.h>
48#include <sys/time.h> 48#include <sys/time.h>
49#include <sys/types.h> 49#include <sys/types.h>
50#include <unistd.h> 50#include <unistd.h>
51#endif 51#endif
52 52
53// #if defined(Q_OS_WIN32) 53// #if defined(Q_OS_WIN32)
54// static const int expectedBytesPerMilliSecond = 2 * 2 * 44000 / 1000; 54// static const int expectedBytesPerMilliSecond = 2 * 2 * 44000 / 1000;
55// static const int timerResolutionMilliSeconds = 30; 55// static const int timerResolutionMilliSeconds = 30;
56// static const int sound_fragment_bytes = timerResolutionMilliSeconds * expectedBytesPerMilliSecond; 56// static const int sound_fragment_bytes = timerResolutionMilliSeconds * expectedBytesPerMilliSecond;
57// #else 57// #else
58# if defined(QT_QWS_IPAQ) 58# if defined(QT_QWS_IPAQ)
59static const int sound_fragment_shift = 14; 59static const int sound_fragment_shift = 14;
60# else 60# else
61static const int sound_fragment_shift = 16; 61static const int sound_fragment_shift = 16;
62# endif 62# endif
63static const int sound_fragment_bytes = (1<<sound_fragment_shift); 63static const int sound_fragment_bytes = (1<<sound_fragment_shift);
64//#endif 64//#endif
65 65
66 66
67class AudioDevicePrivate { 67class AudioDevicePrivate {
68public: 68public:
69 int handle; 69 int handle;
70 unsigned int frequency; 70 unsigned int frequency;
71 unsigned int channels; 71 unsigned int channels;
72 unsigned int bytesPerSample; 72 unsigned int bytesPerSample;
73 unsigned int bufferSize; 73 unsigned int bufferSize;
74//#ifndef Q_OS_WIN32 74//#ifndef Q_OS_WIN32
75 bool can_GETOSPACE; 75 bool can_GETOSPACE;
76 char* unwrittenBuffer; 76 char* unwrittenBuffer;
77 unsigned int unwritten; 77 unsigned int unwritten;
78//#endif 78//#endif
79 79
80 static int dspFd; 80 static int dspFd;
81 static bool muted; 81 static bool muted;
82 static unsigned int leftVolume; 82 static unsigned int leftVolume;
83 static unsigned int rightVolume; 83 static unsigned int rightVolume;
84}; 84};
85 85
86 86
87#ifdef Q_WS_QWS 87#ifdef Q_WS_QWS
88// This is for keeping the device open in-between playing files when 88// This is for keeping the device open in-between playing files when
89// the device makes clicks and it starts to drive you insane! :) 89// the device makes clicks and it starts to drive you insane! :)
90// Best to have the device not open when not using it though 90// Best to have the device not open when not using it though
91//#define KEEP_DEVICE_OPEN 91//#define KEEP_DEVICE_OPEN
92#endif 92#endif
93 93
94 94
95int AudioDevicePrivate::dspFd = 0; 95int AudioDevicePrivate::dspFd = 0;
96bool AudioDevicePrivate::muted = FALSE; 96bool AudioDevicePrivate::muted = FALSE;
97unsigned int AudioDevicePrivate::leftVolume = 0; 97unsigned int AudioDevicePrivate::leftVolume = 0;
98unsigned int AudioDevicePrivate::rightVolume = 0; 98unsigned int AudioDevicePrivate::rightVolume = 0;
99 99
100 100
101void AudioDevice::getVolume( unsigned int& leftVolume, unsigned int& rightVolume, bool &muted ) { 101void AudioDevice::getVolume( unsigned int& leftVolume, unsigned int& rightVolume, bool &muted ) {
102 muted = AudioDevicePrivate::muted; 102 muted = AudioDevicePrivate::muted;
103 unsigned int volume; 103 unsigned int volume;
104// #ifdef Q_OS_WIN32 104// #ifdef Q_OS_WIN32
105// HWAVEOUT handle; 105// HWAVEOUT handle;
106// WAVEFORMATEX formatData; 106// WAVEFORMATEX formatData;
107// formatData.cbSize = sizeof(WAVEFORMATEX); 107// formatData.cbSize = sizeof(WAVEFORMATEX);
108// formatData.wFormatTag = WAVE_FORMAT_PCM; 108// formatData.wFormatTag = WAVE_FORMAT_PCM;
109// formatData.nAvgBytesPerSec = 4 * 44000; 109// formatData.nAvgBytesPerSec = 4 * 44000;
110// formatData.nBlockAlign = 4; 110// formatData.nBlockAlign = 4;
111// formatData.nChannels = 2; 111// formatData.nChannels = 2;
112// formatData.nSamplesPerSec = 44000; 112// formatData.nSamplesPerSec = 44000;
113// formatData.wBitsPerSample = 16; 113// formatData.wBitsPerSample = 16;
114// waveOutOpen(&handle, WAVE_MAPPER, &formatData, 0L, 0L, CALLBACK_NULL); 114// waveOutOpen(&handle, WAVE_MAPPER, &formatData, 0L, 0L, CALLBACK_NULL);
115// if ( waveOutGetVolume( handle, (LPDWORD)&volume ) ) 115// if ( waveOutGetVolume( handle, (LPDWORD)&volume ) )
116// // qDebug( "get volume of audio device failed" ); 116// // qDebug( "get volume of audio device failed" );
117// waveOutClose( handle ); 117// waveOutClose( handle );
118// leftVolume = volume & 0xFFFF; 118// leftVolume = volume & 0xFFFF;
119// rightVolume = volume >> 16; 119// rightVolume = volume >> 16;
120// #else 120// #else
121 int mixerHandle = open( "/dev/mixer", O_RDWR ); 121 int mixerHandle = open( "/dev/mixer", O_RDWR );
122 if ( mixerHandle >= 0 ) { 122 if ( mixerHandle >= 0 ) {
123 if(ioctl( mixerHandle, MIXER_READ(0), &volume )==-1) 123 if(ioctl( mixerHandle, MIXER_READ(0), &volume )==-1)
124 perror("ioctl(\"MIXER_READ\")"); 124 perror("ioctl(\"MIXER_READ\")");
125 close( mixerHandle ); 125 close( mixerHandle );
126 } else 126 } else
127 perror("open(\"/dev/mixer\")"); 127 perror("open(\"/dev/mixer\")");
128 leftVolume = ((volume & 0x00FF) << 16) / 101; 128 leftVolume = ((volume & 0x00FF) << 16) / 101;
129 rightVolume = ((volume & 0xFF00) << 8) / 101; 129 rightVolume = ((volume & 0xFF00) << 8) / 101;
130//#endif 130//#endif
131} 131}
132 132
133 133
134void AudioDevice::setVolume( unsigned int leftVolume, unsigned int rightVolume, bool muted ) { 134void AudioDevice::setVolume( unsigned int leftVolume, unsigned int rightVolume, bool muted ) {
135 AudioDevicePrivate::muted = muted; 135 AudioDevicePrivate::muted = muted;
136 if ( muted ) { 136 if ( muted ) {
137 AudioDevicePrivate::leftVolume = leftVolume; 137 AudioDevicePrivate::leftVolume = leftVolume;
138 AudioDevicePrivate::rightVolume = rightVolume; 138 AudioDevicePrivate::rightVolume = rightVolume;
139 leftVolume = 0; 139 leftVolume = 0;
140 rightVolume = 0; 140 rightVolume = 0;
141 } else { 141 } else {
142 leftVolume = ( (int) leftVolume < 0 ) ? 0 : (( leftVolume > 0xFFFF ) ? 0xFFFF : leftVolume ); 142 leftVolume = ( (int) leftVolume < 0 ) ? 0 : (( leftVolume > 0xFFFF ) ? 0xFFFF : leftVolume );
143 rightVolume = ( (int)rightVolume < 0 ) ? 0 : (( rightVolume > 0xFFFF ) ? 0xFFFF : rightVolume ); 143 rightVolume = ( (int)rightVolume < 0 ) ? 0 : (( rightVolume > 0xFFFF ) ? 0xFFFF : rightVolume );
144 } 144 }
145// #ifdef Q_OS_WIN32 145// #ifdef Q_OS_WIN32
146// HWAVEOUT handle; 146// HWAVEOUT handle;
147// WAVEFORMATEX formatData; 147// WAVEFORMATEX formatData;
148// formatData.cbSize = sizeof(WAVEFORMATEX); 148// formatData.cbSize = sizeof(WAVEFORMATEX);
149// formatData.wFormatTag = WAVE_FORMAT_PCM; 149// formatData.wFormatTag = WAVE_FORMAT_PCM;
150// formatData.nAvgBytesPerSec = 4 * 44000; 150// formatData.nAvgBytesPerSec = 4 * 44000;
151// formatData.nBlockAlign = 4; 151// formatData.nBlockAlign = 4;
152// formatData.nChannels = 2; 152// formatData.nChannels = 2;
153// formatData.nSamplesPerSec = 44000; 153// formatData.nSamplesPerSec = 44000;
154// formatData.wBitsPerSample = 16; 154// formatData.wBitsPerSample = 16;
155// waveOutOpen(&handle, WAVE_MAPPER, &formatData, 0L, 0L, CALLBACK_NULL); 155// waveOutOpen(&handle, WAVE_MAPPER, &formatData, 0L, 0L, CALLBACK_NULL);
156// unsigned int volume = (rightVolume << 16) | leftVolume; 156// unsigned int volume = (rightVolume << 16) | leftVolume;
157// if ( waveOutSetVolume( handle, volume ) ) 157// if ( waveOutSetVolume( handle, volume ) )
158// // qDebug( "set volume of audio device failed" ); 158// // qDebug( "set volume of audio device failed" );
159// waveOutClose( handle ); 159// waveOutClose( handle );
160// #else 160// #else
161 // Volume can be from 0 to 100 which is 101 distinct values 161 // Volume can be from 0 to 100 which is 101 distinct values
162 unsigned int rV = (rightVolume * 101) >> 16; 162 unsigned int rV = (rightVolume * 101) >> 16;
163 163
164# if 0 164# if 0
165 unsigned int lV = (leftVolume * 101) >> 16; 165 unsigned int lV = (leftVolume * 101) >> 16;
166 unsigned int volume = ((rV << 8) & 0xFF00) | (lV & 0x00FF); 166 unsigned int volume = ((rV << 8) & 0xFF00) | (lV & 0x00FF);
167 int mixerHandle = 0; 167 int mixerHandle = 0;
168 if ( ( mixerHandle = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { 168 if ( ( mixerHandle = open( "/dev/mixer", O_RDWR ) ) >= 0 ) {
169 if(ioctl( mixerHandle, MIXER_WRITE(0), &volume ) ==-1) 169 if(ioctl( mixerHandle, MIXER_WRITE(0), &volume ) ==-1)
170 perror("ioctl(\"MIXER_WRITE\")"); 170 perror("ioctl(\"MIXER_WRITE\")");
171 close( mixerHandle ); 171 close( mixerHandle );
172 } else 172 } else
173 perror("open(\"/dev/mixer\")"); 173 perror("open(\"/dev/mixer\")");
174 174
175# else 175# else
176 // This is the way this has to be done now I guess, doesn't allow for 176 // This is the way this has to be done now I guess, doesn't allow for
177 // independant right and left channel setting, or setting for different outputs 177 // independant right and left channel setting, or setting for different outputs
178 Config cfg("qpe"); // qtopia is "Sound" 178 Config cfg("qpe"); // qtopia is "Sound"
179 cfg.setGroup("Volume"); // qtopia is "Settings" 179 cfg.setGroup("Volume"); // qtopia is "Settings"
180 cfg.writeEntry("VolumePercent",(int)rV); //qtopia is Volume 180 cfg.writeEntry("VolumePercent",(int)rV); //qtopia is Volume
181# endif 181# endif
182 182
183//#endif 183//#endif
184// qDebug( "setting volume to: 0x%x", volume ); 184// qDebug( "setting volume to: 0x%x", volume );
185#if ( defined Q_WS_QWS || defined(_WS_QWS_) ) && !defined(QT_NO_COP) 185#if ( defined Q_WS_QWS || defined(_WS_QWS_) ) && !defined(QT_NO_COP)
186 // Send notification that the volume has changed 186 // Send notification that the volume has changed
187 QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << muted; 187 QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << muted;
188#endif 188#endif
189} 189}
190 190
191 191
192 192
193 193
194AudioDevice::AudioDevice( unsigned int f, unsigned int chs, unsigned int bps ) { 194AudioDevice::AudioDevice( unsigned int f, unsigned int chs, unsigned int bps ) {
195 qDebug("creating new audio device"); 195 qDebug("creating new audio device");
196// QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << TRUE; 196 QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << TRUE;
197 d = new AudioDevicePrivate; 197 d = new AudioDevicePrivate;
198 d->frequency = f; 198 d->frequency = f;
199 d->channels = chs; 199 d->channels = chs;
200 d->bytesPerSample = bps; 200 d->bytesPerSample = bps;
201 qDebug("%d",bps); 201 qDebug("%d",bps);
202 int format=0; 202 int format=0;
203 if( bps == 8) format = AFMT_U8; 203 if( bps == 8) format = AFMT_U8;
204 else if( bps <= 0) format = AFMT_S16_LE; 204 else if( bps <= 0) format = AFMT_S16_LE;
205 else format = AFMT_S16_LE; 205 else format = AFMT_S16_LE;
206 qDebug("AD- freq %d, channels %d, b/sample %d, bitrate %d",f,chs,bps,format); 206 qDebug("AD- freq %d, channels %d, b/sample %d, bitrate %d",f,chs,bps,format);
207 connect( qApp, SIGNAL( volumeChanged(bool) ), this, SLOT( volumeChanged(bool) ) ); 207 connect( qApp, SIGNAL( volumeChanged(bool) ), this, SLOT( volumeChanged(bool) ) );
208 208
209 int fragments = 0x10000 * 8 + sound_fragment_shift; 209 int fragments = 0x10000 * 8 + sound_fragment_shift;
210 int capabilities = 0; 210 int capabilities = 0;
211 211
212 212
213#ifdef KEEP_DEVICE_OPEN 213#ifdef KEEP_DEVICE_OPEN
214 if ( AudioDevicePrivate::dspFd == 0 ) { 214 if ( AudioDevicePrivate::dspFd == 0 ) {
215#endif 215#endif
216 if ( ( d->handle = ::open( "/dev/dsp", O_WRONLY ) ) < 0 ) { 216 if ( ( d->handle = ::open( "/dev/dsp", O_WRONLY ) ) < 0 ) {
217 217
218// perror("open(\"/dev/dsp\") sending to /dev/null instead"); 218// perror("open(\"/dev/dsp\") sending to /dev/null instead");
219 perror("open(\"/dev/dsp\")"); 219 perror("open(\"/dev/dsp\")");
220 QString errorMsg=tr("Somethin's wrong with\nyour sound device.\nopen(\"/dev/dsp\")\n")+(QString)strerror(errno)+tr("\n\nClosing player now."); 220 QString errorMsg=tr("Somethin's wrong with\nyour sound device.\nopen(\"/dev/dsp\")\n")+(QString)strerror(errno)+tr("\n\nClosing player now.");
221 QMessageBox::critical(0, "Vmemo", errorMsg, tr("Abort")); 221 QMessageBox::critical(0, "Vmemo", errorMsg, tr("Abort"));
222 exit(-1); //harsh? 222 exit(-1); //harsh?
223// d->handle = ::open( "/dev/null", O_WRONLY ); 223// d->handle = ::open( "/dev/null", O_WRONLY );
224 // WTF?!?! 224 // WTF?!?!
225 } 225 }
226#ifdef KEEP_DEVICE_OPEN 226#ifdef KEEP_DEVICE_OPEN
227 AudioDevicePrivate::dspFd = d->handle; 227 AudioDevicePrivate::dspFd = d->handle;
228 } else { 228 } else {
229 d->handle = AudioDevicePrivate::dspFd; 229 d->handle = AudioDevicePrivate::dspFd;
230 } 230 }
231#endif 231#endif
232 232
233 if(ioctl( d->handle, SNDCTL_DSP_GETCAPS, &capabilities )==-1) 233 if(ioctl( d->handle, SNDCTL_DSP_GETCAPS, &capabilities )==-1)
234 perror("ioctl(\"SNDCTL_DSP_GETCAPS\")"); 234 perror("ioctl(\"SNDCTL_DSP_GETCAPS\")");
235 if(ioctl( d->handle, SNDCTL_DSP_SETFRAGMENT, &fragments )==-1) 235 if(ioctl( d->handle, SNDCTL_DSP_SETFRAGMENT, &fragments )==-1)
236 perror("ioctl(\"SNDCTL_DSP_SETFRAGMENT\")"); 236 perror("ioctl(\"SNDCTL_DSP_SETFRAGMENT\")");
237 if(ioctl( d->handle, SNDCTL_DSP_SETFMT, & format )==-1) 237 if(ioctl( d->handle, SNDCTL_DSP_SETFMT, & format )==-1)
238 perror("ioctl(\"SNDCTL_DSP_SETFMT\")"); 238 perror("ioctl(\"SNDCTL_DSP_SETFMT\")");
239 qDebug("freq %d", d->frequency); 239 qDebug("freq %d", d->frequency);
240 if(ioctl( d->handle, SNDCTL_DSP_SPEED, &d->frequency )==-1) 240 if(ioctl( d->handle, SNDCTL_DSP_SPEED, &d->frequency )==-1)
241 perror("ioctl(\"SNDCTL_DSP_SPEED\")"); 241 perror("ioctl(\"SNDCTL_DSP_SPEED\")");
242 qDebug("channels %d",d->channels); 242 qDebug("channels %d",d->channels);
243 if ( ioctl( d->handle, SNDCTL_DSP_CHANNELS, &d->channels ) == -1 ) { 243 if ( ioctl( d->handle, SNDCTL_DSP_CHANNELS, &d->channels ) == -1 ) {
244 d->channels = ( d->channels == 1 ) ? 2 : d->channels; 244 d->channels = ( d->channels == 1 ) ? 2 : d->channels;
245 if(ioctl( d->handle, SNDCTL_DSP_CHANNELS, &d->channels )==-1) 245 if(ioctl( d->handle, SNDCTL_DSP_CHANNELS, &d->channels )==-1)
246 perror("ioctl(\"SNDCTL_DSP_CHANNELS\")"); 246 perror("ioctl(\"SNDCTL_DSP_CHANNELS\")");
247 } 247 }
248// QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << FALSE; 248 QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << FALSE;
249 249
250 d->bufferSize = sound_fragment_bytes; 250 d->bufferSize = sound_fragment_bytes;
251 d->unwrittenBuffer = new char[d->bufferSize]; 251 d->unwrittenBuffer = new char[d->bufferSize];
252 d->unwritten = 0; 252 d->unwritten = 0;
253 d->can_GETOSPACE = TRUE; // until we find otherwise 253 d->can_GETOSPACE = TRUE; // until we find otherwise
254 254
255 //if ( chs != d->channels ) qDebug( "Wanted %d, got %d channels", chs, d->channels ); 255 //if ( chs != d->channels ) qDebug( "Wanted %d, got %d channels", chs, d->channels );
256 //if ( f != d->frequency ) qDebug( "wanted %dHz, got %dHz", f, d->frequency ); 256 //if ( f != d->frequency ) qDebug( "wanted %dHz, got %dHz", f, d->frequency );
257 //if ( capabilities & DSP_CAP_BATCH ) qDebug( "Sound card has local buffer" ); 257 //if ( capabilities & DSP_CAP_BATCH ) qDebug( "Sound card has local buffer" );
258 //if ( capabilities & DSP_CAP_REALTIME )qDebug( "Sound card has realtime sync" ); 258 //if ( capabilities & DSP_CAP_REALTIME )qDebug( "Sound card has realtime sync" );
259 //if ( capabilities & DSP_CAP_TRIGGER ) qDebug( "Sound card has precise trigger" ); 259 //if ( capabilities & DSP_CAP_TRIGGER ) qDebug( "Sound card has precise trigger" );
260 //if ( capabilities & DSP_CAP_MMAP ) qDebug( "Sound card can mmap" ); 260 //if ( capabilities & DSP_CAP_MMAP ) qDebug( "Sound card can mmap" );
261 261
262} 262}
263 263
264 264
265AudioDevice::~AudioDevice() { 265AudioDevice::~AudioDevice() {
266 qDebug("destryo audiodevice"); 266 qDebug("destryo audiodevice");
267 // QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << TRUE; 267 QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << TRUE;
268 268
269// #ifdef Q_OS_WIN32 269// #ifdef Q_OS_WIN32
270// waveOutClose( (HWAVEOUT)d->handle ); 270// waveOutClose( (HWAVEOUT)d->handle );
271// #else 271// #else
272# ifndef KEEP_DEVICE_OPEN 272# ifndef KEEP_DEVICE_OPEN
273 close( d->handle ); // Now it should be safe to shut the handle 273 close( d->handle ); // Now it should be safe to shut the handle
274# endif 274# endif
275 delete d->unwrittenBuffer; 275 delete d->unwrittenBuffer;
276 delete d; 276 delete d;
277//#endif 277//#endif
278// QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << FALSE; 278 QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << FALSE;
279 279
280} 280}
281 281
282 282
283void AudioDevice::volumeChanged( bool muted ) 283void AudioDevice::volumeChanged( bool muted )
284{ 284{
285 AudioDevicePrivate::muted = muted; 285 AudioDevicePrivate::muted = muted;
286} 286}
287 287
288 288
289void AudioDevice::write( char *buffer, unsigned int length ) 289void AudioDevice::write( char *buffer, unsigned int length )
290{ 290{
291// #ifdef Q_OS_WIN32 291// #ifdef Q_OS_WIN32
292// // returns immediately and (to be implemented) emits completedIO() when finished writing 292// // returns immediately and (to be implemented) emits completedIO() when finished writing
293// WAVEHDR *lpWaveHdr = (WAVEHDR *)malloc( sizeof(WAVEHDR) ); 293// WAVEHDR *lpWaveHdr = (WAVEHDR *)malloc( sizeof(WAVEHDR) );
294// // maybe the buffer should be copied so that this fool proof, but its a performance hit 294// // maybe the buffer should be copied so that this fool proof, but its a performance hit
295// lpWaveHdr->lpData = buffer; 295// lpWaveHdr->lpData = buffer;
296// lpWaveHdr->dwBufferLength = length; 296// lpWaveHdr->dwBufferLength = length;
297// lpWaveHdr->dwFlags = 0L; 297// lpWaveHdr->dwFlags = 0L;
298// lpWaveHdr->dwLoops = 0L; 298// lpWaveHdr->dwLoops = 0L;
299// waveOutPrepareHeader( (HWAVEOUT)d->handle, lpWaveHdr, sizeof(WAVEHDR) ); 299// waveOutPrepareHeader( (HWAVEOUT)d->handle, lpWaveHdr, sizeof(WAVEHDR) );
300// // waveOutWrite returns immediately. the data is sent in the background. 300// // waveOutWrite returns immediately. the data is sent in the background.
301// if ( waveOutWrite( (HWAVEOUT)d->handle, lpWaveHdr, sizeof(WAVEHDR) ) ) 301// if ( waveOutWrite( (HWAVEOUT)d->handle, lpWaveHdr, sizeof(WAVEHDR) ) )
302// qDebug( "failed to write block to audio device" ); 302// qDebug( "failed to write block to audio device" );
303// // emit completedIO(); 303// // emit completedIO();
304// #else 304// #else
305 int t = ::write( d->handle, buffer, length ); 305 int t = ::write( d->handle, buffer, length );
306 if ( t<0 ) t = 0; 306 if ( t<0 ) t = 0;
307 if ( t != (int)length) { 307 if ( t != (int)length) {
308 qDebug("Ahhh!! memcpys 1"); 308 qDebug("Ahhh!! memcpys 1");
309 memcpy(d->unwrittenBuffer,buffer+t,length-t); 309 memcpy(d->unwrittenBuffer,buffer+t,length-t);
310 d->unwritten = length-t; 310 d->unwritten = length-t;
311 } 311 }
312//#endif 312//#endif
313} 313}
314 314
315 315
316unsigned int AudioDevice::channels() const 316unsigned int AudioDevice::channels() const
317{ 317{
318 return d->channels; 318 return d->channels;
319} 319}
320 320
321 321
322unsigned int AudioDevice::frequency() const 322unsigned int AudioDevice::frequency() const
323{ 323{
324 return d->frequency; 324 return d->frequency;
325} 325}
326 326
327 327
328unsigned int AudioDevice::bytesPerSample() const 328unsigned int AudioDevice::bytesPerSample() const
329{ 329{
330 return d->bytesPerSample; 330 return d->bytesPerSample;
331} 331}
332 332
333 333
334unsigned int AudioDevice::bufferSize() const 334unsigned int AudioDevice::bufferSize() const
335{ 335{
336 return d->bufferSize; 336 return d->bufferSize;
337} 337}
338 338
339unsigned int AudioDevice::canWrite() const 339unsigned int AudioDevice::canWrite() const
340{ 340{
341// #ifdef Q_OS_WIN32 341// #ifdef Q_OS_WIN32
342// return bufferSize(); // Any better? 342// return bufferSize(); // Any better?
343// #else 343// #else
344 audio_buf_info info; 344 audio_buf_info info;
345 if ( d->can_GETOSPACE && ioctl(d->handle,SNDCTL_DSP_GETOSPACE,&info) ) { 345 if ( d->can_GETOSPACE && ioctl(d->handle,SNDCTL_DSP_GETOSPACE,&info) ) {
346 d->can_GETOSPACE = FALSE; 346 d->can_GETOSPACE = FALSE;
347 fcntl( d->handle, F_SETFL, O_NONBLOCK ); 347 fcntl( d->handle, F_SETFL, O_NONBLOCK );
348 } 348 }
349 if ( d->can_GETOSPACE ) { 349 if ( d->can_GETOSPACE ) {
350 int t = info.fragments * sound_fragment_bytes; 350 int t = info.fragments * sound_fragment_bytes;
351 return QMIN(t,(int)bufferSize()); 351 return QMIN(t,(int)bufferSize());
352 } else { 352 } else {
353 if ( d->unwritten ) { 353 if ( d->unwritten ) {
354 int t = ::write( d->handle, d->unwrittenBuffer, d->unwritten ); 354 int t = ::write( d->handle, d->unwrittenBuffer, d->unwritten );
355 if ( t<0 ) t = 0; 355 if ( t<0 ) t = 0;
356 if ( (unsigned)t!=d->unwritten ) { 356 if ( (unsigned)t!=d->unwritten ) {
357 memcpy(d->unwrittenBuffer,d->unwrittenBuffer+t,d->unwritten-t); 357 memcpy(d->unwrittenBuffer,d->unwrittenBuffer+t,d->unwritten-t);
358 d->unwritten -= t; 358 d->unwritten -= t;
359 } else { 359 } else {
360 d->unwritten = 0; 360 d->unwritten = 0;
361 } 361 }
362 } 362 }
363 if ( d->unwritten ) 363 if ( d->unwritten )
364 return 0; 364 return 0;
365 else 365 else
366 return d->bufferSize; 366 return d->bufferSize;
367 } 367 }
368//#endif 368//#endif
369} 369}
370 370
371 371
372int AudioDevice::bytesWritten() { 372int AudioDevice::bytesWritten() {
373// #ifdef Q_OS_WIN32 373// #ifdef Q_OS_WIN32
374// MMTIME pmmt = { TIME_BYTES, 0 }; 374// MMTIME pmmt = { TIME_BYTES, 0 };
375// if ( ( waveOutGetPosition( (HWAVEOUT)d->handle, &pmmt, sizeof(MMTIME) ) != MMSYSERR_NOERROR ) || ( pmmt.wType != TIME_BYTES ) ) { 375// if ( ( waveOutGetPosition( (HWAVEOUT)d->handle, &pmmt, sizeof(MMTIME) ) != MMSYSERR_NOERROR ) || ( pmmt.wType != TIME_BYTES ) ) {
376// qDebug( "failed to get audio device position" ); 376// qDebug( "failed to get audio device position" );
377// return -1; 377// return -1;
378// } 378// }
379// return pmmt.u.cb; 379// return pmmt.u.cb;
380// #else 380// #else
381 int buffered = 0; 381 int buffered = 0;
382 if ( ioctl( d->handle, SNDCTL_DSP_GETODELAY, &buffered ) ) { 382 if ( ioctl( d->handle, SNDCTL_DSP_GETODELAY, &buffered ) ) {
383 qDebug( "failed to get audio device position" ); 383 qDebug( "failed to get audio device position" );
384 return -1; 384 return -1;
385 } 385 }
386 return buffered; 386 return buffered;
387//#endif 387//#endif
388} 388}
389 389