annotate libao2/ao_win32.c @ 12749:86774b3d5ede

removed XFlush() before XSync()
author reimar
date Fri, 02 Jul 2004 16:16:46 +0000
parents 02efc0619f61
children ab369fe35121
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
1 /******************************************************************************
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
2 * ao_win32.c: Windows waveOut interface for MPlayer
12151
75fdb659f5bf round len to outburst and increment full_buffers at the correct time, patch by Nehal <nehalmistry at gmx.net>
faust3
parents: 12146
diff changeset
3 * Copyright (c) 2002 - 2004 Sascha Sommer <saschasommer@freenet.de>.
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
4 *
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
5 * This program is free software; you can redistribute it and/or modify
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
6 * it under the terms of the GNU General Public License as published by
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
7 * the Free Software Foundation; either version 2 of the License, or
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
8 * (at your option) any later version.
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
9 *
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
10 * This program is distributed in the hope that it will be useful,
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
13 * GNU General Public License for more details.
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
14 *
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
16 * along with this program; if not, write to the Free Software
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
18 *
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
19 *****************************************************************************/
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
20
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
21 #include <stdio.h>
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
22 #include <stdlib.h>
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
23 #include <windows.h>
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
24 #include <mmsystem.h>
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
25
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
26 #include "afmt.h"
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
27 #include "audio_out.h"
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
28 #include "audio_out_internal.h"
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
29 #include "../mp_msg.h"
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
30 #include "../libvo/fastmemcpy.h"
12093
f54d02f6ddbf let uninit wait until sound is completely played, don't restore volume at exit, fixed ringbuffer bug, patch by Nehal <nehalmistry at gmx.net>\n
faust3
parents: 11511
diff changeset
31 #include "osdep/timer.h"
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
32
12699
02efc0619f61 10l WAVE_FORMAT_DOLBY_AC3_SPDIF needs to be defined first, patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents: 12684
diff changeset
33 #define WAVE_FORMAT_DOLBY_AC3_SPDIF 0x0092
02efc0619f61 10l WAVE_FORMAT_DOLBY_AC3_SPDIF needs to be defined first, patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents: 12684
diff changeset
34
12155
deb95ac21f14 restore original ringbuffer constants as the current values are causing heavy stutter here, especially noticable after moving the video window
faust3
parents: 12151
diff changeset
35 #define SAMPLESIZE 1024
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
36 #define BUFFER_SIZE 4096
12155
deb95ac21f14 restore original ringbuffer constants as the current values are causing heavy stutter here, especially noticable after moving the video window
faust3
parents: 12151
diff changeset
37 #define BUFFER_COUNT 16
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
38
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
39
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
40 static WAVEHDR* waveBlocks; //pointer to our ringbuffer memory
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
41 static HWAVEOUT hWaveOut; //handle to the waveout device
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
42 static unsigned int buf_write=0;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
43 static unsigned int buf_write_pos=0;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
44 static int full_buffers=0;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
45 static int buffered_bytes=0;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
46
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
47
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
48 static ao_info_t info =
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
49 {
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
50 "Windows waveOut audio output",
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
51 "win32",
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
52 "Sascha Sommer <saschasommer@freenet.de>",
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
53 ""
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
54 };
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
55
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
56 LIBAO_EXTERN(win32)
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
57
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
58 static void CALLBACK waveOutProc(HWAVEOUT hWaveOut,UINT uMsg,DWORD dwInstance,
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
59 DWORD dwParam1,DWORD dwParam2)
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
60 {
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
61 if(uMsg != WOM_DONE)
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
62 return;
12093
f54d02f6ddbf let uninit wait until sound is completely played, don't restore volume at exit, fixed ringbuffer bug, patch by Nehal <nehalmistry at gmx.net>\n
faust3
parents: 11511
diff changeset
63 if (full_buffers) {
f54d02f6ddbf let uninit wait until sound is completely played, don't restore volume at exit, fixed ringbuffer bug, patch by Nehal <nehalmistry at gmx.net>\n
faust3
parents: 11511
diff changeset
64 buffered_bytes-=BUFFER_SIZE;
f54d02f6ddbf let uninit wait until sound is completely played, don't restore volume at exit, fixed ringbuffer bug, patch by Nehal <nehalmistry at gmx.net>\n
faust3
parents: 11511
diff changeset
65 --full_buffers;
f54d02f6ddbf let uninit wait until sound is completely played, don't restore volume at exit, fixed ringbuffer bug, patch by Nehal <nehalmistry at gmx.net>\n
faust3
parents: 11511
diff changeset
66 } else {
f54d02f6ddbf let uninit wait until sound is completely played, don't restore volume at exit, fixed ringbuffer bug, patch by Nehal <nehalmistry at gmx.net>\n
faust3
parents: 11511
diff changeset
67 buffered_bytes=0;
f54d02f6ddbf let uninit wait until sound is completely played, don't restore volume at exit, fixed ringbuffer bug, patch by Nehal <nehalmistry at gmx.net>\n
faust3
parents: 11511
diff changeset
68 }
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
69 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
70
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
71 // to set/get/query special features/parameters
9633
12b1790038b0 64bit libao2 fix by Jens Axboe <mplayer-dev@kernel.dk>
alex
parents: 9589
diff changeset
72 static int control(int cmd,void *arg)
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
73 {
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
74 DWORD volume;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
75 switch (cmd)
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
76 {
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
77 case AOCONTROL_GET_VOLUME:
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
78 {
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
79 ao_control_vol_t* vol = (ao_control_vol_t*)arg;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
80 waveOutGetVolume(hWaveOut,&volume);
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
81 vol->left = (float)(LOWORD(volume)/655.35);
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
82 vol->right = (float)(HIWORD(volume)/655.35);
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
83 mp_msg(MSGT_AO, MSGL_DBG2,"ao_win32: volume left:%f volume right:%f\n",vol->left,vol->right);
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
84 return CONTROL_OK;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
85 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
86 case AOCONTROL_SET_VOLUME:
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
87 {
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
88 ao_control_vol_t* vol = (ao_control_vol_t*)arg;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
89 volume = MAKELONG(vol->left*655.35,vol->right*655.35);
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
90 waveOutSetVolume(hWaveOut,volume);
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
91 return CONTROL_OK;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
92 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
93 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
94 return -1;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
95 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
96
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
97 // open & setup audio device
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
98 // return: 1=success 0=fail
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
99 static int init(int rate,int channels,int format,int flags)
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
100 {
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
101 WAVEFORMATEX wformat;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
102 DWORD totalBufferSize = (BUFFER_SIZE + sizeof(WAVEHDR)) * BUFFER_COUNT;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
103 MMRESULT result;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
104 unsigned char* buffer;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
105 int i;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
106
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
107 //fill global ao_data
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
108 ao_data.channels=channels;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
109 ao_data.samplerate=rate;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
110 ao_data.format=format;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
111 ao_data.bps=channels*rate;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
112 if(format != AFMT_U8 && format != AFMT_S8)
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
113 ao_data.bps*=2;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
114 if(ao_data.buffersize==-1)
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
115 {
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
116 ao_data.buffersize=audio_out_format_bits(format)/8;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
117 ao_data.buffersize*= channels;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
118 ao_data.buffersize*= SAMPLESIZE;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
119 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
120 mp_msg(MSGT_AO, MSGL_V,"ao_win32: Samplerate:%iHz Channels:%i Format:%s\n",rate, channels, audio_out_format_name(format));
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
121 mp_msg(MSGT_AO, MSGL_V,"ao_win32: Buffersize:%d\n",ao_data.buffersize);
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
122
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
123 //fill waveformatex
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
124 ZeroMemory( &wformat, sizeof(WAVEFORMATEX));
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
125 wformat.cbSize = 0; /* size of _extra_ info */
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
126 wformat.nChannels = channels;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
127 wformat.nSamplesPerSec = rate;
12684
47598beff93a ac3 passthrough, initial patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents: 12155
diff changeset
128 if(format == AFMT_AC3)
47598beff93a ac3 passthrough, initial patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents: 12155
diff changeset
129 {
47598beff93a ac3 passthrough, initial patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents: 12155
diff changeset
130 wformat.wFormatTag = WAVE_FORMAT_DOLBY_AC3_SPDIF;
47598beff93a ac3 passthrough, initial patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents: 12155
diff changeset
131 wformat.wBitsPerSample = 16;
47598beff93a ac3 passthrough, initial patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents: 12155
diff changeset
132 wformat.nBlockAlign = 4;
47598beff93a ac3 passthrough, initial patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents: 12155
diff changeset
133 }
47598beff93a ac3 passthrough, initial patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents: 12155
diff changeset
134 else
47598beff93a ac3 passthrough, initial patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents: 12155
diff changeset
135 {
47598beff93a ac3 passthrough, initial patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents: 12155
diff changeset
136 wformat.wFormatTag = WAVE_FORMAT_PCM;
47598beff93a ac3 passthrough, initial patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents: 12155
diff changeset
137 wformat.wBitsPerSample = audio_out_format_bits(format);
47598beff93a ac3 passthrough, initial patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents: 12155
diff changeset
138 wformat.nBlockAlign = wformat.nChannels * (wformat.wBitsPerSample >> 3);
47598beff93a ac3 passthrough, initial patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents: 12155
diff changeset
139 }
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
140 wformat.nAvgBytesPerSec = wformat.nSamplesPerSec * wformat.nBlockAlign;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
141
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
142 //open sound device
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
143 //WAVE_MAPPER always points to the default wave device on the system
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
144 result = waveOutOpen(&hWaveOut,WAVE_MAPPER,&wformat,(DWORD_PTR)waveOutProc,0,CALLBACK_FUNCTION);
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
145 if(result == WAVERR_BADFORMAT)
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
146 {
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
147 mp_msg(MSGT_AO, MSGL_ERR,"ao_win32: format not supported switching to default\n");
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
148 ao_data.channels = wformat.nChannels = 2;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
149 ao_data.samplerate = wformat.nSamplesPerSec = 44100;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
150 ao_data.format = AFMT_S16_LE;
11511
6e580b901205 original config:
joey
parents: 10106
diff changeset
151 ao_data.bps=ao_data.channels * ao_data.samplerate*2;
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
152 ao_data.buffersize=wformat.wBitsPerSample=16;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
153 wformat.nBlockAlign = wformat.nChannels * (wformat.wBitsPerSample >> 3);
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
154 wformat.nAvgBytesPerSec = wformat.nSamplesPerSec * wformat.nBlockAlign;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
155 ao_data.buffersize/=8;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
156 ao_data.buffersize*= ao_data.channels;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
157 ao_data.buffersize*= SAMPLESIZE;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
158 result = waveOutOpen(&hWaveOut,WAVE_MAPPER,&wformat,(DWORD_PTR)waveOutProc,0,CALLBACK_FUNCTION);
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
159 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
160 if(result != MMSYSERR_NOERROR)
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
161 {
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
162 mp_msg(MSGT_AO, MSGL_ERR,"ao_win32: unable to open wave mapper device\n");
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
163 return 0;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
164 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
165 //save volume
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
166 //allocate buffer memory as one big block
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
167 buffer = malloc(totalBufferSize);
9589
1823fdaffa73 fix -loop problem
faust3
parents: 8657
diff changeset
168 memset(buffer,0x0,totalBufferSize);
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
169 //and setup pointers to each buffer
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
170 waveBlocks = (WAVEHDR*)buffer;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
171 buffer += sizeof(WAVEHDR) * BUFFER_COUNT;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
172 for(i = 0; i < BUFFER_COUNT; i++) {
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
173 waveBlocks[i].lpData = buffer;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
174 buffer += BUFFER_SIZE;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
175 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
176
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
177 return 1;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
178 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
179
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
180 // close audio device
12145
99798c3cdb93 uninit immed flag
alex
parents: 12093
diff changeset
181 static void uninit(int immed)
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
182 {
12146
aaea699d0a67 support immed flag
faust3
parents: 12145
diff changeset
183 if(!immed)while(buffered_bytes > 0)usec_sleep(50000);
aaea699d0a67 support immed flag
faust3
parents: 12145
diff changeset
184 else buffered_bytes=0;
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
185 waveOutReset(hWaveOut);
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
186 waveOutClose(hWaveOut);
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
187 mp_msg(MSGT_AO, MSGL_V,"waveOut device closed\n");
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
188 free(waveBlocks);
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
189 mp_msg(MSGT_AO, MSGL_V,"buffer memory freed\n");
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
190 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
191
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
192 // stop playing and empty buffers (for seeking/pause)
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
193 static void reset()
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
194 {
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
195 waveOutReset(hWaveOut);
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
196 buf_write=0;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
197 buf_write_pos=0;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
198 full_buffers=0;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
199 buffered_bytes=0;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
200 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
201
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
202 // stop playing, keep buffers (for pause)
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
203 static void audio_pause()
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
204 {
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
205 waveOutPause(hWaveOut);
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
206 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
207
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
208 // resume playing, after audio_pause()
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
209 static void audio_resume()
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
210 {
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
211 waveOutRestart(hWaveOut);
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
212 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
213
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
214 // return: how many bytes can be played without blocking
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
215 static int get_space()
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
216 {
12093
f54d02f6ddbf let uninit wait until sound is completely played, don't restore volume at exit, fixed ringbuffer bug, patch by Nehal <nehalmistry at gmx.net>\n
faust3
parents: 11511
diff changeset
217 return BUFFER_COUNT*BUFFER_SIZE - buffered_bytes;
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
218 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
219
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
220 //writes data into buffer, based on ringbuffer code in ao_sdl.c
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
221 static int write_waveOutBuffer(unsigned char* data,int len){
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
222 WAVEHDR* current;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
223 int len2=0;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
224 int x;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
225 while(len>0){
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
226 current = &waveBlocks[buf_write];
12093
f54d02f6ddbf let uninit wait until sound is completely played, don't restore volume at exit, fixed ringbuffer bug, patch by Nehal <nehalmistry at gmx.net>\n
faust3
parents: 11511
diff changeset
227 if(buffered_bytes==BUFFER_COUNT*BUFFER_SIZE) break;
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
228 //unprepare the header if it is prepared
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
229 if(current->dwFlags & WHDR_PREPARED)
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
230 waveOutUnprepareHeader(hWaveOut, current, sizeof(WAVEHDR));
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
231 x=BUFFER_SIZE-buf_write_pos;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
232 if(x>len) x=len;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
233 memcpy(current->lpData+buf_write_pos,data+len2,x);
12151
75fdb659f5bf round len to outburst and increment full_buffers at the correct time, patch by Nehal <nehalmistry at gmx.net>
faust3
parents: 12146
diff changeset
234 if(buf_write_pos==0)full_buffers++;
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
235 len2+=x; len-=x;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
236 buffered_bytes+=x; buf_write_pos+=x;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
237 //prepare header and write data to device
12093
f54d02f6ddbf let uninit wait until sound is completely played, don't restore volume at exit, fixed ringbuffer bug, patch by Nehal <nehalmistry at gmx.net>\n
faust3
parents: 11511
diff changeset
238 current->dwBufferLength = buf_write_pos;
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
239 waveOutPrepareHeader(hWaveOut, current, sizeof(WAVEHDR));
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
240 waveOutWrite(hWaveOut, current, sizeof(WAVEHDR));
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
241
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
242 if(buf_write_pos>=BUFFER_SIZE){ //buffer is full find next
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
243 // block is full, find next!
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
244 buf_write=(buf_write+1)%BUFFER_COUNT;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
245 buf_write_pos=0;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
246 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
247 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
248 return len2;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
249 }
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
250
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
251 // plays 'len' bytes of 'data'
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
252 // it should round it down to outburst*n
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
253 // return: number of bytes played
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
254 static int play(void* data,int len,int flags)
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
255 {
12151
75fdb659f5bf round len to outburst and increment full_buffers at the correct time, patch by Nehal <nehalmistry at gmx.net>
faust3
parents: 12146
diff changeset
256 len = (len/ao_data.outburst)*ao_data.outburst;
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
257 return write_waveOutBuffer(data,len);
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
258 }
10106
b5b7b2f4f069 10l remove unused global
faust3
parents: 9633
diff changeset
259
7913
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
260 // return: delay in seconds between first and last sample in buffer
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
261 static float get_delay()
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
262 {
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
263 return (float)(buffered_bytes + ao_data.buffersize)/(float)ao_data.bps;
61060cbe44fb new windows waveout audio driver
faust3
parents:
diff changeset
264 }