summaryrefslogtreecommitdiff
path: root/plc.c
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2006-03-29 02:12:31 +0000
committerLuigi Rizzo <rizzo@icir.org>2006-03-29 02:12:31 +0000
commit68ab41ebfe599ad857bb0d4ca1fc892a83545588 (patch)
tree96cb784e927f40dd6941da633962a92cb83aa193 /plc.c
parent150e0b72ccbef905d730fdf125a2df9e0011fcb7 (diff)
Add two widely used constants
#define DEFAULT_SAMPLE_RATE 8000 #define DEFAULT_SAMPLES_PER_MS ((DEFAULT_SAMPLE_RATE)/1000) to the main header, and remove equivalent ones from plc.[ch] This will simplify the cleanup of the codec/ and formats/ files. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@15969 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'plc.c')
-rw-r--r--plc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plc.c b/plc.c
index 5db6f7d1b..f088aa72e 100644
--- a/plc.c
+++ b/plc.c
@@ -56,7 +56,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
/* We do a straight line fade to zero volume in 50ms when we are filling in for missing data. */
#define ATTENUATION_INCREMENT 0.0025 /* Attenuation per sample */
-#define ms_to_samples(t) (((t)*SAMPLE_RATE)/1000)
+#define ms_to_samples(t) (((t)*DEFAULT_SAMPLE_RATE)/1000)
static inline int16_t fsaturate(double damp)
{