/[svn]/linuxsampler/trunk/src/engines/sf2/Stream.h
ViewVC logotype

Contents of /linuxsampler/trunk/src/engines/sf2/Stream.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2018 - (show annotations) (download) (as text)
Tue Oct 27 19:04:57 2009 UTC (14 years, 6 months ago) by iliev
File MIME type: text/x-c++hdr
File size: 2502 byte(s)
* SFZ format engine: Implemented sfz version 1
   Filter EG, Amplifier EG and Pitch EG
* use SF2 file loader from libgig

1 /***************************************************************************
2 * *
3 * LinuxSampler - modular, streaming capable sampler *
4 * *
5 * Copyright (C) 2003,2004 by Benno Senoner and Christian Schoenebeck *
6 * Copyright (C) 2005-2009 Christian Schoenebeck *
7 * Copyright (C) 2009 Grigor Iliev *
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 * This program is distributed in the hope that it will be useful, *
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
17 * GNU General Public License for more details. *
18 * *
19 * You should have received a copy of the GNU General Public License *
20 * along with this program; if not, write to the Free Software *
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
22 * MA 02111-1307 USA *
23 ***************************************************************************/
24
25 #ifndef __LS_SF2_STREAM_H__
26 #define __LS_SF2_STREAM_H__
27
28 #include "../common/StreamBase.h"
29 #include <SF.h>
30
31 namespace LinuxSampler { namespace sf2 {
32
33 class Stream: public LinuxSampler::StreamBase< ::sf2::Region> {
34 public:
35 Stream(uint BufferSize, uint BufferWrapElements);
36 virtual long Read(uint8_t* pBuf, long SamplesToRead);
37 virtual void Kill();
38
39 void Launch (
40 Stream::Handle hStream,
41 reference_t* pExportReference,
42 ::sf2::Region* pRgn,
43 unsigned long SampleOffset,
44 bool DoLoop
45 );
46 };
47
48
49 }} // namespace LinuxSampler::sf2
50
51 #endif /* __LS_SF2_STREAM_H__ */
52

  ViewVC Help
Powered by ViewVC