xref: /haiku/src/add-ons/media/media-add-ons/mixer/Interpolate.h (revision e81a954787e50e56a7f06f72705b7859b6ab06d1)
1 /*
2  * Copyright 2010-2014, Haiku, Inc.
3  * Distributed under the terms of the MIT Licence.
4  */
5 #ifndef _INTERPOLATE_H
6 #define _INTERPOLATE_H
7 
8 
9 #include "Resampler.h"
10 
11 
12 class Interpolate: public Resampler {
13 public:
14 							Interpolate(uint32 sourceFormat,
15 								uint32 destFormat);
16 
17 			float			fOldSample;
18 };
19 
20 
21 #endif
22