ReactOS 0.4.15-dev-7924-g5949c20
dither.h
Go to the documentation of this file.
1/*
2 dither: Generate noise for dithering / noise shaping.
3
4 copyright 2009 by the mpg123 project - free software under the terms of the LGPL 2.1
5 see COPYING and AUTHORS files in distribution or http://mpg123.org
6 initially written by Taihei Monma
7*/
8
9#ifndef MPG123_DITHER_H
10#define MPG123_DITHER_H
11
12#define DITHERSIZE 65536
14{
18};
19
20void mpg123_noise(float* table, size_t count, enum mpg123_noise_type noisetype);
21void dither_table_init(float *dithertable);
22
23#endif
mpg123_noise_type
Definition: dither.h:14
@ mpg123_white_noise
Definition: dither.h:15
@ mpg123_tpdf_noise
Definition: dither.h:16
@ mpg123_highpass_tpdf_noise
Definition: dither.h:17
void mpg123_noise(float *table, size_t count, enum mpg123_noise_type noisetype)
Definition: dither_impl.h:103
GLuint GLuint GLsizei count
Definition: gl.h:1545
#define dither_table_init
Definition: intsym.h:176