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 "GSM Audio Pocket Knife".
The branch, master has been updated
via d5cfaa6a52d09551661f2cc8ef7ffc24f809960a (commit)
via 83aa99e7a9a1ff0d6949b4c71cd8817e2668b341 (commit)
from 6c42261cd2b8075904e3df9ec987ffe52c6adb2b (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/gapk/commit/?id=d5cfaa6a52d09551661f2cc8ef7ffc24f80…
commit d5cfaa6a52d09551661f2cc8ef7ffc24f809960a
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Sat Sep 2 21:34:03 2017 +0700
pq_alsa.c: print error message if device init fails
http://cgit.osmocom.org/gapk/commit/?id=83aa99e7a9a1ff0d6949b4c71cd8817e266…
commit 83aa99e7a9a1ff0d6949b4c71cd8817e2668b341
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Sat Sep 2 21:34:02 2017 +0700
pq_alsa.c: handle output buffer underrun
On some systems the ALSA output buffer is pretty big, and
if the audio samples are not being passed into the buffer
quickly enough, it becomes starved for data, resulting
in an error called underrun.
Previously, when it happenned, GAPK used to stop processing
with the following message (where X is a random number):
[+] PQ: Adding ALSA output (dev='default', blk_len=320)
[!] pq_execute(): abort, item returned -1
[+] Processed X frames
According to the ALSA documentation, the pcm_handle
changes its state when the problem happens, and should
be recovered using the snd_pcm_prepare() call. This change
actually does that.
-----------------------------------------------------------------------
Summary of changes:
src/pq_alsa.c | 20 +++++++++++++++++---
1 file changed, 17 insertions(+), 3 deletions(-)
hooks/post-receive
--
GSM Audio Pocket Knife
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 "Osmocom layer for OpenEmbedded".
The branch, user/max/nightly-fix has been created
at d72158b75a8cb0267835015b2f65e97df0e65cd7 (commit)
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/meta-telephony/commit/?id=d72158b75a8cb0267835015b2…
commit d72158b75a8cb0267835015b2f65e97df0e65cd7
Author: Max <msuraev(a)sysmocom.de>
Date: Fri Sep 1 19:06:05 2017 +0200
libosmo-abis: modify PV to match recent release
The upstream release commit is 7f17b8c45d094941292036143f3292a1d5789cf5.
Hopefully this would fix the issue with recent nightly:
/usr/bin/osmo-bts-sysmo
/usr/bin/osmo-bts-sysmo: error while loading shared libraries: libosmotrau.so.1: cannot open shared object file: No such file or directory
In future we should try to find a way to automatically set PV to the
latest git tag.
Change-Id: I9f27661d9e5241efe7725b7d1efcf4aef55e2efe
-----------------------------------------------------------------------
hooks/post-receive
--
Osmocom layer for OpenEmbedded
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 "GSM Audio Pocket Knife".
The branch, fixeria/lib has been updated
via 293384fd1b3d6c681d7f4862f98eb52977551e00 (commit)
via aedbe9ad7a352b3fdd846aa6093b5cde29b0749b (commit)
via d25004a98122d84039b8ce20932729189c8ae171 (commit)
via 5f332917e1ce8fcaa67a8406e69df9a1e01b2b67 (commit)
via 7d411284afeb9489a3fe0126396f094ad305c0f5 (commit)
from 2b02f8ec27a15302f744bee4a3a0502233ff5e2e (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/gapk/commit/?id=293384fd1b3d6c681d7f4862f98eb529775…
commit 293384fd1b3d6c681d7f4862f98eb52977551e00
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Sep 1 16:50:51 2017 +0700
Expose format / codec description structures
To make external applications be able to 'play' with formats and
codecs without usage of processing queue, this change adds an
'osmo_gapk' prefix to all format / codec description structures,
and moves them to the corresponding headers.
http://cgit.osmocom.org/gapk/commit/?id=aedbe9ad7a352b3fdd846aa6093b5cde29b…
commit aedbe9ad7a352b3fdd846aa6093b5cde29b0749b
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Sep 1 16:19:40 2017 +0700
procqueue: use linuxlist to store queue items
The usage of linuxlist is more flexible than having a limited
array of pointers. This approach allows to have as much items
in a processing queue as required.
http://cgit.osmocom.org/gapk/commit/?id=d25004a98122d84039b8ce20932729189c8…
commit d25004a98122d84039b8ce20932729189c8ae171
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Sep 1 15:22:32 2017 +0700
procqueue: use uint8_t as output buffer type
http://cgit.osmocom.org/gapk/commit/?id=5f332917e1ce8fcaa67a8406e69df9a1e01…
commit 5f332917e1ce8fcaa67a8406e69df9a1e01b2b67
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Sep 1 15:15:45 2017 +0700
procqueue: store output buffers inside queue items
An output buffer belongs to its queue item, so it will be more
correctly to store its pointer inside the osmo_gapk_pq_item.
http://cgit.osmocom.org/gapk/commit/?id=7d411284afeb9489a3fe0126396f094ad30…
commit 7d411284afeb9489a3fe0126396f094ad305c0f5
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Sep 1 14:33:19 2017 +0700
procqueue: use unsigned int for I/O frame size fields
A frame size cannot be negative, so 'unsigned' is more
suitable for frame size fields.
-----------------------------------------------------------------------
Summary of changes:
include/osmocom/gapk/codecs.h | 7 +++
include/osmocom/gapk/formats.h | 18 +++++++
include/osmocom/gapk/procqueue.h | 15 ++++--
src/codec_amr.c | 2 +-
src/codec_efr.c | 2 +-
src/codec_fr.c | 2 +-
src/codec_hr.c | 2 +-
src/codec_pcm.c | 2 +-
src/codecs.c | 18 ++-----
src/fmt_amr.c | 2 +-
src/fmt_amr_opencore.c | 2 +-
src/fmt_gsm.c | 2 +-
src/fmt_hr_ref.c | 4 +-
src/fmt_racal.c | 6 +--
src/fmt_rawpcm.c | 2 +-
src/fmt_rtp_amr.c | 2 +-
src/fmt_rtp_efr.c | 2 +-
src/fmt_rtp_hr_etsi.c | 2 +-
src/fmt_rtp_hr_ietf.c | 2 +-
src/fmt_ti.c | 6 +--
src/formats.c | 50 ++++++-----------
src/libosmogapk.map | 23 ++++++++
src/procqueue.c | 112 ++++++++++++++++++++++-----------------
23 files changed, 163 insertions(+), 122 deletions(-)
hooks/post-receive
--
GSM Audio Pocket Knife
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 "MNCC <-> SIP bridge".
The branch, master has been updated
via 148df95d42adbabd6ddd87e28c5970b615b9b3cd (commit)
from 9d1ac29a48aa3347fbc0112c2baf595b629ab5f8 (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/osmo-sip-connector/commit/?id=148df95d42adbabd6ddd8…
commit 148df95d42adbabd6ddd87e28c5970b615b9b3cd
Author: Max <msuraev(a)sysmocom.de>
Date: Fri Sep 1 10:19:18 2017 +0200
Fix build after recent libosmocore update
Change-Id: Idd1eba7ed0c5454de29d86a8bb72beb24d03ef2a
-----------------------------------------------------------------------
Summary of changes:
contrib/jenkins.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
MNCC <-> SIP bridge
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 "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 6384c73fbfd852d45a63b729389afa2f92e02fb2 (commit)
from fab4efdaf56bfa3c6cb7391ccec7aeb6e52f9a3d (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/osmo-bts/commit/?id=6384c73fbfd852d45a63b729389afa2…
commit 6384c73fbfd852d45a63b729389afa2f92e02fb2
Author: Max <msuraev(a)sysmocom.de>
Date: Thu Aug 31 13:52:10 2017 +0200
Support sending SI13 to PCU
* explicitly set SAPI when sending data_ind to PCU
* drop unused receiving code for BCCH SAPI
* send SI13 when PCU is connected
* send SI13 when new SI is received
Change-Id: I9e83ef792585aa962f99897d9973cef12f186bcf
Related: OS#2400
-----------------------------------------------------------------------
Summary of changes:
include/osmo-bts/pcu_if.h | 1 +
src/common/l1sap.c | 5 +++--
src/common/pcu_sock.c | 39 ++++++++++++++++++++++++---------------
src/common/rsl.c | 4 ++++
4 files changed, 32 insertions(+), 17 deletions(-)
hooks/post-receive
--
Osmocom BTS-side code (Abis, scheduling, ...)
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 "Manuals for Osmocom GSM components".
The branch, master has been updated
via b1503f04bf109e28ea938b3a42d962d56d3fed6e (commit)
from 79e1aa0a23301afa4bade36e9829fa0792de070f (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/osmo-gsm-manuals/commit/?id=b1503f04bf109e28ea938b3…
commit b1503f04bf109e28ea938b3a42d962d56d3fed6e
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Thu Aug 31 16:32:40 2017 +0200
Allow easily disabling GFDL references
All parts referencing GFDL can be easily disabled by removing the
'gfdl-enabled' attribute from the document.
Change-Id: I2489726ad2e90301bceadfada926e31ae0f85986
-----------------------------------------------------------------------
Summary of changes:
OsmoBSC/osmobsc-usermanual.adoc | 2 ++
OsmoBTS/osmobts-abis.adoc | 2 ++
OsmoBTS/osmobts-usermanual.adoc | 2 ++
OsmoNITB/osmonitb-usermanual.adoc | 2 ++
OsmoPCU/osmopcu-gb.adoc | 2 ++
OsmoPCU/osmopcu-usermanual.adoc | 2 ++
OsmoSGSN/osmosgsn-usermanual.adoc | 2 ++
common/chapters/glossary.adoc | 2 ++
common/chapters/preface.adoc | 5 ++++-
9 files changed, 20 insertions(+), 1 deletion(-)
hooks/post-receive
--
Manuals for Osmocom GSM components
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 99377c2daab6e428194c92103a3a7c2d8a8b5551 (commit)
from 272bd4fa6611bfb4f7a9fc9a46184709f984f3c1 (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=99377c2daab6e428194c92103a3a…
commit 99377c2daab6e428194c92103a3a7c2d8a8b5551
Author: Max <msuraev(a)sysmocom.de>
Date: Wed Aug 30 19:17:50 2017 +0200
libosmogsm: add Routing Area Identifier test
Ensure that gsm48_parse_ra() and gsm48_construct_ra() behave properly.
Change-Id: I27117fe728407dd10886459e89ba4ff9d5e53e6b
-----------------------------------------------------------------------
Summary of changes:
tests/gsm0408/gsm0408_test.c | 49 +++++++++++++++++++++++++++++++++++++++++++
tests/gsm0408/gsm0408_test.ok | 8 +++++++
2 files changed, 57 insertions(+)
hooks/post-receive
--
An utility library for Open Source Mobile Communications
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 "A python tool to program magic SIMs".
The branch, master has been updated
via 1d087efc974ed29d8f0802a7aba507ab56698283 (commit)
from e96048833868faf6167961199b882a0da28b62f9 (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/pysim/commit/?id=1d087efc974ed29d8f0802a7aba507ab56…
commit 1d087efc974ed29d8f0802a7aba507ab56698283
Author: Daniel Willmann <dwillmann(a)sysmocom.de>
Date: Thu Aug 31 10:08:45 2017 +0200
Support writing SMSP for sysmoUSIM-SJS1
Closes: OS#1989
Change-Id: I6cbf69be3d410c18a509b98a63cb69bab74a528a
-----------------------------------------------------------------------
Summary of changes:
pySim/cards.py | 3 +++
1 file changed, 3 insertions(+)
hooks/post-receive
--
A python tool to program magic SIMs
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 272bd4fa6611bfb4f7a9fc9a46184709f984f3c1 (commit)
from 483cdffeb8beab7d43c39e9d46a20bad03ff56ad (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=272bd4fa6611bfb4f7a9fc9a4618…
commit 272bd4fa6611bfb4f7a9fc9a46184709f984f3c1
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Thu Aug 31 17:53:04 2017 +0700
Makefile.am: fix missing LTLDFLAGS for libosmocoding
Despite the libosmocoding.map is preset since the library release,
one was not used in a proper way. The LTLDFLAGS were missing, so
let's add them.
Change-Id: Idf677825ff642d50bea43c7f970810783e864fdd
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 1 +
src/coding/Makefile.am | 1 +
2 files changed, 2 insertions(+)
hooks/post-receive
--
An utility library for Open Source Mobile Communications
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 "SCCP Library".
The branch, master has been updated
via d8552d70114cccce28aeffe5010eaf750a2277c5 (commit)
from 02e029708a62cdac960947193c8f850c3fe5ad66 (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/libosmo-sccp/commit/?id=d8552d70114cccce28aeffe5010…
commit d8552d70114cccce28aeffe5010eaf750a2277c5
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Thu Aug 31 20:25:52 2017 +0200
osmo-stp: Fix process termination on SIGINT+SIGTERM
In commit eed8c1bfae1d151e135b574d83ed295d36ad8b44 we introduced
some singal handling code for (among others) SIGINT and SIGTERM.
This code causes the process to hang rather than terminate, as it
only dispatches a signal that nobody handles yet in libosmo-sccp.
Until a proper implementation is made, let's terminate the process
as expected.
Change-Id: Iff79c8ac0b347660333912c9258073a013ea799b
-----------------------------------------------------------------------
Summary of changes:
stp/stp_main.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
hooks/post-receive
--
SCCP Library