2008-11-27 19:35:26 +01:00
|
|
|
// Copyright (c) 2008, 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_dsound2.h
|
|
|
|
/// @see audio_player_dsound2.cpp
|
|
|
|
/// @ingroup audio_output
|
|
|
|
///
|
2008-11-27 19:35:26 +01:00
|
|
|
|
|
|
|
#ifdef WITH_DIRECTSOUND
|
|
|
|
|
|
|
|
#include "include/aegisub/audio_player.h"
|
|
|
|
|
|
|
|
class DirectSoundPlayer2Thread;
|
|
|
|
|
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
|
|
|
/// @class DirectSoundPlayer2
|
2010-02-05 15:51:12 +01:00
|
|
|
/// @brief New implementation of DirectSound-based audio player
|
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
|
|
|
///
|
2010-02-05 15:51:12 +01:00
|
|
|
/// The core design idea is to have a playback thread that owns the DirectSound COM objects
|
|
|
|
/// and performs all playback operations, and use the player object as a proxy to
|
|
|
|
/// send commands to the playback thread.
|
2008-11-27 19:35:26 +01:00
|
|
|
class DirectSoundPlayer2 : public AudioPlayer {
|
2010-02-05 15:51:12 +01:00
|
|
|
/// The playback thread
|
2013-06-08 06:19:40 +02:00
|
|
|
std::unique_ptr<DirectSoundPlayer2Thread> thread;
|
2008-11-27 19:35:26 +01:00
|
|
|
|
2010-02-05 15:51:12 +01:00
|
|
|
/// Desired length in milliseconds to write ahead of the playback cursor
|
2009-05-07 16:47:36 +02:00
|
|
|
int WantedLatency;
|
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
|
|
|
|
2010-02-05 15:51:12 +01:00
|
|
|
/// Multiplier for WantedLatency to get total buffer length
|
2009-05-07 16:47:36 +02:00
|
|
|
int BufferLength;
|
|
|
|
|
2011-11-16 20:54:55 +01:00
|
|
|
/// @brief Tell whether playback thread is alive
|
|
|
|
/// @return True if there is a playback thread and it's ready
|
2009-05-22 03:41:31 +02:00
|
|
|
bool IsThreadAlive();
|
|
|
|
|
2008-11-27 19:35:26 +01:00
|
|
|
public:
|
2011-11-16 20:54:55 +01:00
|
|
|
/// @brief Constructor
|
2012-03-20 00:31:33 +01:00
|
|
|
DirectSoundPlayer2(AudioProvider *provider);
|
2011-11-16 20:54:55 +01:00
|
|
|
/// @brief Destructor
|
2008-11-27 19:35:26 +01:00
|
|
|
~DirectSoundPlayer2();
|
|
|
|
|
2011-11-16 20:54:55 +01:00
|
|
|
/// @brief Start playback
|
|
|
|
/// @param start First audio frame to play
|
|
|
|
/// @param count Number of audio frames to play
|
2008-11-27 19:35:26 +01:00
|
|
|
void Play(int64_t start,int64_t count);
|
2011-11-16 20:54:55 +01:00
|
|
|
|
|
|
|
/// @brief Stop audio playback
|
|
|
|
/// @param timerToo Whether to also stop the playback update timer
|
2012-03-25 06:05:44 +02:00
|
|
|
void Stop();
|
2011-11-16 20:54:55 +01:00
|
|
|
|
|
|
|
/// @brief Tell whether playback is active
|
|
|
|
/// @return True if audio is playing back
|
2008-11-27 19:35:26 +01:00
|
|
|
bool IsPlaying();
|
|
|
|
|
2011-11-16 20:54:55 +01:00
|
|
|
/// @brief Get playback end position
|
|
|
|
/// @return Audio frame index
|
|
|
|
///
|
|
|
|
/// Returns 0 if playback is stopped or there is no playback thread
|
2008-11-27 19:35:26 +01:00
|
|
|
int64_t GetEndPosition();
|
2011-11-16 20:54:55 +01:00
|
|
|
/// @brief Get approximate playback position
|
|
|
|
/// @return Index of audio frame user is currently hearing
|
|
|
|
///
|
|
|
|
/// Returns 0 if playback is stopped or there is no playback thread
|
2008-11-27 19:35:26 +01:00
|
|
|
int64_t GetCurrentPosition();
|
2011-11-16 20:54:55 +01:00
|
|
|
|
|
|
|
/// @brief Change playback end position
|
|
|
|
/// @param pos New end position
|
2008-11-27 19:35:26 +01:00
|
|
|
void SetEndPosition(int64_t pos);
|
2011-11-16 20:54:55 +01:00
|
|
|
|
|
|
|
/// @brief Change playback volume
|
|
|
|
/// @param vol Amplification factor
|
2008-11-27 19:35:26 +01:00
|
|
|
void SetVolume(double vol);
|
|
|
|
};
|
|
|
|
#endif
|