repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
BTRFS: Implement BTree::Path and change _Find.
[haiku.git]
/
src
/
add-ons
/
media
/
media-add-ons
/
mixer
/
Interpolate.h
blob
fb4dddb000749326f0e6e51221f05f0e574cc80b
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