Changes of Revision 34

libosmocore.spec Changed
x
 
1
@@ -14,13 +14,13 @@
2
 
3
 Name:           libosmocore
4
 Requires: osmocom-master
5
-Version: 1.7.0.79.7c1b
6
+Version: 1.7.0.82.90b64
7
 Release:        0
8
 Summary:        The Open Source Mobile Communications Core Library
9
 License:        GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later AND AGPL-3.0-or-later
10
 Group:          Productivity/Telephony/Utilities
11
 Url:            https://osmocom.org/projects/libosmocore/wiki/Libosmocore
12
-Source: libosmocore_1.7.0.79.7c1b.tar.xz
13
+Source: libosmocore_1.7.0.82.90b64.tar.xz
14
 Source1: rpmlintrc
15
 BuildRequires:  automake >= 1.6
16
 BuildRequires:  libtool >= 2
17
commit_7c1b6cb4cd6aa548f8dbba1859113f29efb63b46.txt Deleted
commit_90b64a1d70735edc81a2a8606db282b22d7bad71.txt Added
libosmocore_1.7.0.79.7c1b.dsc -> libosmocore_1.7.0.82.90b64.dsc Changed
22
 
1
@@ -2,7 +2,7 @@
2
 Source: libosmocore
3
 Binary: libosmocore, libosmocodec0, libosmocodec-doc, libosmocoding0, libosmocoding-doc, libosmocore19, libosmocore-doc, libosmogb14, libosmogb-doc, libosmogsm18, libosmogsm-doc, libosmovty9, libosmovty-doc, libosmoctrl0, libosmoctrl-doc, libosmosim2, libosmousb0, libosmocore-dev, libosmocore-utils, libosmocore-dbg
4
 Architecture: any all
5
-Version: 1.7.0.79.7c1b
6
+Version: 1.7.0.82.90b64
7
 Maintainer: Osmocom team <openbsc@lists.osmocom.org>
8
 Homepage: https://projects.osmocom.org/projects/libosmocore
9
 Standards-Version: 3.9.8
10
@@ -31,8 +31,8 @@
11
  libosmovty-doc deb doc optional arch=all
12
  libosmovty9 deb libs optional arch=any
13
 Checksums-Sha1:
14
- 0ec8ac0470821887b2ed92aa34fae58dc98cfba9 1002428 libosmocore_1.7.0.79.7c1b.tar.xz
15
+ 4e04a0d6ce9aa6513b79a56334f740d29454fb83 1003020 libosmocore_1.7.0.82.90b64.tar.xz
16
 Checksums-Sha256:
17
- 19e004bb1a1efc0e3635ca509bd4225958863f7c4c161f6023b98ed431e3db1b 1002428 libosmocore_1.7.0.79.7c1b.tar.xz
18
+ dfcfd692e0dcb2811288bc829b099dfe7224ad095b3698461922551e700cfe44 1003020 libosmocore_1.7.0.82.90b64.tar.xz
19
 Files:
20
- 7206d71f1ee9aa8cb533c0eb527c0efa 1002428 libosmocore_1.7.0.79.7c1b.tar.xz
21
+ d724b3e7f370e5c01ca9ba6e333ea0fa 1003020 libosmocore_1.7.0.82.90b64.tar.xz
22
libosmocore_1.7.0.79.7c1b.tar.xz/.tarball-version -> libosmocore_1.7.0.82.90b64.tar.xz/.tarball-version Changed
4
 
1
@@ -1 +1 @@
2
-1.7.0.79-7c1b
3
+1.7.0.82-90b64
4
libosmocore_1.7.0.79.7c1b.tar.xz/debian/changelog -> libosmocore_1.7.0.82.90b64.tar.xz/debian/changelog Changed
12
 
1
@@ -1,8 +1,8 @@
2
-libosmocore (1.7.0.79.7c1b) unstable; urgency=medium
3
+libosmocore (1.7.0.82.90b64) unstable; urgency=medium
4
 
5
   * Automatically generated changelog entry for building the Osmocom master feed
6
 
7
- -- Osmocom OBS scripts <info@osmocom.org>  Mon, 05 Dec 2022 19:17:36 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org>  Tue, 13 Dec 2022 21:12:36 +0000
9
 
10
 libosmocore (1.7.0) unstable; urgency=medium
11
 
12
libosmocore_1.7.0.79.7c1b.tar.xz/src/gsm/gsm0808_utils.c -> libosmocore_1.7.0.82.90b64.tar.xz/src/gsm/gsm0808_utils.c Changed
25
 
1
@@ -221,13 +221,13 @@
2
    /* See also 3GPP TS 48.008 3.2.2.103 Speech Codec List */
3
    uint8_t header = 0;
4
    uint8_t *old_tail;
5
-   bool type_extended = false;
6
+   bool type_extended;
7
 
8
    /* Note: Extended codec types are codec types that require 8 instead
9
     * of 4 bit to fully specify the selected codec. In the following,
10
     * we check if we work with an extended type or not. We also check
11
     * if the codec type is valid at all. */
12
-   switch(sc->type) {
13
+   switch (sc->type) {
14
    case GSM0808_SCT_FR1:
15
    case GSM0808_SCT_FR2:
16
    case GSM0808_SCT_FR3:
17
@@ -264,7 +264,6 @@
18
        msgb_put_u8(msg, header);
19
        msgb_put_u8(msg, sc->type);
20
    } else {
21
-       OSMO_ASSERT(sc->type < 0x0f);
22
        header |= sc->type;
23
        msgb_put_u8(msg, header);
24
    }
25