Subversion Repositories Kolibri OS

Rev

Rev 695 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 695 Rev 802
Line 8... Line 8...
8
; Serge 2006-2008
8
; Serge 2006-2008
9
; email: infinity_sound@mail.ru
9
; email: infinity_sound@mail.ru
Line 10... Line 10...
10
 
10
 
Line -... Line 11...
-
 
11
format MS COFF
-
 
12
 
-
 
13
DEBUG             equ 1
-
 
14
 
-
 
15
 
-
 
16
include 'proc32.inc'
-
 
17
include 'main.inc'
Line 11... Line 18...
11
format MS COFF
18
include 'imports.inc'
12
 
19
 
Line 13... Line 20...
13
 
20
 
14
CURRENT_API     equ   0x0101      ;1.01
21
CURRENT_API     equ   0x0101      ;1.01
Line 15... Line -...
15
COMPATIBLE_API  equ   0x0100      ;1.00
-
 
16
 
-
 
17
API_VERSION     equ   (COMPATIBLE_API shl 16) or CURRENT_API
-
 
18
SOUND_VERSION   equ   CURRENT_API
-
 
19
 
-
 
20
 
-
 
21
include 'proc32.inc'
-
 
22
 
22
COMPATIBLE_API  equ   0x0100      ;1.00
23
;include 'system.inc'
23
 
24
include 'main.inc'
24
API_VERSION     equ   (COMPATIBLE_API shl 16) or CURRENT_API
Line 25... Line 25...
25
 
25
SOUND_VERSION   equ   CURRENT_API
Line 26... Line 26...
26
include 'imports.inc'
26
 
Line 27... Line -...
27
 
-
 
28
FORCE_MMX         equ 0  ;set to 1 to force use mmx or
-
 
29
FORCE_MMX_128     equ 0  ;integer sse2 extensions
-
 
30
                         ;and reduce driver size
27
 
Line 31... Line 28...
31
 
28
FORCE_MMX         equ 0  ;set to 1 to force use mmx or
32
;USE_SSE          equ 0
29
FORCE_MMX_128     equ 0  ;integer sse2 extensions
Line 1207... Line 1204...
1207
align 16
1204
align 16
1208
resampler_params:
1205
resampler_params:
1209
     ;r_size    r_dt   resampler_func
1206
     ;r_size    r_dt   resampler_func
1210
     dd 0,0,0                                  ; 0  PCM_ALL
1207
     dd 0,0,0                                  ; 0  PCM_ALL
1211
     dd 16384,      0, copy_stream    ; 1  PCM_2_16_48
1208
     dd 16384,      0, copy_stream    ; 1  PCM_2_16_48
1212
     dd 16384,      0, m16_stereo     ; 2  PCM_1_16_48
1209
     dd  8192,      0, m16_stereo     ; 2  PCM_1_16_48
Line 1213... Line 1210...
1213
 
1210
 
1214
     dd 16384,  30109, resample_2     ; 3  PCM_2_16_44
1211
     dd 16384,  30109, resample_2     ; 3  PCM_2_16_44
Line 1215... Line 1212...
1215
     dd  8192,  30109, resample_1     ; 4  PCM_1_16_44
1212
     dd  8192,  30109, resample_1     ; 4  PCM_1_16_44