23 changed files with 10914 additions and 11021 deletions
@ -0,0 +1,37 @@ |
|||
--blank-lines-before-block-comments |
|||
--blank-lines-after-declarations |
|||
--blank-lines-after-procedures |
|||
--no-blank-lines-after-commas |
|||
--braces-on-if-line |
|||
--no-blank-before-sizeof |
|||
--comment-indentation41 |
|||
--declaration-comment-column41 |
|||
--no-comment-delimiters-on-blank-lines |
|||
--swallow-optional-blank-lines |
|||
--dont-format-comments |
|||
--parameter-indentation4 |
|||
--indent-level4 |
|||
--line-comments-indentation0 |
|||
--cuddle-else |
|||
--cuddle-do-while |
|||
--brace-indent0 |
|||
--case-brace-indentation0 |
|||
//--start-left-side-of-comments |
|||
--leave-preprocessor-space |
|||
//--continuation-indentation8 |
|||
--case-indentation4 |
|||
--else-endif-column0 |
|||
--no-space-after-casts |
|||
--declaration-indentation1 |
|||
--dont-line-up-parentheses |
|||
--no-space-after-function-call-names |
|||
--space-special-semicolon |
|||
--tab-size4 |
|||
--no-tabs |
|||
--line-length119 |
|||
--comment-line-length119 |
|||
--honour-newlines |
|||
--dont-break-procedure-type |
|||
--break-before-boolean-operator |
|||
--continuation-indentation4 |
|||
--ignore-newlines |
File diff suppressed because it is too large
@ -1,67 +1,67 @@ |
|||
///
|
|||
/// @file audio.h @brief Audio module headerfile
|
|||
/// @file audio.h @brief Audio module headerfile
|
|||
///
|
|||
/// Copyright (c) 2009 - 2014 by Johns. All Rights Reserved.
|
|||
/// Copyright (c) 2009 - 2014 by Johns. All Rights Reserved.
|
|||
///
|
|||
/// Contributor(s):
|
|||
/// Contributor(s):
|
|||
///
|
|||
/// License: AGPLv3
|
|||
/// License: AGPLv3
|
|||
///
|
|||
/// This program is free software: you can redistribute it and/or modify
|
|||
/// it under the terms of the GNU Affero General Public License as
|
|||
/// published by the Free Software Foundation, either version 3 of the
|
|||
/// License.
|
|||
/// This program is free software: you can redistribute it and/or modify
|
|||
/// it under the terms of the GNU Affero General Public License as
|
|||
/// published by the Free Software Foundation, either version 3 of the
|
|||
/// License.
|
|||
///
|
|||
/// This program is distributed in the hope that it will be useful,
|
|||
/// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||
/// GNU Affero General Public License for more details.
|
|||
/// This program is distributed in the hope that it will be useful,
|
|||
/// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||
/// GNU Affero General Public License for more details.
|
|||
///
|
|||
/// $Id: da055758af70cfdb9ab1989d5fcfb218c5d6a366 $
|
|||
/// $Id: da055758af70cfdb9ab1989d5fcfb218c5d6a366 $
|
|||
//////////////////////////////////////////////////////////////////////////////
|
|||
|
|||
/// @addtogroup Audio
|
|||
/// @{
|
|||
|
|||
//----------------------------------------------------------------------------
|
|||
// Prototypes
|
|||
// Prototypes
|
|||
//----------------------------------------------------------------------------
|
|||
|
|||
extern void AudioEnqueue(const void *, int); ///< buffer audio samples
|
|||
extern void AudioFlushBuffers(void); ///< flush audio buffers
|
|||
extern void AudioPoller(void); ///< poll audio events/handling
|
|||
extern int AudioFreeBytes(void); ///< free bytes in audio output
|
|||
extern int AudioUsedBytes(void); ///< used bytes in audio output
|
|||
extern int64_t AudioGetDelay(void); ///< get current audio delay
|
|||
extern void AudioSetClock(int64_t); ///< set audio clock base
|
|||
extern int64_t AudioGetClock(); ///< get current audio clock
|
|||
extern void AudioSetVolume(int); ///< set volume
|
|||
extern int AudioSetup(int *, int *, int); ///< setup audio output
|
|||
extern void AudioEnqueue(const void *, int); ///< buffer audio samples
|
|||
extern void AudioFlushBuffers(void); ///< flush audio buffers
|
|||
extern void AudioPoller(void); ///< poll audio events/handling
|
|||
extern int AudioFreeBytes(void); ///< free bytes in audio output
|
|||
extern int AudioUsedBytes(void); ///< used bytes in audio output
|
|||
extern int64_t AudioGetDelay(void); ///< get current audio delay
|
|||
extern void AudioSetClock(int64_t); ///< set audio clock base
|
|||
extern int64_t AudioGetClock(); ///< get current audio clock
|
|||
extern void AudioSetVolume(int); ///< set volume
|
|||
extern int AudioSetup(int *, int *, int); ///< setup audio output
|
|||
|
|||
extern void AudioPlay(void); ///< play audio
|
|||
extern void AudioPause(void); ///< pause audio
|
|||
extern void AudioPlay(void); ///< play audio
|
|||
extern void AudioPause(void); ///< pause audio
|
|||
|
|||
extern void AudioSetBufferTime(int); ///< set audio buffer time
|
|||
extern void AudioSetSoftvol(int); ///< enable/disable softvol
|
|||
extern void AudioSetNormalize(int, int); ///< set normalize parameters
|
|||
extern void AudioSetCompression(int, int); ///< set compression parameters
|
|||
extern void AudioSetStereoDescent(int); ///< set stereo loudness descent
|
|||
extern void AudioSetBufferTime(int); ///< set audio buffer time
|
|||
extern void AudioSetSoftvol(int); ///< enable/disable softvol
|
|||
extern void AudioSetNormalize(int, int); ///< set normalize parameters
|
|||
extern void AudioSetCompression(int, int); ///< set compression parameters
|
|||
extern void AudioSetStereoDescent(int); ///< set stereo loudness descent
|
|||
|
|||
extern void AudioSetDevice(const char *); ///< set PCM audio device
|
|||
extern void AudioSetDevice(const char *); ///< set PCM audio device
|
|||
|
|||
/// set pass-through device
|
|||
extern void AudioSetPassthroughDevice(const char *); |
|||
extern void AudioSetChannel(const char *); ///< set mixer channel
|
|||
extern void AudioSetAutoAES(int); ///< set automatic AES flag handling
|
|||
extern void AudioInit(void); ///< setup audio module
|
|||
extern void AudioExit(void); ///< cleanup and exit audio module
|
|||
extern void AudioSetChannel(const char *); ///< set mixer channel
|
|||
extern void AudioSetAutoAES(int); ///< set automatic AES flag handling
|
|||
extern void AudioInit(void); ///< setup audio module
|
|||
extern void AudioExit(void); ///< cleanup and exit audio module
|
|||
|
|||
//----------------------------------------------------------------------------
|
|||
// Variables
|
|||
// Variables
|
|||
//----------------------------------------------------------------------------
|
|||
|
|||
extern char AudioAlsaDriverBroken; ///< disable broken driver message
|
|||
extern char AudioAlsaNoCloseOpen; ///< disable alsa close/open fix
|
|||
extern char AudioAlsaCloseOpenDelay; ///< enable alsa close/open delay fix
|
|||
extern char AudioAlsaDriverBroken; ///< disable broken driver message
|
|||
extern char AudioAlsaNoCloseOpen; ///< disable alsa close/open fix
|
|||
extern char AudioAlsaCloseOpenDelay; ///< enable alsa close/open delay fix
|
|||
|
|||
/// @}
|
|||
|
File diff suppressed because it is too large
@ -1,23 +1,23 @@ |
|||
///
|
|||
/// @file iatomic.h @brief Misc function header file
|
|||
/// @file iatomic.h @brief Misc function header file
|
|||
///
|
|||
/// Copyright (c) 2014 by Johns. All Rights Reserved.
|
|||
/// Copyright (c) 2014 by Johns. All Rights Reserved.
|
|||
///
|
|||
/// Contributor(s):
|
|||
/// Contributor(s):
|
|||
///
|
|||
/// License: AGPLv3
|
|||
/// License: AGPLv3
|
|||
///
|
|||
/// This program is free software: you can redistribute it and/or modify
|
|||
/// it under the terms of the GNU Affero General Public License as
|
|||
/// published by the Free Software Foundation, either version 3 of the
|
|||
/// License.
|
|||
/// This program is free software: you can redistribute it and/or modify
|
|||
/// it under the terms of the GNU Affero General Public License as
|
|||
/// published by the Free Software Foundation, either version 3 of the
|
|||
/// License.
|
|||