Skip to content

Commit 7c5d1ed

Browse files
committed
[origin] Bump up to 2024.02.15 [112.0.1]
2024.02.15: - Updated the RTCP implementation so that reception stats for a SSRC are no longer deleted, even if a SSRC is reaped due to RTCP inactivity (no RTCP "SR" reports received recently). (cherry picked from commit 440efb0)
1 parent 71f3c09 commit 7c5d1ed

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

BasicUsageEnvironment/include/BasicUsageEnvironment_version.hh

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ along with this library; if not, write to the Free Software Foundation, Inc.,
1414
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1515
**********/
1616
// Version information for the "BasicUsageEnvironment" library
17-
// Copyright (c) 1996-2023 Live Networks, Inc. All rights reserved.
17+
// Copyright (c) 1996-2024 Live Networks, Inc. All rights reserved.
1818

1919
#ifndef _BASICUSAGEENVIRONMENT_VERSION_HH
2020
#define _BASICUSAGEENVIRONMENT_VERSION_HH
2121

22-
#define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_STRING "2023.11.30"
23-
#define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_INT 1701302400
22+
#define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_STRING "2024.02.15"
23+
#define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_INT 1707955200
2424

2525
#endif

UsageEnvironment/include/UsageEnvironment_version.hh

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ along with this library; if not, write to the Free Software Foundation, Inc.,
1414
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1515
**********/
1616
// Version information for the "UsageEnvironment" library
17-
// Copyright (c) 1996-2023 Live Networks, Inc. All rights reserved.
17+
// Copyright (c) 1996-2024 Live Networks, Inc. All rights reserved.
1818

1919
#ifndef _USAGEENVIRONMENT_VERSION_HH
2020
#define _USAGEENVIRONMENT_VERSION_HH
2121

22-
#define USAGEENVIRONMENT_LIBRARY_VERSION_STRING "2023.11.30"
23-
#define USAGEENVIRONMENT_LIBRARY_VERSION_INT 1701302400
22+
#define USAGEENVIRONMENT_LIBRARY_VERSION_STRING "2024.02.15"
23+
#define USAGEENVIRONMENT_LIBRARY_VERSION_INT 1707955200
2424

2525
#endif

config.linux-with-shared-libraries

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# One or more interfaces were added, but no existing interfaces were changed or removed => CURRENT += 1; REVISION = 0; AGE += 1
55

66
libliveMedia_VERSION_CURRENT=112
7-
libliveMedia_VERSION_REVISION=0
7+
libliveMedia_VERSION_REVISION=1
88
libliveMedia_VERSION_AGE=0
99
libliveMedia_LIB_SUFFIX=so.$(shell expr $(libliveMedia_VERSION_CURRENT) - $(libliveMedia_VERSION_AGE)).$(libliveMedia_VERSION_AGE).$(libliveMedia_VERSION_REVISION)
1010

configure

100644100755
File mode changed.

fix-makefile

100644100755
File mode changed.

genMakefiles

100644100755
File mode changed.

genWindowsMakefiles

100644100755
File mode changed.

groupsock/include/groupsock_version.hh

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ along with this library; if not, write to the Free Software Foundation, Inc.,
1414
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1515
**********/
1616
// Version information for the "groupsock" library
17-
// Copyright (c) 1996-2023 Live Networks, Inc. All rights reserved.
17+
// Copyright (c) 1996-2024 Live Networks, Inc. All rights reserved.
1818

1919
#ifndef _GROUPSOCK_VERSION_HH
2020
#define _GROUPSOCK_VERSION_HH
2121

22-
#define GROUPSOCK_LIBRARY_VERSION_STRING "2023.11.30"
23-
#define GROUPSOCK_LIBRARY_VERSION_INT 1701302400
22+
#define GROUPSOCK_LIBRARY_VERSION_STRING "2024.02.15"
23+
#define GROUPSOCK_LIBRARY_VERSION_INT 1707955200
2424

2525
#endif

liveMedia/RTCP.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ void RTCPMemberDatabase::reapOldMembers(unsigned threshold) {
102102
#ifdef DEBUG
103103
fprintf(stderr, "reap: removing SSRC 0x%x\n", oldSSRC);
104104
#endif
105-
fOurRTCPInstance.removeSSRC(oldSSRC, True);
105+
fOurRTCPInstance.removeSSRC(oldSSRC, False/*keep stats around*/);
106106
}
107107
} while (foundOldMember);
108108
}

liveMedia/include/liveMedia_version.hh

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ along with this library; if not, write to the Free Software Foundation, Inc.,
1414
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1515
**********/
1616
// Version information for the "liveMedia" library
17-
// Copyright (c) 1996-2023 Live Networks, Inc. All rights reserved.
17+
// Copyright (c) 1996-2024 Live Networks, Inc. All rights reserved.
1818

1919
#ifndef _LIVEMEDIA_VERSION_HH
2020
#define _LIVEMEDIA_VERSION_HH
2121

22-
#define LIVEMEDIA_LIBRARY_VERSION_STRING "2023.11.30"
23-
#define LIVEMEDIA_LIBRARY_VERSION_INT 1701302400
22+
#define LIVEMEDIA_LIBRARY_VERSION_STRING "2024.02.15"
23+
#define LIVEMEDIA_LIBRARY_VERSION_INT 1707955200
2424

2525
#endif

0 commit comments

Comments
 (0)