Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
21 lines (21 loc) · 1.17 KB

SDL_MixAudio.3

File metadata and controls

21 lines (21 loc) · 1.17 KB
 
Sep 14, 2001
Sep 14, 2001
1
.TH "SDL_MixAudio" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference"
Apr 26, 2001
Apr 26, 2001
2
.SH "NAME"
Dec 29, 2007
Dec 29, 2007
3
SDL_MixAudio \- Mix audio data
Apr 26, 2001
Apr 26, 2001
4
5
6
7
8
9
10
.SH "SYNOPSIS"
.PP
\fB#include "SDL\&.h"
.sp
\fBvoid \fBSDL_MixAudio\fP\fR(\fBUint8 *dst, Uint8 *src, Uint32 len, int volume\fR);
.SH "DESCRIPTION"
.PP
Jun 10, 2001
Jun 10, 2001
11
This function takes two audio buffers of \fBlen\fR bytes each of the playing audio format and mixes them, performing addition, volume adjustment, and overflow clipping\&. The \fBvolume\fR ranges from 0 to \fBSDL_MIX_MAXVOLUME\fP and should be set to the maximum value for full audio volume\&. Note this does not change hardware volume\&. This is provided for convenience -- you can mix your own audio data\&.
Sep 14, 2001
Sep 14, 2001
12
13
14
15
16
17
.PP
.RS
\fBNote:
.PP
Do not use this function for mixing together more than two streams of sample data\&. The output from repeated application of this function may be distorted by clipping, because there is no accumulator with greater range than the input (not to mention this being an inefficient way of doing it)\&. Use mixing functions from SDL_mixer, OpenAL, or write your own mixer instead\&.
.RE
Apr 26, 2001
Apr 26, 2001
18
19
20
.SH "SEE ALSO"
.PP
\fI\fBSDL_OpenAudio\fP\fR
Sep 14, 2001
Sep 14, 2001
21
...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:58