osmo-gmr.git branch sylvain/live updated. v0.2-86-g14e67cd

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
Sun Apr 5 13:51:41 UTC 2015


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 "Software for ETSI GMR (GEO Mobile Radio)".

The branch, sylvain/live has been updated
  discards  c9bebd030983a97145b1e4781ceae1b1061ee3e2 (commit)
  discards  a8733e64e82a6171d14197df2231270f87d4ee95 (commit)
       via  14e67cdaa90ef4de0876cad1b6cfb6ccf6c684a8 (commit)
       via  42c03de385e4eeb94fe852a1ab2fc00ac6f38366 (commit)
       via  e9e2ee173ed535d00d5a6537a0bf0a19408287a7 (commit)
       via  ef55d28479ff7dffefcf33ea6ce9c84360abc5bf (commit)

This update added new revisions after undoing existing revisions.  That is
to say, the old revision is not a strict subset of the new revision.  This
situation occurs when you --force push a change and generate a repository
containing something like this:

 * -- * -- B -- O -- O -- O (c9bebd030983a97145b1e4781ceae1b1061ee3e2)
            \
             N -- N -- N (14e67cdaa90ef4de0876cad1b6cfb6ccf6c684a8)

When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.

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/osmo-gmr/commit/?id=14e67cdaa90ef4de0876cad1b6cfb6ccf6c684a8

commit 14e67cdaa90ef4de0876cad1b6cfb6ccf6c684a8
Author: Sylvain Munaut <tnt at 246tNt.com>
Date:   Sun Apr 5 15:51:37 2015 +0200

    rtfwk: Split into separate files for each task
    
    Signed-off-by: Sylvain Munaut <tnt at 246tNt.com>

http://cgit.osmocom.org/osmo-gmr/commit/?id=42c03de385e4eeb94fe852a1ab2fc00ac6f38366

commit 42c03de385e4eeb94fe852a1ab2fc00ac6f38366
Author: Sylvain Munaut <tnt at 246tNt.com>
Date:   Sun Apr 5 11:30:20 2015 +0200

    rtfwk: Create a new rxfwk subdir to contain the 'RealTime framework' files
    
    So that other apps can re-use it. Note that it's not part of the gmr1
    lib proper and so include files are in that dir and not installed.
    
    Signed-off-by: Sylvain Munaut <tnt at 246tNt.com>

http://cgit.osmocom.org/osmo-gmr/commit/?id=e9e2ee173ed535d00d5a6537a0bf0a19408287a7

commit e9e2ee173ed535d00d5a6537a0bf0a19408287a7
Author: Sylvain Munaut <tnt at 246tNt.com>
Date:   Wed Mar 14 10:48:46 2012 +0100

    [hack] Add first attempt at live stream processing
    
    Signed-off-by: Sylvain Munaut <tnt at 246tNt.com>

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

Summary of changes:
 configure.ac                                  |    2 +-
 src/Makefile.am                               |    6 +-
 src/gmr1_rx_live.c                            | 1360 +------------------------
 src/{rxfwk => rtfwk}/Makefile.am              |    7 +-
 src/rtfwk/common.c                            |   75 ++
 src/rtfwk/common.h                            |   81 ++
 src/{rxfwk => rtfwk}/ringbuf.c                |    0
 src/{rxfwk => rtfwk}/ringbuf.h                |    0
 src/rtfwk/sa_bcch_ccch.c                      |  392 +++++++
 src/{rxfwk/sa_file.h => rtfwk/sa_bcch_ccch.h} |   22 +-
 src/rtfwk/sa_fcch.c                           |  253 +++++
 src/{rxfwk/sa_file.h => rtfwk/sa_fcch.h}      |   20 +-
 src/{rxfwk => rtfwk}/sa_file.c                |    0
 src/{rxfwk => rtfwk}/sa_file.h                |    8 +-
 src/rtfwk/sa_tch3.c                           |  471 +++++++++
 src/{rxfwk/sa_file.h => rtfwk/sa_tch3.h}      |   26 +-
 src/rtfwk/sa_tch9.c                           |  258 +++++
 src/{rxfwk/sa_file.h => rtfwk/sa_tch9.h}      |   26 +-
 src/{rxfwk => rtfwk}/sampbuf.c                |    1 +
 src/{rxfwk => rtfwk}/sampbuf.h                |    8 +-
 src/sdr/dkab.c                                |    4 +-
 21 files changed, 1616 insertions(+), 1404 deletions(-)
 rename src/{rxfwk => rtfwk}/Makefile.am (57%)
 create mode 100644 src/rtfwk/common.c
 create mode 100644 src/rtfwk/common.h
 rename src/{rxfwk => rtfwk}/ringbuf.c (100%)
 rename src/{rxfwk => rtfwk}/ringbuf.h (100%)
 create mode 100644 src/rtfwk/sa_bcch_ccch.c
 copy src/{rxfwk/sa_file.h => rtfwk/sa_bcch_ccch.h} (65%)
 create mode 100644 src/rtfwk/sa_fcch.c
 copy src/{rxfwk/sa_file.h => rtfwk/sa_fcch.h} (69%)
 rename src/{rxfwk => rtfwk}/sa_file.c (100%)
 copy src/{rxfwk => rtfwk}/sa_file.h (86%)
 create mode 100644 src/rtfwk/sa_tch3.c
 copy src/{rxfwk/sa_file.h => rtfwk/sa_tch3.h} (62%)
 create mode 100644 src/rtfwk/sa_tch9.c
 rename src/{rxfwk/sa_file.h => rtfwk/sa_tch9.h} (63%)
 rename src/{rxfwk => rtfwk}/sampbuf.c (99%)
 rename src/{rxfwk => rtfwk}/sampbuf.h (93%)


hooks/post-receive
-- 
Software for ETSI GMR (GEO Mobile Radio)



More information about the osmocom-commitlog mailing list