libosmocore.git branch master updated. 0.9.6-126-g3262f82

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/osmocom-commitlog@lists.osmocom.org/.

gitosis at osmocom.org gitosis at osmocom.org
Mon Mar 6 19:25:35 UTC 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "An utility library for Open Source Mobile Communications".

The branch, master has been updated
       via  3262f820b5cfb4c76448f605c9804f3e5ca1023d (commit)
      from  68930e85b5945db8ffea055fd178bc1f88b31d99 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cgit.osmocom.org/libosmocore/commit/?id=3262f820b5cfb4c76448f605c9804f3e5ca1023d

commit 3262f820b5cfb4c76448f605c9804f3e5ca1023d
Author: Vadim Yanitskiy <axilirator at gmail.com>
Date:   Fri Sep 23 01:48:59 2016 +0700

    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

-----------------------------------------------------------------------

Summary of changes:
 .gitignore                                    |    3 +
 Doxyfile.codec.in => Doxyfile.coding.in       |   10 +-
 Makefile.am                                   |   16 +-
 configure.ac                                  |    4 +
 debian/control                                |   34 +
 include/Makefile.am                           |    5 +
 include/osmocom/coding/gsm0503_coding.h       |   63 +
 include/osmocom/coding/gsm0503_interleaving.h |   51 +
 include/osmocom/coding/gsm0503_mapping.h      |   33 +
 include/osmocom/coding/gsm0503_parity.h       |   13 +
 include/osmocom/coding/gsm0503_tables.h       |   50 +
 libosmocodec.pc.in => libosmocoding.pc.in     |    4 +-
 src/coding/Makefile.am                        |   27 +
 src/coding/gsm0503_coding.c                   | 2681 +++++++++++++++++++++++++
 src/coding/gsm0503_interleaving.c             |  573 ++++++
 src/coding/gsm0503_mapping.c                  |  291 +++
 src/coding/gsm0503_parity.c                   |  132 ++
 src/coding/gsm0503_tables.c                   | 1732 ++++++++++++++++
 src/coding/libosmocoding.map                  |  117 ++
 src/gsm/libosmogsm.map                        |    2 +
 tests/Makefile.am                             |   12 +-
 tests/coding/coding_test.c                    |  501 +++++
 tests/coding/coding_test.ok                   |   21 +
 tests/testsuite.at                            |    6 +
 utils/conv_codes_gsm.py                       |   24 +
 25 files changed, 6391 insertions(+), 14 deletions(-)
 copy Doxyfile.codec.in => Doxyfile.coding.in (99%)
 create mode 100644 include/osmocom/coding/gsm0503_coding.h
 create mode 100644 include/osmocom/coding/gsm0503_interleaving.h
 create mode 100644 include/osmocom/coding/gsm0503_mapping.h
 create mode 100644 include/osmocom/coding/gsm0503_parity.h
 create mode 100644 include/osmocom/coding/gsm0503_tables.h
 copy libosmocodec.pc.in => libosmocoding.pc.in (61%)
 create mode 100644 src/coding/Makefile.am
 create mode 100644 src/coding/gsm0503_coding.c
 create mode 100644 src/coding/gsm0503_interleaving.c
 create mode 100644 src/coding/gsm0503_mapping.c
 create mode 100644 src/coding/gsm0503_parity.c
 create mode 100644 src/coding/gsm0503_tables.c
 create mode 100644 src/coding/libosmocoding.map
 create mode 100644 tests/coding/coding_test.c
 create mode 100644 tests/coding/coding_test.ok


hooks/post-receive
-- 
An utility library for Open Source Mobile Communications



More information about the osmocom-commitlog mailing list