diff options
| author | Vadim Yanitskiy <axilirator@gmail.com> | 2016-09-23 01:48:59 +0700 | 
|---|---|---|
| committer | Vadim Yanitskiy <axilirator@gmail.com> | 2017-03-07 01:06:38 +0700 | 
| commit | 3262f820b5cfb4c76448f605c9804f3e5ca1023d (patch) | |
| tree | 1d62b0b5a454955e71e6ce91a869d54f1d8df154 /debian | |
| parent | 68930e85b5945db8ffea055fd178bc1f88b31d99 (diff) | |
libosmocoding: migrate transcoding routines from OsmoBTS
There are some projects, such as GR-GSM and OsmocomBB, which would
benefit from using one shared implementation of GSM 05.03 code. So,
this commit introduces a new sub-library called libosmocoding, which
(for now) provides GSM, GPRS and EDGE transcoding routines, migrated
from OsmoBTS.
The original GSM 05.03 code from OsmoBTS was relicensed under
GPLv2-or-later with permission of copyright holders (Andreas Eversberg,
Alexander Chemeris and Tom Tsou).
The following data types are currently supported:
 - xCCH
 - PDTCH (CS 1-4 and MCS 1-9)
 - TCH/FR
 - TCH/HR
 - TCH/AFS
 - RCH/AHS
 - RACH
 - SCH
Change-Id: I0c3256b87686d878e4e716d12393cad5924fdfa1
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/control | 34 | 
1 files changed, 34 insertions, 0 deletions
| diff --git a/debian/control b/debian/control index 4cdb672e..9b3761b3 100644 --- a/debian/control +++ b/debian/control @@ -25,6 +25,7 @@ Section: libs  Architecture: any  Multi-Arch: foreign  Depends: libosmocodec0 (= ${binary:Version}), +         libosmocoding0 (= ${binary:Version}),           libosmocore8 (= ${binary:Version}),           libosmogb4 (= ${binary:Version}),           libosmogsm7 (= ${binary:Version}), @@ -76,6 +77,38 @@ Description: Documentation for the osmo codec library   .   This package contains the documentation for the libosmocodec library. +Package: libosmocoding0 +Section: libs +Architecture: any +Multi-Arch: same +Depends: ${shlibs:Depends}, +         ${misc:Depends} +Pre-Depends: ${misc:Pre-Depends} +Description: Osmo coding library + This is part of the libosmocore "meta"-library. The libosmocore library + contains various utility functions that were originally developed as part of + the OpenBSC project, but which are of a more generic nature and thus useful to + (at least) other programs that are developed in the sphere of Free Software / + Open Source mobile communication. + . + The libosmocoding library in particular contains the implementation of + GSM, GPRS and EDGE transcoding routines, migrated from OsmoBTS. + +Package: libosmocoding-doc +Architecture: all +Section: doc +Depends: ${misc:Depends}, +         libosmocoding0, +         libjs-jquery +Description: Documentation for the osmo coding library + This is part of the libosmocore "meta"-library. The libosmocore library + contains various utility functions that were originally developed as part of + the OpenBSC project, but which are of a more generic nature and thus useful to + (at least) other programs that are developed in the sphere of Free Software / + Open Source mobile communication. + . + This package contains the documentation for the libosmocoding library. +  Package: libosmocore8  Section: libs  Architecture: any @@ -100,6 +133,7 @@ Depends: ${misc:Depends},           libosmocore8,           libjs-jquery,           libosmocodec-doc, +         libosmocoding-doc,           libosmogsm-doc,           libosmovty-doc  Description: Documentation for the Osmo Core library | 
