summaryrefslogtreecommitdiff
path: root/gr-vocoder/lib/g7xx
diff options
context:
space:
mode:
Diffstat (limited to 'gr-vocoder/lib/g7xx')
-rw-r--r--gr-vocoder/lib/g7xx/.gitignore8
-rw-r--r--gr-vocoder/lib/g7xx/Makefile.am27
-rw-r--r--gr-vocoder/lib/g7xx/g72x.h36
3 files changed, 18 insertions, 53 deletions
diff --git a/gr-vocoder/lib/g7xx/.gitignore b/gr-vocoder/lib/g7xx/.gitignore
deleted file mode 100644
index a02b6ff73..000000000
--- a/gr-vocoder/lib/g7xx/.gitignore
+++ /dev/null
@@ -1,8 +0,0 @@
-/Makefile
-/Makefile.in
-/.la
-/.lo
-/.deps
-/.libs
-/*.la
-/*.lo
diff --git a/gr-vocoder/lib/g7xx/Makefile.am b/gr-vocoder/lib/g7xx/Makefile.am
deleted file mode 100644
index 929fd23ba..000000000
--- a/gr-vocoder/lib/g7xx/Makefile.am
+++ /dev/null
@@ -1,27 +0,0 @@
-#
-# Copyright 2001,2011 Free Software Foundation, Inc.
-#
-# This file is part of GNU Radio
-#
-# GNU Radio is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3, or (at your option)
-# any later version.
-#
-# GNU Radio 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 General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with GNU Radio; see the file COPYING. If not, write to
-# the Free Software Foundation, Inc., 51 Franklin Street,
-# Boston, MA 02110-1301, USA.
-#
-
-include $(top_srcdir)/Makefile.common
-
-noinst_LTLIBRARIES = libg7xx.la
-libg7xx_la_SOURCES = g711.c g72x.c g721.c g723_24.c g723_40.c g72x.h
-
-EXTRA_DIST += encode.c decode.c
diff --git a/gr-vocoder/lib/g7xx/g72x.h b/gr-vocoder/lib/g7xx/g72x.h
index 33807171a..9d906cae7 100644
--- a/gr-vocoder/lib/g7xx/g72x.h
+++ b/gr-vocoder/lib/g7xx/g72x.h
@@ -103,36 +103,36 @@ extern int g723_40_decoder(
extern int
quantize(
- int d,
- int y,
- short *table,
+ int d,
+ int y,
+ short *table,
int size);
extern int reconstruct(int,int,int);void
extern update(
- int code_size,
- int y,
- int wi,
- int fi,
- int dq,
- int sr,
- int dqsez,
+ int code_size,
+ int y,
+ int wi,
+ int fi,
+ int dq,
+ int sr,
+ int dqsez,
struct g72x_state *state_ptr);
extern int
tandem_adjust_alaw(
- int sr,
- int se,
- int y,
- int i,
+ int sr,
+ int se,
+ int y,
+ int i,
int sign,
short *qtab);
extern int
tandem_adjust_ulaw(
- int sr,
- int se,
- int y,
- int i,
+ int sr,
+ int se,
+ int y,
+ int i,
int sign,
short *qtab);