Mercurial > mplayer.hg
annotate libao2/ao_win32.c @ 13963:a22ffcf85c53
fixed missing para tag
author | gabrov |
---|---|
date | Wed, 17 Nov 2004 16:17:47 +0000 |
parents | 83c5f9888576 |
children | a92101a7eb49 |
rev | line source |
---|---|
7913 | 1 /****************************************************************************** |
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 | 4 * |
5 * This program is free software; you can redistribute it and/or modify | |
6 * it under the terms of the GNU General Public License as published by | |
7 * the Free Software Foundation; either version 2 of the License, or | |
8 * (at your option) any later version. | |
9 * | |
10 * This program is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 * GNU General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU General Public License | |
16 * along with this program; if not, write to the Free Software | |
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. | |
18 * | |
19 *****************************************************************************/ | |
20 | |
21 #include <stdio.h> | |
22 #include <stdlib.h> | |
23 #include <windows.h> | |
24 #include <mmsystem.h> | |
25 | |
26 #include "afmt.h" | |
27 #include "audio_out.h" | |
28 #include "audio_out_internal.h" | |
29 #include "../mp_msg.h" | |
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 | 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 |
13017 | 34 #define WAVE_FORMAT_EXTENSIBLE 0xFFFE |
35 | |
36 static const GUID KSDATAFORMAT_SUBTYPE_PCM = { | |
37 0x1,0x0000,0x0010,{0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71} | |
38 }; | |
39 | |
40 typedef struct { | |
41 WAVEFORMATEX Format; | |
42 union { | |
43 WORD wValidBitsPerSample; | |
44 WORD wSamplesPerBlock; | |
45 WORD wReserved; | |
46 } Samples; | |
47 DWORD dwChannelMask; | |
48 GUID SubFormat; | |
49 } WAVEFORMATEXTENSIBLE, *PWAVEFORMATEXTENSIBLE; | |
50 | |
51 #define SPEAKER_FRONT_LEFT 0x1 | |
52 #define SPEAKER_FRONT_RIGHT 0x2 | |
53 #define SPEAKER_FRONT_CENTER 0x4 | |
54 #define SPEAKER_LOW_FREQUENCY 0x8 | |
55 #define SPEAKER_BACK_LEFT 0x10 | |
56 #define SPEAKER_BACK_RIGHT 0x20 | |
57 #define SPEAKER_FRONT_LEFT_OF_CENTER 0x40 | |
58 #define SPEAKER_FRONT_RIGHT_OF_CENTER 0x80 | |
59 #define SPEAKER_BACK_CENTER 0x100 | |
60 #define SPEAKER_SIDE_LEFT 0x200 | |
61 #define SPEAKER_SIDE_RIGHT 0x400 | |
62 #define SPEAKER_TOP_CENTER 0x800 | |
63 #define SPEAKER_TOP_FRONT_LEFT 0x1000 | |
64 #define SPEAKER_TOP_FRONT_CENTER 0x2000 | |
65 #define SPEAKER_TOP_FRONT_RIGHT 0x4000 | |
66 #define SPEAKER_TOP_BACK_LEFT 0x8000 | |
67 #define SPEAKER_TOP_BACK_CENTER 0x10000 | |
68 #define SPEAKER_TOP_BACK_RIGHT 0x20000 | |
69 | |
70 static const int channel_mask[] = { | |
71 SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_LOW_FREQUENCY, | |
72 SPEAKER_FRONT_LEFT | SPEAKER_FRONT_CENTER | SPEAKER_FRONT_RIGHT | SPEAKER_LOW_FREQUENCY, | |
73 SPEAKER_FRONT_LEFT | SPEAKER_FRONT_CENTER | SPEAKER_FRONT_RIGHT | SPEAKER_BACK_CENTER | SPEAKER_LOW_FREQUENCY, | |
74 SPEAKER_FRONT_LEFT | SPEAKER_FRONT_CENTER | SPEAKER_FRONT_RIGHT | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT | SPEAKER_LOW_FREQUENCY | |
75 }; | |
76 | |
77 | |
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
|
78 |
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
|
79 #define SAMPLESIZE 1024 |
7913 | 80 #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
|
81 #define BUFFER_COUNT 16 |
7913 | 82 |
83 | |
84 static WAVEHDR* waveBlocks; //pointer to our ringbuffer memory | |
85 static HWAVEOUT hWaveOut; //handle to the waveout device | |
86 static unsigned int buf_write=0; | |
87 static unsigned int buf_write_pos=0; | |
88 static int full_buffers=0; | |
89 static int buffered_bytes=0; | |
90 | |
91 | |
92 static ao_info_t info = | |
93 { | |
94 "Windows waveOut audio output", | |
95 "win32", | |
96 "Sascha Sommer <saschasommer@freenet.de>", | |
97 "" | |
98 }; | |
99 | |
100 LIBAO_EXTERN(win32) | |
101 | |
102 static void CALLBACK waveOutProc(HWAVEOUT hWaveOut,UINT uMsg,DWORD dwInstance, | |
103 DWORD dwParam1,DWORD dwParam2) | |
104 { | |
105 if(uMsg != WOM_DONE) | |
106 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
|
107 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
|
108 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
|
109 --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
|
110 } 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
|
111 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
|
112 } |
7913 | 113 } |
114 | |
115 // to set/get/query special features/parameters | |
9633
12b1790038b0
64bit libao2 fix by Jens Axboe <mplayer-dev@kernel.dk>
alex
parents:
9589
diff
changeset
|
116 static int control(int cmd,void *arg) |
7913 | 117 { |
118 DWORD volume; | |
119 switch (cmd) | |
120 { | |
121 case AOCONTROL_GET_VOLUME: | |
122 { | |
123 ao_control_vol_t* vol = (ao_control_vol_t*)arg; | |
124 waveOutGetVolume(hWaveOut,&volume); | |
125 vol->left = (float)(LOWORD(volume)/655.35); | |
126 vol->right = (float)(HIWORD(volume)/655.35); | |
127 mp_msg(MSGT_AO, MSGL_DBG2,"ao_win32: volume left:%f volume right:%f\n",vol->left,vol->right); | |
128 return CONTROL_OK; | |
129 } | |
130 case AOCONTROL_SET_VOLUME: | |
131 { | |
132 ao_control_vol_t* vol = (ao_control_vol_t*)arg; | |
133 volume = MAKELONG(vol->left*655.35,vol->right*655.35); | |
134 waveOutSetVolume(hWaveOut,volume); | |
135 return CONTROL_OK; | |
136 } | |
137 } | |
138 return -1; | |
139 } | |
140 | |
141 // open & setup audio device | |
142 // return: 1=success 0=fail | |
143 static int init(int rate,int channels,int format,int flags) | |
144 { | |
13017 | 145 WAVEFORMATEXTENSIBLE wformat; |
7913 | 146 DWORD totalBufferSize = (BUFFER_SIZE + sizeof(WAVEHDR)) * BUFFER_COUNT; |
147 MMRESULT result; | |
148 unsigned char* buffer; | |
149 int i; | |
150 | |
151 //fill global ao_data | |
152 ao_data.channels=channels; | |
153 ao_data.samplerate=rate; | |
154 ao_data.format=format; | |
155 ao_data.bps=channels*rate; | |
156 if(format != AFMT_U8 && format != AFMT_S8) | |
157 ao_data.bps*=2; | |
158 if(ao_data.buffersize==-1) | |
159 { | |
160 ao_data.buffersize=audio_out_format_bits(format)/8; | |
161 ao_data.buffersize*= channels; | |
162 ao_data.buffersize*= SAMPLESIZE; | |
163 } | |
164 mp_msg(MSGT_AO, MSGL_V,"ao_win32: Samplerate:%iHz Channels:%i Format:%s\n",rate, channels, audio_out_format_name(format)); | |
165 mp_msg(MSGT_AO, MSGL_V,"ao_win32: Buffersize:%d\n",ao_data.buffersize); | |
166 | |
167 //fill waveformatex | |
13017 | 168 ZeroMemory( &wformat, sizeof(WAVEFORMATEXTENSIBLE)); |
13735
83c5f9888576
ringbuffer variable intialization fix for multifile playback patch by Rune Petersen <rune.mail-list at mail.tele.dk>
faust3
parents:
13017
diff
changeset
|
169 wformat.Format.cbSize = (channels>2)?sizeof(WAVEFORMATEXTENSIBLE)-sizeof(WAVEFORMATEX):0; |
13017 | 170 wformat.Format.nChannels = channels; |
171 wformat.Format.nSamplesPerSec = rate; | |
12684
47598beff93a
ac3 passthrough, initial patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents:
12155
diff
changeset
|
172 if(format == AFMT_AC3) |
47598beff93a
ac3 passthrough, initial patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents:
12155
diff
changeset
|
173 { |
13017 | 174 wformat.Format.wFormatTag = WAVE_FORMAT_DOLBY_AC3_SPDIF; |
175 wformat.Format.wBitsPerSample = 16; | |
176 wformat.Format.nBlockAlign = 4; | |
12684
47598beff93a
ac3 passthrough, initial patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents:
12155
diff
changeset
|
177 } |
47598beff93a
ac3 passthrough, initial patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents:
12155
diff
changeset
|
178 else |
47598beff93a
ac3 passthrough, initial patch by Gianluigi Tiesi <sherpya at netfarm.it>
faust3
parents:
12155
diff
changeset
|
179 { |
13017 | 180 wformat.Format.wFormatTag = (channels>2)?WAVE_FORMAT_EXTENSIBLE:WAVE_FORMAT_PCM; |
181 wformat.Format.wBitsPerSample = audio_out_format_bits(format); | |
182 wformat.Format.nBlockAlign = wformat.Format.nChannels * (wformat.Format.wBitsPerSample >> 3); | |
183 } | |
184 if(channels>2) | |
185 { | |
186 wformat.dwChannelMask = channel_mask[channels-3]; | |
187 wformat.SubFormat = KSDATAFORMAT_SUBTYPE_PCM; | |
188 wformat.Samples.wValidBitsPerSample=audio_out_format_bits(format); | |
189 } | |
190 | |
191 wformat.Format.nAvgBytesPerSec = wformat.Format.nSamplesPerSec * wformat.Format.nBlockAlign; | |
7913 | 192 |
193 //open sound device | |
194 //WAVE_MAPPER always points to the default wave device on the system | |
13017 | 195 result = waveOutOpen(&hWaveOut,WAVE_MAPPER,(WAVEFORMATEX*)&wformat,(DWORD_PTR)waveOutProc,0,CALLBACK_FUNCTION|WAVE_FORMAT_DIRECT); |
7913 | 196 if(result == WAVERR_BADFORMAT) |
197 { | |
198 mp_msg(MSGT_AO, MSGL_ERR,"ao_win32: format not supported switching to default\n"); | |
13017 | 199 ao_data.channels = wformat.Format.nChannels = 2; |
200 ao_data.samplerate = wformat.Format.nSamplesPerSec = 44100; | |
7913 | 201 ao_data.format = AFMT_S16_LE; |
13017 | 202 ao_data.bps=ao_data.channels * ao_data.samplerate*2; |
203 wformat.Format.wBitsPerSample=16; | |
204 wformat.Format.wFormatTag=WAVE_FORMAT_PCM; | |
205 wformat.Format.nBlockAlign = wformat.Format.nChannels * (wformat.Format.wBitsPerSample >> 3); | |
206 wformat.Format.nAvgBytesPerSec = wformat.Format.nSamplesPerSec * wformat.Format.nBlockAlign; | |
207 ao_data.buffersize=(wformat.Format.wBitsPerSample>>3)*wformat.Format.nChannels*SAMPLESIZE; | |
208 result = waveOutOpen(&hWaveOut,WAVE_MAPPER,(WAVEFORMATEX*)&wformat,(DWORD_PTR)waveOutProc,0,CALLBACK_FUNCTION); | |
7913 | 209 } |
210 if(result != MMSYSERR_NOERROR) | |
211 { | |
212 mp_msg(MSGT_AO, MSGL_ERR,"ao_win32: unable to open wave mapper device\n"); | |
213 return 0; | |
214 } | |
215 //allocate buffer memory as one big block | |
216 buffer = malloc(totalBufferSize); | |
9589 | 217 memset(buffer,0x0,totalBufferSize); |
7913 | 218 //and setup pointers to each buffer |
219 waveBlocks = (WAVEHDR*)buffer; | |
220 buffer += sizeof(WAVEHDR) * BUFFER_COUNT; | |
221 for(i = 0; i < BUFFER_COUNT; i++) { | |
222 waveBlocks[i].lpData = buffer; | |
223 buffer += BUFFER_SIZE; | |
224 } | |
13735
83c5f9888576
ringbuffer variable intialization fix for multifile playback patch by Rune Petersen <rune.mail-list at mail.tele.dk>
faust3
parents:
13017
diff
changeset
|
225 buf_write=0; |
83c5f9888576
ringbuffer variable intialization fix for multifile playback patch by Rune Petersen <rune.mail-list at mail.tele.dk>
faust3
parents:
13017
diff
changeset
|
226 buf_write_pos=0; |
83c5f9888576
ringbuffer variable intialization fix for multifile playback patch by Rune Petersen <rune.mail-list at mail.tele.dk>
faust3
parents:
13017
diff
changeset
|
227 full_buffers=0; |
83c5f9888576
ringbuffer variable intialization fix for multifile playback patch by Rune Petersen <rune.mail-list at mail.tele.dk>
faust3
parents:
13017
diff
changeset
|
228 buffered_bytes=0; |
7913 | 229 |
230 return 1; | |
231 } | |
232 | |
233 // close audio device | |
12145 | 234 static void uninit(int immed) |
7913 | 235 { |
12146 | 236 if(!immed)while(buffered_bytes > 0)usec_sleep(50000); |
237 else buffered_bytes=0; | |
7913 | 238 waveOutReset(hWaveOut); |
239 waveOutClose(hWaveOut); | |
240 mp_msg(MSGT_AO, MSGL_V,"waveOut device closed\n"); | |
241 free(waveBlocks); | |
242 mp_msg(MSGT_AO, MSGL_V,"buffer memory freed\n"); | |
243 } | |
244 | |
245 // stop playing and empty buffers (for seeking/pause) | |
246 static void reset() | |
247 { | |
248 waveOutReset(hWaveOut); | |
249 buf_write=0; | |
250 buf_write_pos=0; | |
251 full_buffers=0; | |
252 buffered_bytes=0; | |
253 } | |
254 | |
255 // stop playing, keep buffers (for pause) | |
256 static void audio_pause() | |
257 { | |
258 waveOutPause(hWaveOut); | |
259 } | |
260 | |
261 // resume playing, after audio_pause() | |
262 static void audio_resume() | |
263 { | |
264 waveOutRestart(hWaveOut); | |
265 } | |
266 | |
267 // return: how many bytes can be played without blocking | |
268 static int get_space() | |
269 { | |
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
|
270 return BUFFER_COUNT*BUFFER_SIZE - buffered_bytes; |
7913 | 271 } |
272 | |
273 //writes data into buffer, based on ringbuffer code in ao_sdl.c | |
274 static int write_waveOutBuffer(unsigned char* data,int len){ | |
275 WAVEHDR* current; | |
276 int len2=0; | |
277 int x; | |
278 while(len>0){ | |
279 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
|
280 if(buffered_bytes==BUFFER_COUNT*BUFFER_SIZE) break; |
7913 | 281 //unprepare the header if it is prepared |
282 if(current->dwFlags & WHDR_PREPARED) | |
283 waveOutUnprepareHeader(hWaveOut, current, sizeof(WAVEHDR)); | |
284 x=BUFFER_SIZE-buf_write_pos; | |
285 if(x>len) x=len; | |
286 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
|
287 if(buf_write_pos==0)full_buffers++; |
7913 | 288 len2+=x; len-=x; |
289 buffered_bytes+=x; buf_write_pos+=x; | |
290 //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
|
291 current->dwBufferLength = buf_write_pos; |
7913 | 292 waveOutPrepareHeader(hWaveOut, current, sizeof(WAVEHDR)); |
293 waveOutWrite(hWaveOut, current, sizeof(WAVEHDR)); | |
294 | |
295 if(buf_write_pos>=BUFFER_SIZE){ //buffer is full find next | |
296 // block is full, find next! | |
297 buf_write=(buf_write+1)%BUFFER_COUNT; | |
298 buf_write_pos=0; | |
299 } | |
300 } | |
301 return len2; | |
302 } | |
303 | |
304 // plays 'len' bytes of 'data' | |
305 // it should round it down to outburst*n | |
306 // return: number of bytes played | |
307 static int play(void* data,int len,int flags) | |
308 { | |
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
|
309 len = (len/ao_data.outburst)*ao_data.outburst; |
7913 | 310 return write_waveOutBuffer(data,len); |
311 } | |
10106 | 312 |
7913 | 313 // return: delay in seconds between first and last sample in buffer |
314 static float get_delay() | |
315 { | |
316 return (float)(buffered_bytes + ao_data.buffersize)/(float)ao_data.bps; | |
317 } |