2006-02-25 09:26:29 +01:00
|
|
|
// Copyright (c) 2006, Rodrigo Braz Monteiro
|
|
|
|
// 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_provider_ram.h
|
|
|
|
/// @see audio_provider_ram.cpp
|
|
|
|
/// @ingroup audio_input
|
|
|
|
///
|
2006-02-25 09:26:29 +01:00
|
|
|
|
2008-03-07 22:00:20 +01:00
|
|
|
#include "include/aegisub/audio_provider.h"
|
2006-02-25 09:26:29 +01:00
|
|
|
|
2012-12-28 18:24:51 +01:00
|
|
|
#include <array>
|
2012-12-22 22:44:54 +01:00
|
|
|
#include <boost/container/stable_vector.hpp>
|
|
|
|
|
2011-09-28 21:49:37 +02:00
|
|
|
namespace agi {
|
|
|
|
class BackgroundRunner;
|
|
|
|
class ProgressSink;
|
|
|
|
}
|
2011-09-28 21:47:40 +02:00
|
|
|
|
2013-09-27 05:18:29 +02:00
|
|
|
class RAMAudioProvider : public AudioProviderWrapper {
|
2012-12-28 18:24:51 +01:00
|
|
|
#ifdef _MSC_VER
|
2012-12-22 22:44:54 +01:00
|
|
|
boost::container::stable_vector<char[1 << 22]> blockcache;
|
2012-12-28 18:24:51 +01:00
|
|
|
#else
|
|
|
|
boost::container::stable_vector<std::array<char, 1 << 22>> blockcache;
|
|
|
|
#endif
|
2006-02-25 09:26:29 +01:00
|
|
|
|
2011-09-28 21:47:40 +02:00
|
|
|
void FillCache(AudioProvider *source, agi::ProgressSink *ps);
|
2013-11-21 18:13:36 +01:00
|
|
|
void FillBuffer(void *buf, int64_t start, int64_t count) const override;
|
2006-02-25 09:26:29 +01:00
|
|
|
|
|
|
|
public:
|
2013-09-16 15:43:17 +02:00
|
|
|
RAMAudioProvider(std::unique_ptr<AudioProvider> source, agi::BackgroundRunner *br);
|
2006-02-25 09:26:29 +01:00
|
|
|
};
|