2009-09-09 00:06:07 +02:00
|
|
|
// Copyright (c) 2009, Grigori Goronzy
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
|
|
|
/// @file audio_player_oss.h
|
|
|
|
/// @see audio_player_oss.cpp
|
|
|
|
/// @ingroup audio_output
|
|
|
|
///
|
|
|
|
|
|
|
|
#ifdef WITH_OSS
|
|
|
|
#include <sys/ioctl.h>
|
2012-05-23 05:38:50 +02:00
|
|
|
|
|
|
|
#include <wx/thread.h>
|
2009-09-11 04:36:34 +02:00
|
|
|
|
|
|
|
#include <fcntl.h>
|
2009-09-09 00:06:07 +02:00
|
|
|
#ifdef HAVE_SOUNDCARD_H
|
|
|
|
# include <soundcard.h>
|
|
|
|
#else
|
|
|
|
# ifdef HAVE_SYS_SOUNDCARD_H
|
|
|
|
# include <sys/soundcard.h>
|
|
|
|
# endif
|
|
|
|
#endif
|
2009-09-11 04:36:34 +02:00
|
|
|
|
2009-09-09 00:06:07 +02:00
|
|
|
#include "include/aegisub/audio_player.h"
|
2011-11-25 20:30:42 +01:00
|
|
|
|
2012-01-08 02:33:39 +01:00
|
|
|
class AudioProvider;
|
2009-09-09 00:06:07 +02:00
|
|
|
class OSSPlayer;
|
|
|
|
|
2012-12-02 22:08:42 +01:00
|
|
|
/// Worker thread to asynchronously write audio data to the output device
|
2009-09-09 00:06:07 +02:00
|
|
|
class OSSPlayerThread : public wxThread {
|
2012-01-08 02:33:55 +01:00
|
|
|
/// Parent player
|
2009-09-09 00:06:07 +02:00
|
|
|
OSSPlayer *parent;
|
|
|
|
|
|
|
|
public:
|
2012-01-08 02:33:55 +01:00
|
|
|
/// Constructor
|
|
|
|
/// @param parent Player to get audio data and playback state from
|
2009-09-09 00:06:07 +02:00
|
|
|
OSSPlayerThread(OSSPlayer *parent);
|
|
|
|
|
2012-01-08 02:33:55 +01:00
|
|
|
/// Main thread entry point
|
2009-09-09 00:06:07 +02:00
|
|
|
wxThread::ExitCode Entry();
|
|
|
|
};
|
|
|
|
|
|
|
|
class OSSPlayer : public AudioPlayer {
|
|
|
|
friend class OSSPlayerThread;
|
|
|
|
|
2012-01-08 02:33:55 +01:00
|
|
|
/// sample rate of audio
|
2013-12-12 01:29:48 +01:00
|
|
|
unsigned int rate = 0;
|
2009-09-09 00:06:07 +02:00
|
|
|
|
2012-03-20 00:31:33 +01:00
|
|
|
/// Worker thread that does the actual writing
|
2013-12-12 01:29:48 +01:00
|
|
|
OSSPlayerThread *thread = nullptr;
|
2009-09-09 00:06:07 +02:00
|
|
|
|
2012-01-08 02:33:55 +01:00
|
|
|
/// Is the player currently playing?
|
2013-12-12 01:29:48 +01:00
|
|
|
volatile bool playing = false;
|
2009-09-09 00:06:07 +02:00
|
|
|
|
2012-01-08 02:33:55 +01:00
|
|
|
/// Current volume level
|
2013-12-12 01:29:48 +01:00
|
|
|
volatile float volume = 1.f;
|
2009-09-09 00:06:07 +02:00
|
|
|
|
2012-01-08 02:33:55 +01:00
|
|
|
/// first frame of playback
|
2013-12-12 01:29:48 +01:00
|
|
|
volatile unsigned long start_frame = 0;
|
2009-09-09 00:06:07 +02:00
|
|
|
|
2012-01-08 02:33:55 +01:00
|
|
|
/// last written frame + 1
|
2013-12-12 01:29:48 +01:00
|
|
|
volatile unsigned long cur_frame = 0;
|
2009-09-09 00:06:07 +02:00
|
|
|
|
2012-01-08 02:33:55 +01:00
|
|
|
/// last frame to play
|
2013-12-12 01:29:48 +01:00
|
|
|
volatile unsigned long end_frame = 0;
|
2009-09-09 00:06:07 +02:00
|
|
|
|
2012-01-08 02:33:55 +01:00
|
|
|
/// bytes per frame
|
2013-12-12 01:29:48 +01:00
|
|
|
unsigned long bpf = 0;
|
2009-09-09 00:06:07 +02:00
|
|
|
|
2012-03-20 00:31:33 +01:00
|
|
|
/// OSS audio device handle
|
2013-12-12 01:29:48 +01:00
|
|
|
volatile int dspdev = 0;
|
2009-09-09 00:06:07 +02:00
|
|
|
|
2012-03-20 00:31:33 +01:00
|
|
|
void OpenStream();
|
|
|
|
|
2009-09-09 00:06:07 +02:00
|
|
|
public:
|
2012-03-20 00:31:33 +01:00
|
|
|
OSSPlayer(AudioProvider *provider);
|
2009-09-09 00:06:07 +02:00
|
|
|
~OSSPlayer();
|
|
|
|
|
|
|
|
void Play(int64_t start, int64_t count);
|
2012-03-25 06:05:44 +02:00
|
|
|
void Stop();
|
2012-01-08 02:33:55 +01:00
|
|
|
bool IsPlaying() { return playing; }
|
2009-09-09 00:06:07 +02:00
|
|
|
|
2012-01-08 02:33:55 +01:00
|
|
|
int64_t GetEndPosition() { return end_frame; }
|
2009-09-09 00:06:07 +02:00
|
|
|
void SetEndPosition(int64_t pos);
|
2012-01-08 02:33:55 +01:00
|
|
|
|
|
|
|
int64_t GetCurrentPosition();
|
2009-09-09 00:06:07 +02:00
|
|
|
|
|
|
|
void SetVolume(double vol) { volume = vol; }
|
|
|
|
};
|
|
|
|
#endif
|