annotate libao2/ao_dxr3.c @ 3615:2a75bbac913e

Remove lame upsampler, cleaned out stuff relating to setting channels.
author mswitch
date Wed, 19 Dec 2001 14:31:31 +0000
parents f8bfaa1c9487
children a515ff1954fd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
1 #include <stdio.h>
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
2 #include <stdlib.h>
2770
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
3
2921
ee37c7fc3022 dxr3-patch4 by David Holm
arpi
parents: 2770
diff changeset
4 #include <linux/em8300.h>
2770
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
5 #include <sys/ioctl.h>
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
6 #include <unistd.h>
2770
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
7 #include <sys/time.h>
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
8 #include <sys/types.h>
2770
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
9 #include <sys/stat.h>
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
10 #include <fcntl.h>
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
11
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
12 #include "../config.h"
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
13
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
14 #include "afmt.h"
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
15
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
16 #include "audio_out.h"
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
17 #include "audio_out_internal.h"
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
18
3186
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
19 void perror( const char *s );
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
20 #include <errno.h>
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
21 int sys_nerr;
2770
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
22 extern int verbose;
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
23
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
24 static ao_info_t info =
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
25 {
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
26 "DXR3/H+ audio out",
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
27 "dxr3",
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
28 "David Holm <dholm@iname.com>",
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
29 ""
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
30 };
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
31
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
32 LIBAO_EXTERN(dxr3)
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
33
2770
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
34 static audio_buf_info dxr3_buf_info;
2921
ee37c7fc3022 dxr3-patch4 by David Holm
arpi
parents: 2770
diff changeset
35 static int fd_control = 0, fd_audio = 0;
2770
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
36
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
37 // to set/get/query special features/parameters
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
38 static int control(int cmd,int arg)
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
39 {
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
40 switch(cmd)
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
41 {
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
42 case AOCONTROL_QUERY_FORMAT:
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
43 return CONTROL_TRUE;
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
44 case AOCONTROL_GET_VOLUME:
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
45 case AOCONTROL_SET_VOLUME:
2770
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
46 return CONTROL_OK;
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
47 return CONTROL_ERROR;
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
48 }
2770
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
49 return CONTROL_UNKNOWN;
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
50 }
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
51
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
52 // open & setup audio device
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
53 // return: 1=success 0=fail
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
54 static int init(int rate,int channels,int format,int flags)
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
55 {
3328
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
56 int ioval;
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
57 fd_audio = open( "/dev/em8300_ma", O_WRONLY );
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
58 if( fd_audio < 0 )
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
59 {
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
60 printf("AO: [dxr3] Can't open audio device /dev/em8300_ma -> nosound\n");
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
61 return 0;
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
62 }
2770
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
63
3328
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
64 fd_control = open( "/dev/em8300", O_WRONLY );
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
65 if( fd_control < 0 )
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
66 {
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
67 printf("AO: [dxr3] Can't open em8300 control /dev/em8300\n");
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
68 return 0;
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
69 }
3186
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
70
3328
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
71 ioctl(fd_audio, SNDCTL_DSP_RESET, NULL);
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
72 ao_data.format = format;
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
73 if( ioctl (fd_audio, SNDCTL_DSP_SETFMT, &ao_data.format) < 0 )
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
74 printf( "AO: [dxr3] Unable to set audio format\n" );
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
75 if(format == AFMT_AC3 && ao_data.format != AFMT_AC3)
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
76 {
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
77 printf("AO: [dxr3] Can't set audio device /dev/em8300_ma to AC3 output\n");
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
78 return 0;
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
79 }
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
80
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
81 printf("AO: [dxr3] Sample format: %s (requested: %s)\n",
3186
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
82 audio_out_format_name(ao_data.format), audio_out_format_name(format));
2770
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
83
3615
2a75bbac913e Remove lame upsampler, cleaned out stuff relating to setting channels.
mswitch
parents: 3387
diff changeset
84 ao_data.channels=channels;
2a75bbac913e Remove lame upsampler, cleaned out stuff relating to setting channels.
mswitch
parents: 3387
diff changeset
85 if(format != AFMT_AC3)
2a75bbac913e Remove lame upsampler, cleaned out stuff relating to setting channels.
mswitch
parents: 3387
diff changeset
86 if(channels>2)
2a75bbac913e Remove lame upsampler, cleaned out stuff relating to setting channels.
mswitch
parents: 3387
diff changeset
87 if( ioctl (fd_audio, SNDCTL_DSP_CHANNELS, &ao_data.channels) < 0 )
2a75bbac913e Remove lame upsampler, cleaned out stuff relating to setting channels.
mswitch
parents: 3387
diff changeset
88 printf( "AO: [dxr3] Unable to set number of channels\n" );
2a75bbac913e Remove lame upsampler, cleaned out stuff relating to setting channels.
mswitch
parents: 3387
diff changeset
89 else
2a75bbac913e Remove lame upsampler, cleaned out stuff relating to setting channels.
mswitch
parents: 3387
diff changeset
90 {
2a75bbac913e Remove lame upsampler, cleaned out stuff relating to setting channels.
mswitch
parents: 3387
diff changeset
91 int c = channels-1;
2a75bbac913e Remove lame upsampler, cleaned out stuff relating to setting channels.
mswitch
parents: 3387
diff changeset
92 if( ioctl(fd_audio,SNDCTL_DSP_STEREO,&c) < 0)
2a75bbac913e Remove lame upsampler, cleaned out stuff relating to setting channels.
mswitch
parents: 3387
diff changeset
93 printf( "AO: [dxr3] Unable to set number of channels for AC3\n" );
2a75bbac913e Remove lame upsampler, cleaned out stuff relating to setting channels.
mswitch
parents: 3387
diff changeset
94 }
3328
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
95
3615
2a75bbac913e Remove lame upsampler, cleaned out stuff relating to setting channels.
mswitch
parents: 3387
diff changeset
96 ao_data.bps = channels*rate;
2a75bbac913e Remove lame upsampler, cleaned out stuff relating to setting channels.
mswitch
parents: 3387
diff changeset
97 if(format != AFMT_U8 && format != AFMT_S8)
2a75bbac913e Remove lame upsampler, cleaned out stuff relating to setting channels.
mswitch
parents: 3387
diff changeset
98 ao_data.bps*=2;
3328
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
99 ao_data.samplerate=rate;
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
100 if( ioctl (fd_audio, SNDCTL_DSP_SPEED, &ao_data.samplerate) < 0 )
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
101 {
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
102 printf( "AO: [dxr3] Unable to set samplerate\n" );
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
103 return 0;
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
104 }
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
105 if( rate < ao_data.samplerate )
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
106 {
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
107 ao_data.samplerate = 44100;
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
108 ioctl(fd_audio, SNDCTL_DSP_SPEED, &ao_data.samplerate);
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
109 if( ao_data.samplerate != 44100 )
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
110 {
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
111 printf( "AO: [dxr3] Unable to set samplerate\n" );
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
112 return 0;
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
113 }
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
114 printf("AO: [dxr3] Using %d Hz samplerate (requested: %d) (Upsampling)\n",ao_data.samplerate,rate);
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
115 ao_data.samplerate = rate;
67bcfb9749df Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
mswitch
parents: 3231
diff changeset
116 }
3231
4bc4354ec88e Added support for upsampling since dxr3/h+ only supports 44100Hz and 48000Hz, currently it only works on 44100/(2*ratio)
mswitch
parents: 3218
diff changeset
117 else printf("AO: [dxr3] Using %d Hz samplerate (requested: %d)\n",ao_data.samplerate,rate);
2770
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
118
2968
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
119 if( ioctl(fd_audio, SNDCTL_DSP_GETOSPACE, &dxr3_buf_info)==-1 )
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
120 {
2770
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
121 int r=0;
2968
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
122 printf("AO: [dxr3] Driver doesn't support SNDCTL_DSP_GETOSPACE :-(\n");
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
123 if( ioctl( fd_audio, SNDCTL_DSP_GETBLKSIZE, &r) ==-1 )
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
124 {
3186
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
125 printf( "AO: [dxr3] %d bytes/frag (config.h)\n", ao_data.outburst );
2968
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
126 }
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
127 else
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
128 {
3186
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
129 ao_data.outburst=r;
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
130 printf( "AO: [dxr3] %d bytes/frag (GETBLKSIZE)\n",ao_data.outburst);
2770
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
131 }
2968
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
132 }
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
133 else
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
134 {
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
135 printf("AO: [dxr3] frags: %3d/%d (%d bytes/frag) free: %6d\n",
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
136 dxr3_buf_info.fragments+1, dxr3_buf_info.fragstotal, dxr3_buf_info.fragsize, dxr3_buf_info.bytes);
3218
8ba06b63f873 Fix green borders -> black borders, patch from D. Holm, also small fix to dxr3 ao.
atmos4
parents: 3201
diff changeset
137 ao_data.buffersize=(dxr3_buf_info.bytes/2);
3186
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
138 ao_data.outburst=dxr3_buf_info.fragsize;
2770
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
139 }
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
140
2921
ee37c7fc3022 dxr3-patch4 by David Holm
arpi
parents: 2770
diff changeset
141 ioval = EM8300_PLAYMODE_PLAY;
2968
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
142 if( ioctl( fd_control, EM8300_IOCTL_SET_PLAYMODE, &ioval ) < 0 )
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
143 printf( "AO: [dxr3] Unable to set playmode\n" );
2921
ee37c7fc3022 dxr3-patch4 by David Holm
arpi
parents: 2770
diff changeset
144 close( fd_control );
2770
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
145
b9732eaa82d9 DXR3 beta2 patch by David Holm.
atmos4
parents: 2645
diff changeset
146 return 1;
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
147 }
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
148
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
149 // close audio device
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
150 static void uninit()
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
151 {
2968
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
152 printf( "AO: [dxr3] Uninitializing\n" );
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
153 if( ioctl(fd_audio, SNDCTL_DSP_RESET, NULL) < 0 )
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
154 printf( "AO: [dxr3] Unable to reset device\n" );
2921
ee37c7fc3022 dxr3-patch4 by David Holm
arpi
parents: 2770
diff changeset
155 close( fd_audio );
3186
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
156 close( fd_control ); /* Just in case */
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
157 }
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
158
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
159 // stop playing and empty buffers (for seeking/pause)
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
160 static void reset()
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
161 {
2968
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
162 if( ioctl(fd_audio, SNDCTL_DSP_RESET, NULL) < 0 )
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
163 printf( "AO: [dxr3] Unable to reset device\n" );
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
164 }
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
165
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
166 // stop playing, keep buffers (for pause)
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
167 static void audio_pause()
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
168 {
2968
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
169 int ioval;
3201
039a973b3dda Newest DXR3 patch (improved 1.0rc2) by David Holm.
atmos4
parents: 3186
diff changeset
170 reset();
2968
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
171 fd_control = open( "/dev/em8300", O_WRONLY );
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
172 if( fd_control < 0 )
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
173 printf( "AO: [dxr3] Oops, unable to pause playback\n" );
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
174 else
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
175 {
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
176 ioval = EM8300_PLAYMODE_PAUSED;
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
177 if( ioctl( fd_control, EM8300_IOCTL_SET_PLAYMODE, &ioval ) < 0 )
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
178 printf( "AO: [dxr3] Unable to pause playback\n" );
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
179 close( fd_control );
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
180 }
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
181 }
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
182
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
183 // resume playing, after audio_pause()
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
184 static void audio_resume()
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
185 {
2968
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
186 int ioval;
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
187 fd_control = open( "/dev/em8300", O_WRONLY );
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
188 if( fd_control < 0 )
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
189 printf( "AO: [dxr3] Oops, unable to resume playback\n" );
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
190 else
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
191 {
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
192 ioval = EM8300_PLAYMODE_PLAY;
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
193 if( ioctl( fd_control, EM8300_IOCTL_SET_PLAYMODE, &ioval ) < 0 )
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
194 printf( "AO: [dxr3] Unable to resume playback\n" );
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
195 close( fd_control );
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
196 }
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
197 }
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
198
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
199 // return: how many bytes can be played without blocking
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
200 static int get_space()
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
201 {
2968
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
202 int space = 0;
3186
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
203 if( ioctl(fd_audio, SNDCTL_DSP_GETODELAY, &space) < 0 )
2968
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
204 {
3186
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
205 printf( "AO: [dxr3] Unable to get unplayed bytes in buffer\n" );
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
206 return ao_data.outburst;
2968
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
207 }
3186
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
208 space = ao_data.buffersize - space;
3201
039a973b3dda Newest DXR3 patch (improved 1.0rc2) by David Holm.
atmos4
parents: 3186
diff changeset
209 space /= ao_data.outburst; /* This is a smart way of doing a fast modulo reduction */
039a973b3dda Newest DXR3 patch (improved 1.0rc2) by David Holm.
atmos4
parents: 3186
diff changeset
210 space *= ao_data.outburst; /* fetched from ao_mpegpes.c */
2968
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
211 return space;
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
212 }
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
213
3231
4bc4354ec88e Added support for upsampling since dxr3/h+ only supports 44100Hz and 48000Hz, currently it only works on 44100/(2*ratio)
mswitch
parents: 3218
diff changeset
214 // playes 'len' bytes of 'data'
4bc4354ec88e Added support for upsampling since dxr3/h+ only supports 44100Hz and 48000Hz, currently it only works on 44100/(2*ratio)
mswitch
parents: 3218
diff changeset
215 // upsamples if samplerate < 44100
4bc4354ec88e Added support for upsampling since dxr3/h+ only supports 44100Hz and 48000Hz, currently it only works on 44100/(2*ratio)
mswitch
parents: 3218
diff changeset
216 // return: number of bytes played
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
217 static int play(void* data,int len,int flags)
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
218 {
3615
2a75bbac913e Remove lame upsampler, cleaned out stuff relating to setting channels.
mswitch
parents: 3387
diff changeset
219 len /= ao_data.outburst;
2a75bbac913e Remove lame upsampler, cleaned out stuff relating to setting channels.
mswitch
parents: 3387
diff changeset
220 return write(fd_audio,data,len*ao_data.outburst);
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
221 }
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
222
3231
4bc4354ec88e Added support for upsampling since dxr3/h+ only supports 44100Hz and 48000Hz, currently it only works on 44100/(2*ratio)
mswitch
parents: 3218
diff changeset
223 // return: delay in seconds between first and last sample in buffer
3186
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
224 static float get_delay()
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
225 {
3231
4bc4354ec88e Added support for upsampling since dxr3/h+ only supports 44100Hz and 48000Hz, currently it only works on 44100/(2*ratio)
mswitch
parents: 3218
diff changeset
226 int r=0;
3186
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
227 if( ioctl(fd_audio, SNDCTL_DSP_GETODELAY, &r) < 0 )
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
228 {
2968
9989497ab31e Minor fixes by David.
atmos4
parents: 2921
diff changeset
229 printf( "AO: [dxr3] Unable to get unplayed bytes in buffer\n" );
3186
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
230 return ((float)ao_data.buffersize)/(float)ao_data.bps;
1d4fb4d9aab5 Patch by D. Holm to make audio with dxr3 working.
atmos4
parents: 2968
diff changeset
231 }
3231
4bc4354ec88e Added support for upsampling since dxr3/h+ only supports 44100Hz and 48000Hz, currently it only works on 44100/(2*ratio)
mswitch
parents: 3218
diff changeset
232 return (((float)r)/(float)ao_data.bps);
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
233 }
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents:
diff changeset
234