Revisions of live555

buildservice-autocommit accepted request 1154081 from Takashi Iwai's avatar Takashi Iwai (tiwai) (revision 78)
baserev update by copy to link target
Takashi Iwai's avatar Takashi Iwai (tiwai) accepted request 1153888 from Petr Gajdos's avatar Petr Gajdos (pgajdos) (revision 77)
- Use %autosetup macro. Allows to eliminate the usage of deprecated
  %patchN
buildservice-autocommit accepted request 1139486 from Takashi Iwai's avatar Takashi Iwai (tiwai) (revision 76)
baserev update by copy to link target
Takashi Iwai's avatar Takashi Iwai (tiwai) committed (revision 75)
update changelog
Takashi Iwai's avatar Takashi Iwai (tiwai) accepted request 1138554 from Takashi Iwai's avatar Takashi Iwai (tiwai) (revision 74)
- update up to 2023.11.30:
  * In the implementation of the "MPEGVideoStreamFramer" class, gave "TimeCode::operator==()"
    the "const" qualifier, to make some compilers happy.
  * Performed the annual update of the copyright years near the start of each file
- update to 2023.11.08:
  * Changed the signature to the virtual function "getRTPSinkandRTCP()" (in "ServerMediaSubession",
    and its subclasses "OnDemandServerMediaSession" and "PassiveServerMediaSubsession")
    to make its 'result' arguments "rtpSink" and "rtcp" no longer "const *".  There was no
    real reason to make those "const *".
- update to 2023.11.07:
  * In the class "GenericMediaServer", made the variables "fServerMediaSessions",
    "fClientConnections", and "fClientSessions" 'protected' rather than 'private',
    to allow subclasses to access them if desired.
- update to 2023.10.30:
  * Fixed a bug in "deleteEventTrigger()" that had accidentally been introduced during the
    change to 'event trigger' implementation back in June.
- update to 2023.07.24:
  * Updated the event trigger implementation once again, to allow for the possibility of
    developers redefining MAX_NUM_EVENT_TRIGGERS (it must always be <= the number of bits
  in an "EventTriggerId", though.  (Thanks to Jan Rørgaard Hansen for this suggestion.)
- update to 2023.06.20:
  * Updated the event trigger implementation again - in the case where "NO_STD_LIB" is
    defined.  In this case, "fTriggersAwaitingHandling" is implemented as an array of
    "Boolean volatile"s, rather than as a 32-bit bitmap.  This should make 'race conditions'
    less likely even if "NO_STD_LIB" is defined (though you should use the preferred, default
    implementation - that uses an array of "std::atomic_flag"s - if possible).
- update to 2023.06.16:
  * Changed the (default) implementation of 'event triggers' in "BasicTaskScheduler" to
    implement "fTriggersAwaitingHandling" using "std:atomic_flag"s, rather than as a bitmap.
    This should overcome 'race conditions' that some users experienced when calling
buildservice-autocommit accepted request 1090929 from Takashi Iwai's avatar Takashi Iwai (tiwai) (revision 73)
baserev update by copy to link target
Takashi Iwai's avatar Takashi Iwai (tiwai) accepted request 1089642 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 72)
- update to 2023.5.10:
  * Fixed a minor memory leak in the "RTSPServer" code.
  * Calls to "send()" and "sendto()" now explicitly take
    "MSG_NOSIGNAL" rather than 0 as the 'flags' parameter.
    In most systems, 0 seems to work, but apparently not in
    Debian Linux.
buildservice-autocommit accepted request 1060467 from Takashi Iwai's avatar Takashi Iwai (tiwai) (revision 71)
baserev update by copy to link target
Takashi Iwai's avatar Takashi Iwai (tiwai) accepted request 1060144 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 70)
- update to 2023.01.19:
  - By default, we no longer compile "groupsock/NetAddress.cpp" for Windows to use
    "gethostbyname()", because of a report that this breaks IPv6 name resolution. 

- update to 2023.01.11:
  * Updated the "BasicTaskScheduler"/"DelayQueue" implementation to make the 'token counter'
    a field of the task scheduler object, rather than having it be a static variable.
    This avoids potential problems if an application uses more than one thread (with each thread
    having its own task scheduler).
buildservice-autocommit accepted request 1040589 from Takashi Iwai's avatar Takashi Iwai (tiwai) (revision 69)
baserev update by copy to link target
Takashi Iwai's avatar Takashi Iwai (tiwai) accepted request 1039679 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 68)
- update to 2022.12.01:
  - Yet another fix to the previous fix for RTSP-over-HTTP streaming.
  - The previous version's fix to "RTSPClient" (for RTSP-over-HTTP streaming) was incomplete.
    This should fix it for real.
  - Fixed a bug in "RTSPClient" that would cause RTSP-over-HTTP streaming over TLS to
    sometimes fail.  (Thanks to Johannes Gajdosik for reporting this.)
  - Fixed a bug that would cause a RTSP server to use an incorrect URL if it accepted connections
    via TLS, but *without* streaming SRTP.
buildservice-autocommit accepted request 1037610 from Takashi Iwai's avatar Takashi Iwai (tiwai) (revision 67)
baserev update by copy to link target
Takashi Iwai's avatar Takashi Iwai (tiwai) accepted request 1037407 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 66)
- update to 2022.11.19:
  - Added a new global variable "ReceivingInterfaceAddr6" (analogous to the existing
    variable "ReceivingInterfaceAddr" for IPv4) to allow applications to optionally
    change the default receiving address for IPv6.
buildservice-autocommit accepted request 1007620 from Takashi Iwai's avatar Takashi Iwai (tiwai) (revision 65)
baserev update by copy to link target
Takashi Iwai's avatar Takashi Iwai (tiwai) accepted request 1007545 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 64)
- update to 2022.10.01:
  - Updated the previous revision so that the virtual function "specialHandlingOfAuthenticationFailure()"
    is now called only if there is an actual authentication failure - not on the first time that
    we send back a "401 Unauthorized" response.
  - Added a new virtual function "specialHandlingOfAuthenticationFailure()" to "RTSPServer" to
    allow a subclassed "RTSPServer" to take special action (e.g., statistics logging)
    whenever an authentication failure occurs.
buildservice-autocommit accepted request 990763 from Takashi Iwai's avatar Takashi Iwai (tiwai) (revision 63)
baserev update by copy to link target
Takashi Iwai's avatar Takashi Iwai (tiwai) accepted request 990735 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 62)
- update to 2022.07.14:
  * use SHA-1 rather than MD5 to hash the latest tarball of our code
buildservice-autocommit accepted request 984903 from Dominique Leuenberger's avatar Dominique Leuenberger (dimstar) (revision 61)
baserev update by copy to link target
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar) accepted request 984889 from Dominique Leuenberger's avatar Dominique Leuenberger (dimstar) (revision 60)
- Update to version 2022.06.16:
  + Both our RTSP client and RTSP server implementations now
    support (optional) RTSP-over-HTTPS streaming, when
    RTSP-over-TLS would otherwise be available.
- Changes from version 2022.06.14:
  + Added optional support (via #ifdefs) to the
    "testOnDemandRTSPServer" demo application for streaming via
    RTSPS (RTSP-over-TLS) and optionally SRTP (encrypted RTP/RTCP).
    To use this, you would need to define SERVER_USE_TLS, and
    PATHNAME_TO_CERTIFICATE_FILE and PATHNAME_TO_PRIVATE_KEY_FILE.
buildservice-autocommit accepted request 975074 from Dominique Leuenberger's avatar Dominique Leuenberger (dimstar) (revision 59)
baserev update by copy to link target
Displaying revisions 1 - 20 of 78
openSUSE Build Service is sponsored by