bdd8875692
variables again to let the threads end normally. Re-implenented the method closewaveoutput() for some modules, move the destructor code to it and call it after leaving the mixer thread. This fixes a deadlock in the "soundwin" module if Bochs is compiled with plugin support.
100 lines
3.1 KiB
C++
100 lines
3.1 KiB
C++
/////////////////////////////////////////////////////////////////////////
|
|
// $Id$
|
|
/////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2013-2015 The Bochs Project
|
|
//
|
|
// This library is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
// License as published by the Free Software Foundation; either
|
|
// version 2 of the License, or (at your option) any later version.
|
|
//
|
|
// This library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, write to the Free Software
|
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// ALSA PCM input/output and MIDI output support written by Volker Ruppert
|
|
|
|
#if BX_HAVE_SOUND_ALSA
|
|
|
|
#define BX_SOUND_ALSA_BUFSIZE BX_SOUNDLOW_WAVEPACKETSIZE * 2
|
|
|
|
#define ALSA_PCM_NEW_HW_PARAMS_API
|
|
#include <alsa/asoundlib.h>
|
|
|
|
typedef struct {
|
|
snd_pcm_t *handle;
|
|
snd_pcm_uframes_t frames;
|
|
int alsa_bufsize, audio_bufsize;
|
|
char *buffer;
|
|
} alsa_pcm_t;
|
|
|
|
class bx_soundlow_waveout_alsa_c : public bx_soundlow_waveout_c {
|
|
public:
|
|
bx_soundlow_waveout_alsa_c();
|
|
virtual ~bx_soundlow_waveout_alsa_c() {}
|
|
|
|
virtual int openwaveoutput(const char *wavedev);
|
|
virtual int set_pcm_params(bx_pcm_param_t *param);
|
|
virtual int get_packetsize();
|
|
virtual int output(int length, Bit8u data[]);
|
|
virtual int closewaveoutput();
|
|
private:
|
|
alsa_pcm_t alsa_waveout;
|
|
};
|
|
|
|
class bx_soundlow_wavein_alsa_c : public bx_soundlow_wavein_c {
|
|
public:
|
|
bx_soundlow_wavein_alsa_c();
|
|
virtual ~bx_soundlow_wavein_alsa_c();
|
|
|
|
virtual int openwaveinput(const char *wavedev, sound_record_handler_t rh);
|
|
virtual int startwaverecord(bx_pcm_param_t *param);
|
|
virtual int getwavepacket(int length, Bit8u data[]);
|
|
virtual int stopwaverecord();
|
|
|
|
static void record_timer_handler(void *);
|
|
void record_timer(void);
|
|
private:
|
|
alsa_pcm_t alsa_wavein;
|
|
bx_pcm_param_t wavein_param;
|
|
Bit8u audio_buffer[BX_SOUND_ALSA_BUFSIZE];
|
|
};
|
|
|
|
class bx_soundlow_midiout_alsa_c : public bx_soundlow_midiout_c {
|
|
public:
|
|
bx_soundlow_midiout_alsa_c();
|
|
virtual ~bx_soundlow_midiout_alsa_c();
|
|
|
|
virtual int openmidioutput(const char *mididev);
|
|
virtual int sendmidicommand(int delta, int command, int length, Bit8u data[]);
|
|
virtual int closemidioutput();
|
|
|
|
private:
|
|
int alsa_seq_open(const char *alsadev);
|
|
int alsa_seq_output(int delta, int command, int length, Bit8u data[]);
|
|
|
|
struct {
|
|
snd_seq_t *handle;
|
|
int source_port;
|
|
} alsa_seq;
|
|
};
|
|
|
|
class bx_sound_alsa_c : public bx_sound_lowlevel_c {
|
|
public:
|
|
bx_sound_alsa_c() : bx_sound_lowlevel_c("alsa") {}
|
|
virtual ~bx_sound_alsa_c() {}
|
|
|
|
virtual bx_soundlow_waveout_c* get_waveout();
|
|
virtual bx_soundlow_wavein_c* get_wavein();
|
|
virtual bx_soundlow_midiout_c* get_midiout();
|
|
} bx_sound_alsa;
|
|
|
|
#endif
|