blob: 98700c04d0bc499a416923f8d60273ff537b7449 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/* SPDX-License-Identifier: BSD-3-Clause */
/* SPDX-FileCopyrightText: OpenMPT Project Developers and Contributors */
#pragma once
#include "openmpt/all/BuildSettings.hpp"
#include "mpt/base/macros.hpp"
#include "openmpt/base/Types.hpp"
#include "openmpt/soundbase/MixSample.hpp"
OPENMPT_NAMESPACE_BEGIN
struct Dither_None
{
public:
using prng_type = struct
{
};
template <typename Trd>
static prng_type prng_init(Trd &)
{
return prng_type{};
}
public:
template <uint32 targetbits, typename Trng>
MPT_FORCEINLINE MixSampleInt process(MixSampleInt sample, Trng &)
{
return sample;
}
template <uint32 targetbits, typename Trng>
MPT_FORCEINLINE MixSampleFloat process(MixSampleFloat sample, Trng &)
{
return sample;
}
};
OPENMPT_NAMESPACE_END
|