mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-24 21:22:09 +00:00
FS-9924: Removed extra space in source files
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
/*
|
||||
* FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
|
||||
* Copyright (C) 2005-2014, Anthony Minessale II <anthm@freeswitch.org>
|
||||
*
|
||||
@@ -22,7 +22,7 @@
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
*
|
||||
*
|
||||
* Anthony Minessale II <anthm@freeswitch.org>
|
||||
*
|
||||
*
|
||||
@@ -34,9 +34,9 @@
|
||||
|
||||
This module implements a generic interface for doing audio resampling it currently uses libresample but can be ported to
|
||||
any resample library with a little effort. I decided against making this interface pluggable because there are not many
|
||||
options in terms of resample libraries so it seemed like a waste but I did opt to frontend the interface in case a better
|
||||
options in terms of resample libraries so it seemed like a waste but I did opt to frontend the interface in case a better
|
||||
way comes along some day. =D
|
||||
|
||||
|
||||
*/
|
||||
#define switch_normalize_volume(x) if (x > 4) x = 4; if (x < -4) x = -4;
|
||||
#define switch_normalize_volume_granular(x) if (x > 13) x = 13; if (x < -13) x = -13;
|
||||
@@ -49,7 +49,7 @@ SWITCH_BEGIN_EXTERN_C
|
||||
/*!
|
||||
\defgroup resamp Audio Resample Functions
|
||||
\ingroup core1
|
||||
\{
|
||||
\{
|
||||
*/
|
||||
/*! \brief An audio resampling handle */
|
||||
typedef struct {
|
||||
|
||||
Reference in New Issue
Block a user