Go to file
Jared Szechy 27b3f1b623 Use cmake's test command
Resolves #16
2017-12-03 12:29:07 -05:00
test Use cmake's test command 2017-12-03 12:29:07 -05:00
.gitignore Use cmake for build 2013-07-07 13:29:48 -04:00
.travis.yml Update travis ci to run test framework 2013-12-16 22:13:16 -05:00
CHANGELOG Bump version to v1.3.0 2016-01-08 12:31:41 -05:00
CMakeLists.txt Use cmake's test command 2017-12-03 12:29:07 -05:00
COPYRIGHT version 1.2.1 2011-08-21 03:32:18 -04:00
README.md Bump version to v1.3.0 2016-01-08 12:31:41 -05:00
ambe3600x2400.c Initial DSTAR AMBE implementation 2013-12-14 19:27:26 -05:00
ambe3600x2400_const.h Initial DSTAR AMBE implementation 2013-12-14 19:27:26 -05:00
ambe3600x2450.c Rename ambe3600x2250 to ambe3600x2450 to correctly reflect the codec type 2013-12-12 09:51:58 -05:00
ambe3600x2450_const.h Rename ambe3600x2250 to ambe3600x2450 to correctly reflect the codec type 2013-12-12 09:51:58 -05:00
cmake_uninstall.cmake.in Use cmake for build 2013-07-07 13:29:48 -04:00
config.h version 1.2.1 2011-08-21 03:32:18 -04:00
ecc.c version 1.2.1 2011-08-21 03:32:18 -04:00
ecc_const.h Array golayMatrix[2048] had only 1839 element. This commit fixes it.\n http://forums.radioreference.com/digital-voice-decoding-software/244398-possible-bug-question-about-mbelib.html#post1797631. 2013-02-17 13:05:50 +02:00
imbe7100x4400.c Don't include unnecessary headers in mbelib.h 2013-11-21 00:19:09 -05:00
imbe7200x4400.c Don't include unnecessary headers in mbelib.h 2013-11-21 00:19:09 -05:00
imbe7200x4400_const.h Fix header guard 2016-01-08 12:24:41 -05:00
mbelib.c powf() has to handle the general case of any floating-point x,y - as a result it's comparatively very slow in the special case y == 2. Replace with a simple multiply. 2015-02-27 16:08:56 -04:00
mbelib.h Bump version to v1.3.0 2016-01-08 12:31:41 -05:00
mbelib_Author.pgp version 1.2.1 2011-08-21 03:32:18 -04:00
mbelib_const.h version 1.2.1 2011-08-21 03:32:18 -04:00

README.md

Build Status

PATENT NOTICE

This source code is provided for educational purposes only.  It is
a written description of how certain voice encoding/decoding
algorythims could be implemented.  Executable objects compiled or 
derived from this package may be covered by one or more patents.
Readers are strongly advised to check for any patent restrictions or 
licencing requirements before compiling or using this source code.

mbelib 1.3.0

    mbelib supports the 7200x4400 bit/s codec used in P25 Phase 1,
    the 7100x4400 bit/s codec used in ProVoice and the "Half Rate"
    3600x2250 bit/s vocoder used in various radio systems.

Example building instructions on Ubuntu:

sudo apt-get update
sudo apt-get install git make cmake # Update packages
git clone <URL of git repository>   # Something like: git@github.com:USERNAME/mbelib.git
cd mbelib                           # Move into source folder
mkdir build                         # Create build directory
cd build                            # Move to build directory
cmake ..                            # Create Makefile for current system
make                                # Compiles the library
sudo make install                   # Library is installed into computer