2001-11-03 02:38:10 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2001-11-08 21:51:28 +00:00
|
|
|
|
2001-11-16 08:31:18 +00:00
|
|
|
#include <linux/em8300.h>
|
2001-11-08 21:51:28 +00:00
|
|
|
#include <sys/ioctl.h>
|
2001-11-03 02:38:10 +00:00
|
|
|
#include <unistd.h>
|
2001-11-08 21:51:28 +00:00
|
|
|
#include <sys/time.h>
|
2001-11-03 02:38:10 +00:00
|
|
|
#include <sys/types.h>
|
2001-11-08 21:51:28 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
2001-11-03 02:38:10 +00:00
|
|
|
|
|
|
|
#include "../config.h"
|
|
|
|
|
|
|
|
#include "afmt.h"
|
|
|
|
|
|
|
|
#include "audio_out.h"
|
|
|
|
#include "audio_out_internal.h"
|
2001-12-22 16:19:00 +00:00
|
|
|
#include "audio_plugin.h"
|
2001-11-03 02:38:10 +00:00
|
|
|
|
2001-11-28 15:33:38 +00:00
|
|
|
void perror( const char *s );
|
|
|
|
#include <errno.h>
|
|
|
|
int sys_nerr;
|
2001-11-08 21:51:28 +00:00
|
|
|
extern int verbose;
|
2001-11-03 02:38:10 +00:00
|
|
|
|
|
|
|
static ao_info_t info =
|
|
|
|
{
|
|
|
|
"DXR3/H+ audio out",
|
|
|
|
"dxr3",
|
|
|
|
"David Holm <dholm@iname.com>",
|
|
|
|
""
|
|
|
|
};
|
|
|
|
|
|
|
|
LIBAO_EXTERN(dxr3)
|
|
|
|
|
2001-11-08 21:51:28 +00:00
|
|
|
static audio_buf_info dxr3_buf_info;
|
2001-11-16 08:31:18 +00:00
|
|
|
static int fd_control = 0, fd_audio = 0;
|
2001-12-22 16:22:32 +00:00
|
|
|
static int need_conversion = 0;
|
2001-11-08 21:51:28 +00:00
|
|
|
|
2001-11-03 02:38:10 +00:00
|
|
|
// to set/get/query special features/parameters
|
|
|
|
static int control(int cmd,int arg)
|
|
|
|
{
|
|
|
|
switch(cmd)
|
|
|
|
{
|
|
|
|
case AOCONTROL_QUERY_FORMAT:
|
|
|
|
return CONTROL_TRUE;
|
|
|
|
case AOCONTROL_GET_VOLUME:
|
|
|
|
case AOCONTROL_SET_VOLUME:
|
2001-11-08 21:51:28 +00:00
|
|
|
return CONTROL_OK;
|
|
|
|
return CONTROL_ERROR;
|
2001-11-03 02:38:10 +00:00
|
|
|
}
|
2001-11-08 21:51:28 +00:00
|
|
|
return CONTROL_UNKNOWN;
|
2001-11-03 02:38:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// open & setup audio device
|
|
|
|
// return: 1=success 0=fail
|
|
|
|
static int init(int rate,int channels,int format,int flags)
|
|
|
|
{
|
2001-12-04 23:13:15 +00:00
|
|
|
int ioval;
|
2001-12-22 16:19:00 +00:00
|
|
|
ao_plugin_data.rate = rate;
|
|
|
|
ao_plugin_data.channels = channels;
|
|
|
|
ao_plugin_data.format = format;
|
|
|
|
ao_plugin_data.sz_mult = 1;
|
|
|
|
ao_plugin_data.sz_fix = 0;
|
|
|
|
ao_plugin_data.delay_mult = 1;
|
|
|
|
ao_plugin_data.delay_fix = 0;
|
|
|
|
ao_plugin_cfg.pl_format_type = format;
|
|
|
|
ao_plugin_cfg.pl_resample_fout = rate;
|
2001-12-04 23:13:15 +00:00
|
|
|
fd_audio = open( "/dev/em8300_ma", O_WRONLY );
|
|
|
|
if( fd_audio < 0 )
|
|
|
|
{
|
|
|
|
printf("AO: [dxr3] Can't open audio device /dev/em8300_ma -> nosound\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2001-11-08 21:51:28 +00:00
|
|
|
|
2001-12-04 23:13:15 +00:00
|
|
|
fd_control = open( "/dev/em8300", O_WRONLY );
|
|
|
|
if( fd_control < 0 )
|
|
|
|
{
|
|
|
|
printf("AO: [dxr3] Can't open em8300 control /dev/em8300\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2001-11-28 15:33:38 +00:00
|
|
|
|
2001-12-28 10:20:16 +00:00
|
|
|
ioval = (format==AFMT_AC3)?EM8300_AUDIOMODE_DIGITALAC3:
|
|
|
|
EM8300_AUDIOMODE_ANALOG;
|
|
|
|
if( ioctl( fd_control, EM8300_IOCTL_SET_AUDIOMODE, &ioval ) < 0 )
|
|
|
|
printf( "AO: [dxr3] Unable to set audiomode\n" );
|
|
|
|
|
2001-12-04 23:13:15 +00:00
|
|
|
ioctl(fd_audio, SNDCTL_DSP_RESET, NULL);
|
2001-12-22 16:19:00 +00:00
|
|
|
|
2001-12-04 23:13:15 +00:00
|
|
|
ao_data.format = format;
|
|
|
|
if( ioctl (fd_audio, SNDCTL_DSP_SETFMT, &ao_data.format) < 0 )
|
2001-12-22 16:19:00 +00:00
|
|
|
printf( "AO: [dxr3] Unable to set audio format\n" );
|
|
|
|
if(format != ao_data.format)
|
2001-12-04 23:13:15 +00:00
|
|
|
{
|
2001-12-22 16:19:00 +00:00
|
|
|
need_conversion |= 0x1;
|
|
|
|
ao_data.format = AFMT_S16_LE;
|
|
|
|
ao_plugin_data.format = format;
|
|
|
|
ao_plugin_cfg.pl_format_type = ao_data.format;
|
2001-12-04 23:13:15 +00:00
|
|
|
}
|
2001-11-08 21:51:28 +00:00
|
|
|
|
2001-12-19 14:31:31 +00:00
|
|
|
ao_data.channels=channels;
|
|
|
|
if(format != AFMT_AC3)
|
2001-12-28 10:20:16 +00:00
|
|
|
{
|
2001-12-19 14:31:31 +00:00
|
|
|
if(channels>2)
|
2001-12-28 10:20:16 +00:00
|
|
|
{
|
2001-12-19 14:31:31 +00:00
|
|
|
if( ioctl (fd_audio, SNDCTL_DSP_CHANNELS, &ao_data.channels) < 0 )
|
|
|
|
printf( "AO: [dxr3] Unable to set number of channels\n" );
|
2001-12-28 10:20:16 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int c = channels-1;
|
2001-12-19 14:31:31 +00:00
|
|
|
if( ioctl(fd_audio,SNDCTL_DSP_STEREO,&c) < 0)
|
|
|
|
printf( "AO: [dxr3] Unable to set number of channels for AC3\n" );
|
2001-12-28 10:20:16 +00:00
|
|
|
}
|
2001-12-19 14:31:31 +00:00
|
|
|
}
|
2001-12-04 23:13:15 +00:00
|
|
|
|
2001-12-19 14:31:31 +00:00
|
|
|
ao_data.bps = channels*rate;
|
|
|
|
if(format != AFMT_U8 && format != AFMT_S8)
|
|
|
|
ao_data.bps*=2;
|
2001-12-28 10:20:16 +00:00
|
|
|
if(format == AFMT_AC3)
|
|
|
|
ao_data.bps*=2;
|
2001-12-04 23:13:15 +00:00
|
|
|
ao_data.samplerate=rate;
|
|
|
|
if( ioctl (fd_audio, SNDCTL_DSP_SPEED, &ao_data.samplerate) < 0 )
|
|
|
|
{
|
|
|
|
printf( "AO: [dxr3] Unable to set samplerate\n" );
|
|
|
|
return 0;
|
|
|
|
}
|
2001-12-22 16:19:00 +00:00
|
|
|
if( rate != ao_data.samplerate )
|
2001-12-04 23:13:15 +00:00
|
|
|
{
|
2001-12-22 16:19:00 +00:00
|
|
|
need_conversion |= 0x2;
|
|
|
|
ao_plugin_data.rate = rate;
|
|
|
|
ao_plugin_cfg.pl_resample_fout = ao_data.samplerate;
|
2001-12-04 23:13:15 +00:00
|
|
|
}
|
2001-11-08 21:51:28 +00:00
|
|
|
|
2001-11-18 13:10:22 +00:00
|
|
|
if( ioctl(fd_audio, SNDCTL_DSP_GETOSPACE, &dxr3_buf_info)==-1 )
|
|
|
|
{
|
2001-11-08 21:51:28 +00:00
|
|
|
int r=0;
|
2001-11-18 13:10:22 +00:00
|
|
|
printf("AO: [dxr3] Driver doesn't support SNDCTL_DSP_GETOSPACE :-(\n");
|
|
|
|
if( ioctl( fd_audio, SNDCTL_DSP_GETBLKSIZE, &r) ==-1 )
|
|
|
|
{
|
2001-11-28 15:33:38 +00:00
|
|
|
printf( "AO: [dxr3] %d bytes/frag (config.h)\n", ao_data.outburst );
|
2001-11-18 13:10:22 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-11-28 15:33:38 +00:00
|
|
|
ao_data.outburst=r;
|
|
|
|
printf( "AO: [dxr3] %d bytes/frag (GETBLKSIZE)\n",ao_data.outburst);
|
2001-11-08 21:51:28 +00:00
|
|
|
}
|
2001-11-18 13:10:22 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("AO: [dxr3] frags: %3d/%d (%d bytes/frag) free: %6d\n",
|
2001-12-28 10:20:16 +00:00
|
|
|
dxr3_buf_info.fragments, dxr3_buf_info.fragstotal, dxr3_buf_info.fragsize, dxr3_buf_info.bytes);
|
|
|
|
ao_data.buffersize=dxr3_buf_info.bytes;
|
2001-11-28 15:33:38 +00:00
|
|
|
ao_data.outburst=dxr3_buf_info.fragsize;
|
2001-11-08 21:51:28 +00:00
|
|
|
}
|
2001-11-03 02:38:10 +00:00
|
|
|
|
2001-12-22 16:19:00 +00:00
|
|
|
if(need_conversion)
|
|
|
|
{
|
|
|
|
|
|
|
|
if(need_conversion & 0x1)
|
|
|
|
{
|
|
|
|
if(!audio_plugin_format.init())
|
|
|
|
return 0;
|
|
|
|
ao_plugin_data.len = ao_data.buffersize*2;
|
|
|
|
audio_plugin_format.control(AOCONTROL_PLUGIN_SET_LEN,0);
|
|
|
|
}
|
|
|
|
if(need_conversion & 0x2)
|
|
|
|
{
|
|
|
|
if(!audio_plugin_resample.init())
|
|
|
|
return 0;
|
|
|
|
ao_plugin_data.len = ao_data.buffersize*2;
|
|
|
|
audio_plugin_resample.control(AOCONTROL_PLUGIN_SET_LEN,0);
|
|
|
|
}
|
|
|
|
}
|
2001-12-28 10:20:16 +00:00
|
|
|
|
|
|
|
|
2001-11-16 08:31:18 +00:00
|
|
|
ioval = EM8300_PLAYMODE_PLAY;
|
2001-11-18 13:10:22 +00:00
|
|
|
if( ioctl( fd_control, EM8300_IOCTL_SET_PLAYMODE, &ioval ) < 0 )
|
|
|
|
printf( "AO: [dxr3] Unable to set playmode\n" );
|
2001-11-16 08:31:18 +00:00
|
|
|
close( fd_control );
|
2001-11-08 21:51:28 +00:00
|
|
|
|
|
|
|
return 1;
|
2001-11-03 02:38:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// close audio device
|
|
|
|
static void uninit()
|
|
|
|
{
|
2001-11-18 13:10:22 +00:00
|
|
|
printf( "AO: [dxr3] Uninitializing\n" );
|
|
|
|
if( ioctl(fd_audio, SNDCTL_DSP_RESET, NULL) < 0 )
|
|
|
|
printf( "AO: [dxr3] Unable to reset device\n" );
|
2001-12-22 16:19:00 +00:00
|
|
|
if(need_conversion & 0x1) audio_plugin_format.uninit();
|
|
|
|
if(need_conversion & 0x2) audio_plugin_resample.uninit();
|
2001-11-16 08:31:18 +00:00
|
|
|
close( fd_audio );
|
2001-11-28 15:33:38 +00:00
|
|
|
close( fd_control ); /* Just in case */
|
2001-11-03 02:38:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// stop playing and empty buffers (for seeking/pause)
|
|
|
|
static void reset()
|
|
|
|
{
|
2001-11-18 13:10:22 +00:00
|
|
|
if( ioctl(fd_audio, SNDCTL_DSP_RESET, NULL) < 0 )
|
|
|
|
printf( "AO: [dxr3] Unable to reset device\n" );
|
2001-12-22 16:19:00 +00:00
|
|
|
if(need_conversion & 0x1) audio_plugin_format.reset();
|
|
|
|
if(need_conversion & 0x2) audio_plugin_resample.reset();
|
2001-11-03 02:38:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// stop playing, keep buffers (for pause)
|
|
|
|
static void audio_pause()
|
|
|
|
{
|
2001-11-18 13:10:22 +00:00
|
|
|
int ioval;
|
2001-11-29 17:31:58 +00:00
|
|
|
reset();
|
2001-11-18 13:10:22 +00:00
|
|
|
fd_control = open( "/dev/em8300", O_WRONLY );
|
|
|
|
if( fd_control < 0 )
|
|
|
|
printf( "AO: [dxr3] Oops, unable to pause playback\n" );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ioval = EM8300_PLAYMODE_PAUSED;
|
|
|
|
if( ioctl( fd_control, EM8300_IOCTL_SET_PLAYMODE, &ioval ) < 0 )
|
|
|
|
printf( "AO: [dxr3] Unable to pause playback\n" );
|
|
|
|
close( fd_control );
|
|
|
|
}
|
2001-11-03 02:38:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// resume playing, after audio_pause()
|
|
|
|
static void audio_resume()
|
|
|
|
{
|
2001-11-18 13:10:22 +00:00
|
|
|
int ioval;
|
|
|
|
fd_control = open( "/dev/em8300", O_WRONLY );
|
|
|
|
if( fd_control < 0 )
|
|
|
|
printf( "AO: [dxr3] Oops, unable to resume playback\n" );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ioval = EM8300_PLAYMODE_PLAY;
|
|
|
|
if( ioctl( fd_control, EM8300_IOCTL_SET_PLAYMODE, &ioval ) < 0 )
|
|
|
|
printf( "AO: [dxr3] Unable to resume playback\n" );
|
|
|
|
close( fd_control );
|
|
|
|
}
|
2001-11-03 02:38:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// return: how many bytes can be played without blocking
|
|
|
|
static int get_space()
|
|
|
|
{
|
2001-11-18 13:10:22 +00:00
|
|
|
int space = 0;
|
2001-12-28 10:20:16 +00:00
|
|
|
if( ioctl(fd_audio, SNDCTL_DSP_GETOSPACE, &dxr3_buf_info)==-1 )
|
2001-11-18 13:10:22 +00:00
|
|
|
{
|
2001-12-28 10:20:16 +00:00
|
|
|
printf( "AO: [dxr3] Unable to get unplayed bytes in buffer\n" );
|
|
|
|
return ao_data.outburst;
|
2001-11-18 13:10:22 +00:00
|
|
|
}
|
2001-12-28 10:20:16 +00:00
|
|
|
space=dxr3_buf_info.fragments*dxr3_buf_info.fragsize;
|
|
|
|
|
2001-11-18 13:10:22 +00:00
|
|
|
return space;
|
2001-11-03 02:38:10 +00:00
|
|
|
}
|
|
|
|
|
2001-11-30 22:18:51 +00:00
|
|
|
// playes 'len' bytes of 'data'
|
|
|
|
// upsamples if samplerate < 44100
|
|
|
|
// return: number of bytes played
|
2001-11-03 02:38:10 +00:00
|
|
|
static int play(void* data,int len,int flags)
|
|
|
|
{
|
2001-12-22 16:19:00 +00:00
|
|
|
int tmp = get_space();
|
|
|
|
int size = (tmp<len)?tmp:len;
|
|
|
|
ao_plugin_data.data = data;
|
|
|
|
ao_plugin_data.len = size;
|
|
|
|
if(need_conversion & 0x1) audio_plugin_format.play();
|
|
|
|
if(need_conversion & 0x2) audio_plugin_resample.play();
|
2001-12-28 10:20:16 +00:00
|
|
|
if( ioctl(fd_audio, EM8300_IOCTL_AUDIO_SETPTS, &ao_data.pts) < 0 )
|
|
|
|
printf( "AO: [dxr3] Unable to set pts\n" );
|
2001-12-22 16:19:00 +00:00
|
|
|
write(fd_audio,ao_plugin_data.data,ao_plugin_data.len);
|
|
|
|
return size;
|
2001-11-03 02:38:10 +00:00
|
|
|
}
|
|
|
|
|
2001-11-30 22:18:51 +00:00
|
|
|
// return: delay in seconds between first and last sample in buffer
|
2001-11-28 15:33:38 +00:00
|
|
|
static float get_delay()
|
2001-11-03 02:38:10 +00:00
|
|
|
{
|
2001-12-28 10:20:16 +00:00
|
|
|
return 0.0;
|
2001-11-03 02:38:10 +00:00
|
|
|
}
|
|
|
|
|