30 lines
1.2 KiB
C
30 lines
1.2 KiB
C
/* _______ ____ __ ___ ___
|
|
* \ _ \ \ / \ / \ \ / / ' ' '
|
|
* | | \ \ | | || | \/ | . .
|
|
* | | | | | | || ||\ /| |
|
|
* | | | | | | || || \/ | | ' ' '
|
|
* | | | | | | || || | | . .
|
|
* | |_/ / \ \__// || | |
|
|
* /_______/ynamic \____/niversal /__\ /____\usic /| . . ibliotheque
|
|
* / \
|
|
* / . \
|
|
* silence.c - Silencing helper. / / \ \
|
|
* | < / \_
|
|
* By entheh. | \/ /\ /
|
|
* \_ / > /
|
|
* | \ / /
|
|
* | ' /
|
|
* \__/
|
|
*/
|
|
|
|
#ifdef DUMB
|
|
|
|
#include <string.h>
|
|
#include "dumb.h"
|
|
|
|
void dumb_silence(sample_t *samples, long length)
|
|
{
|
|
memset(samples, 0, length * sizeof(*samples));
|
|
}
|
|
|
|
#endif
|