~ubuntu-branches/debian/squeeze/openttd/squeeze

« back to all changes in this revision

Viewing changes to src/mixer.h

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach, Matthijs Kooijman, Jordi Mallach
  • Date: 2009-04-15 18:22:10 UTC
  • mfrom: (1.1.6 upstream) (2.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090415182210-22ktb8kdbp2tf3bm
[ Matthijs Kooijman ]
* New upstream release.
* Remove Debian specific desktop file, upstream provides one now. 
* Add debian/watch file.

[ Jordi Mallach ]
* Bump Standards-Version to 3.8.1, with no changes required.
* Move to debhelper compat 7. Bump Build-Depends accordingly.
* Use dh_prep.
* Add "set -e" to config script.
* Remove a few extra doc files that get installed by upstream Makefile.
* Add more complete copyright information.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: mixer.h 10673 2007-07-24 17:01:23Z rubidium $ */
 
1
/* $Id: mixer.h 13301 2008-05-27 21:41:00Z rubidium $ */
2
2
 
3
 
/** @file mixer.h */
 
3
/** @file mixer.h Functions to mix sound samples. */
4
4
 
5
5
#ifndef MIXER_H
6
6
#define MIXER_H
18
18
void MxMixSamples(void *buffer, uint samples);
19
19
 
20
20
MixerChannel *MxAllocateChannel();
21
 
void MxSetChannelRawSrc(MixerChannel *mc, int8 *mem, uint size, uint rate, uint flags);
 
21
void MxSetChannelRawSrc(MixerChannel *mc, int8 *mem, size_t size, uint rate, uint flags);
22
22
void MxSetChannelVolume(MixerChannel *mc, uint left, uint right);
23
23
void MxActivateChannel(MixerChannel*);
24
24