Skip to content

Commit 1c6e941

Browse files
committed
[origin] Bump up to 2024.08.01 [113.4.1]
(cherry picked from commit e2661c0)
1 parent 9d1cdb5 commit 1c6e941

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

BasicUsageEnvironment/include/BasicUsageEnvironment_version.hh

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ along with this library; if not, write to the Free Software Foundation, Inc.,
1919
#ifndef _BASICUSAGEENVIRONMENT_VERSION_HH
2020
#define _BASICUSAGEENVIRONMENT_VERSION_HH
2121

22-
#define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_STRING "2024.06.26"
23-
#define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_INT 1719360000
22+
#define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_STRING "2024.08.01"
23+
#define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_INT 1722470400
2424

2525
extern char const* const BasicUsageEnvironmentLibraryVersionStr;
2626
extern int const BasicUsageEnvironmentLibraryVersionInt;

UsageEnvironment/include/UsageEnvironment_version.hh

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ along with this library; if not, write to the Free Software Foundation, Inc.,
1919
#ifndef _USAGEENVIRONMENT_VERSION_HH
2020
#define _USAGEENVIRONMENT_VERSION_HH
2121

22-
#define USAGEENVIRONMENT_LIBRARY_VERSION_STRING "2024.06.26"
23-
#define USAGEENVIRONMENT_LIBRARY_VERSION_INT 1719360000
22+
#define USAGEENVIRONMENT_LIBRARY_VERSION_STRING "2024.08.01"
23+
#define USAGEENVIRONMENT_LIBRARY_VERSION_INT 1722470400
2424

2525
extern char const* const UsageEnvironmentLibraryVersionStr;
2626
extern int const UsageEnvironmentLibraryVersionInt;

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=113
7-
libliveMedia_VERSION_REVISION=3
7+
libliveMedia_VERSION_REVISION=4
88
libliveMedia_VERSION_AGE=1
99
libliveMedia_LIB_SUFFIX=so.$(shell expr $(libliveMedia_VERSION_CURRENT) - $(libliveMedia_VERSION_AGE)).$(libliveMedia_VERSION_AGE).$(libliveMedia_VERSION_REVISION)
1010

groupsock/include/groupsock_version.hh

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ along with this library; if not, write to the Free Software Foundation, Inc.,
1919
#ifndef _GROUPSOCK_VERSION_HH
2020
#define _GROUPSOCK_VERSION_HH
2121

22-
#define GROUPSOCK_LIBRARY_VERSION_STRING "2024.06.26"
23-
#define GROUPSOCK_LIBRARY_VERSION_INT 1719360000
22+
#define GROUPSOCK_LIBRARY_VERSION_STRING "2024.08.01"
23+
#define GROUPSOCK_LIBRARY_VERSION_INT 1722470400
2424

2525
extern char const* const groupsockLibraryVersionStr;
2626
extern int const groupsockLibraryVersionInt;

liveMedia/ServerMediaSession.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ char* ServerMediaSession::generateSDPDescription(int addressFamily) {
271271

272272
char const* const sdpPrefixFmt =
273273
"v=0\r\n"
274-
"o=- %ld%06ld %d IN %s %s\r\n"
274+
"o=- %lld%06lld %d IN %s %s\r\n"
275275
"s=%s\r\n"
276276
"i=%s\r\n"
277277
"t=0 0\r\n"
@@ -299,7 +299,7 @@ char* ServerMediaSession::generateSDPDescription(int addressFamily) {
299299

300300
// Generate the SDP prefix (session-level lines):
301301
snprintf(sdp, sdpLength, sdpPrefixFmt,
302-
fCreationTime.tv_sec, fCreationTime.tv_usec, // o= <session id>
302+
(long long)fCreationTime.tv_sec, (long long)fCreationTime.tv_usec, // o= <session id>
303303
1, // o= <version> // (needs to change if params are modified)
304304
addressFamily == AF_INET ? "IP4" : "IP6", // o= <address family>
305305
ipAddressStr.val(), // o= <address>

liveMedia/include/liveMedia_version.hh

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ along with this library; if not, write to the Free Software Foundation, Inc.,
1919
#ifndef _LIVEMEDIA_VERSION_HH
2020
#define _LIVEMEDIA_VERSION_HH
2121

22-
#define LIVEMEDIA_LIBRARY_VERSION_STRING "2024.06.26"
23-
#define LIVEMEDIA_LIBRARY_VERSION_INT 1719360000
22+
#define LIVEMEDIA_LIBRARY_VERSION_STRING "2024.08.01"
23+
#define LIVEMEDIA_LIBRARY_VERSION_INT 1722470400
2424

2525
extern char const* const liveMediaLibraryVersionStr;
2626
extern int const liveMediaLibraryVersionInt;

0 commit comments

Comments
 (0)