2008-03-05 03:43:01 +01:00
|
|
|
// Copyright (c) 2007, Niels Martin Hansen
|
|
|
|
// 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.
|
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
|
|
|
/// @file audio_player_openal.h
|
|
|
|
/// @see audio_player_openal.cpp
|
|
|
|
/// @ingroup audio_output
|
|
|
|
///
|
2008-03-05 03:43:01 +01:00
|
|
|
|
|
|
|
#ifdef WITH_OPENAL
|
2008-03-07 22:00:20 +01:00
|
|
|
#include "include/aegisub/audio_player.h"
|
|
|
|
#include "include/aegisub/audio_provider.h"
|
2008-03-05 21:16:31 +01:00
|
|
|
|
|
|
|
#ifdef __WINDOWS__
|
|
|
|
#include <al.h>
|
|
|
|
#include <alc.h>
|
|
|
|
#elif defined(__APPLE__)
|
2011-01-11 18:52:17 +01:00
|
|
|
#include <OpenAL/al.h>
|
|
|
|
#include <OpenAL/alc.h>
|
2008-03-05 03:43:01 +01:00
|
|
|
#else
|
2008-03-05 21:16:31 +01:00
|
|
|
#include <AL/al.h>
|
|
|
|
#include <AL/alc.h>
|
2008-03-05 03:43:01 +01:00
|
|
|
#endif
|
|
|
|
|
2011-11-19 02:14:13 +01:00
|
|
|
#include <vector>
|
2012-05-16 06:57:06 +02:00
|
|
|
|
|
|
|
#include <wx/timer.h>
|
2011-11-19 02:14:13 +01:00
|
|
|
|
2008-03-05 03:43:01 +01:00
|
|
|
class OpenALPlayer : public AudioPlayer, wxTimer {
|
2011-11-19 02:14:13 +01:00
|
|
|
/// Number of OpenAL buffers to use
|
2008-03-05 03:43:01 +01:00
|
|
|
static const ALsizei num_buffers = 8;
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2013-12-12 01:29:48 +01:00
|
|
|
bool playing = false; ///< Is audio currently playing?
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2013-12-12 01:29:48 +01:00
|
|
|
float volume = 1.f; ///< Current audio volume
|
2011-11-19 02:14:13 +01:00
|
|
|
ALsizei samplerate; ///< Sample rate of the audio
|
|
|
|
int bpf; ///< Bytes per frame
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2013-12-12 01:29:48 +01:00
|
|
|
int64_t start_frame = 0; ///< First frame of playbacka
|
|
|
|
int64_t cur_frame = 0; ///< Next frame to write to playback buffers
|
|
|
|
int64_t end_frame = 0; ///< Last frame to play
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2013-12-12 01:29:48 +01:00
|
|
|
ALCdevice *device = nullptr; ///< OpenAL device handle
|
|
|
|
ALCcontext *context = nullptr; ///< OpenAL sound context
|
2011-11-19 02:14:13 +01:00
|
|
|
ALuint buffers[num_buffers]; ///< OpenAL sound buffers
|
2013-12-12 01:29:48 +01:00
|
|
|
ALuint source = 0; ///< OpenAL playback source
|
2008-03-05 03:43:01 +01:00
|
|
|
|
2011-11-19 02:14:13 +01:00
|
|
|
/// Index into buffers, first free (unqueued) buffer to be filled
|
2013-12-12 01:29:48 +01:00
|
|
|
ALsizei buf_first_free = 0;
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2011-11-19 02:14:13 +01:00
|
|
|
/// Index into buffers, first queued (non-free) buffer
|
2013-12-12 01:29:48 +01:00
|
|
|
ALsizei buf_first_queued = 0;
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2011-11-19 02:14:13 +01:00
|
|
|
/// Number of free buffers
|
2013-12-12 01:29:48 +01:00
|
|
|
ALsizei buffers_free = 0;
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2011-11-19 02:14:13 +01:00
|
|
|
/// Number of buffers which have been fully played since playback was last started
|
2013-12-12 01:29:48 +01:00
|
|
|
ALsizei buffers_played = 0;
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2008-03-05 03:43:01 +01:00
|
|
|
wxStopWatch playback_segment_timer;
|
|
|
|
|
2011-11-19 02:14:13 +01:00
|
|
|
/// Buffer to decode audio into
|
|
|
|
std::vector<char> decode_buffer;
|
|
|
|
|
|
|
|
/// Fill count OpenAL buffers
|
2008-03-05 03:43:01 +01:00
|
|
|
void FillBuffers(ALsizei count);
|
|
|
|
|
|
|
|
protected:
|
2011-11-19 02:14:13 +01:00
|
|
|
/// wxTimer override to periodically fill available buffers
|
2013-11-21 18:13:36 +01:00
|
|
|
void Notify() override;
|
2008-03-05 03:43:01 +01:00
|
|
|
|
|
|
|
public:
|
2012-03-20 00:31:33 +01:00
|
|
|
OpenALPlayer(AudioProvider *provider);
|
2008-03-05 03:43:01 +01:00
|
|
|
~OpenALPlayer();
|
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void Play(int64_t start,int64_t count) override;
|
|
|
|
void Stop() override;
|
|
|
|
bool IsPlaying() override { return playing; }
|
2008-03-05 03:43:01 +01:00
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
int64_t GetEndPosition() override { return end_frame; }
|
|
|
|
int64_t GetCurrentPosition() override;
|
|
|
|
void SetEndPosition(int64_t pos) override;
|
2008-03-05 03:43:01 +01:00
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void SetVolume(double vol) override { volume = vol; }
|
2008-03-05 03:43:01 +01:00
|
|
|
};
|
|
|
|
#endif
|