Commit Graph

29 Commits

Author SHA256 Message Date
Dominique Leuenberger
a866b8ef3d Accepting request 892385 from multimedia:libs
OBS-URL: https://build.opensuse.org/request/show/892385
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/srt?expand=0&rev=12
2021-05-15 21:15:27 +00:00
d987ee5351 Accepting request 892320 from home:susnux:branches:multimedia:libs
Update to version 1.4.3

OBS-URL: https://build.opensuse.org/request/show/892320
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/srt?expand=0&rev=28
2021-05-12 07:55:37 +00:00
Dominique Leuenberger
12904fe1a0 Accepting request 870841 from multimedia:libs
OBS-URL: https://build.opensuse.org/request/show/870841
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/srt?expand=0&rev=11
2021-02-16 21:35:25 +00:00
84e62e8a22 Accepting request 870816 from home:cgiboudeaux:branches:multimedia:libs
- Add patch to fix build with GCC 11 (boo#1181883)
  * 0001-Fix-build-with-GCC-11.patch

OBS-URL: https://build.opensuse.org/request/show/870816
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/srt?expand=0&rev=26
2021-02-10 12:40:04 +00:00
Dominique Leuenberger
f874ec66be Accepting request 841239 from multimedia:libs
OBS-URL: https://build.opensuse.org/request/show/841239
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/srt?expand=0&rev=10
2020-11-13 17:52:25 +00:00
95425c1e3a Accepting request 839996 from home:alois:branches:multimedia:libs
- Update to version 1.4.2
  New Features and Enhancements
    * Added support for C++11. Reworked timing and
      synchronization objects. Three sources of timing are now
      available (selected via a build option):
      + POSIX gettimeofday() - default build mode (affected by
        discontinuous jumps in the system time);
      + POSIX CLOCK_MONOTONIC. CMake build option:
        -DENABLE_MONOTONIC_CLOCK=ON. See --enable-monotonic-clock
        in BuildOptions.md;
      + C++11 std::chrono::steady_clock, std::thread,
        std::mutex, etc. CMake build option:
        -DENABLE_STDCXX_SYNC=ON. See --enable-stdcxx-sync in
        BuildOptions.md.
    * Added SRT Source Time API support. It allows setting a
      source timestamp on a packet that corresponds to a packet
      creation/reception time. See the Time Access section of
      the API docs.
    * Added an improved retransmission algorithm which reduces
      the retransmission overhead on a link. Set option
      SRTO_RETRANSMITALGO=1.
    * Added SRTO_BINDTODEVICE option to bind a socket to a
      specified NIC. SRTO_BINDTODEVICE option reflects the
      system option SO_BINDTODEVICE for an SRT socket.
    * Customizable rejection reason code. SRT library now lets
      the application provide a code with rejection reason (in a
      listener callback) if connection request has been rejected
      by the application. See Rejection Codes in the Access
      Control guide.
    * Added new rejection reason: on timeout. See
      SRT_REJ_TIMEOUT in API-functions.md.
    * Extended SRT statistics with pktSentUniqueTotal,
      pktRecvUniqueTotal. Statistics documentation now has a
      summary table for better navigation.
    * Added srt_getversion() API function.
    * Moved socket options documentation to a separate file
      APISocketOptions.md. It now has a summary table for better
      navigation.
    * Socket options SRTO_INPUTBW and SRTO_OHEADBW are now
      readable.
    * The logging functionality has been improved by means of
      defining new and more fine-grained Functional Areas (FA)
      to which log messages are assigned. This is done to prevent
      too many debug log messages from the library influencing
      performance with the debug logging turned on.
    Fixed Issues
    * Fixed bug: finding the listener's muxer only by port
      number was wrong.
    * Fixed wrong reject reason on async connect.
    * Fixed CSndLossList::insert with negative offset.
    * Fixed default binding for IPv6-target rendezvous.
    * Fixed HS TSBPD flags check.
    * Improved CRcvLossList protection from concurrent access.
    * Fixed error reporting on connect/accept.
    * Correctly handle IPv4 connections on IPv6 listener.
    * Fixed Moving Average for receiver and sender buffers.
    * Protecting RCV buffer access.
    * Fixed local storage depleted issue #486.
    * Fixed restrictions on pre-bind only options.
    * Avoid reporting packets rebuilt by FEC as lost.
    * Improved inserting a serial element into sender's loss
      list.
    * Fixed handling of stale loss report.
    * Fixed closing the crypto control.
    * Added CSync class as a high-level CV wrapper.
    * Renamed legacy UDT_EPOLL_* symbols.
    * Eliminated ref_t. Some more convention fixes.
    * Crypto: Reset the passphrase in memory on close for
      security reasons.
    Deprecated or Renamed
    * Removed deprecated socket options: SRTO_TWOWAYDATA,
      SRTO_TSBPDMAXLAG, SRTO_CC, SRTO_MAXMSG, SRTO_MSGTTL,
      SRTO_SNDPBKEYLEN, SRTO_RCVPBKEYLEN.
    * Removed deprecated option names: SRTO_SMOOTHER (use
      SRTO_CONGESTION), SRTO_STRICTENC (use
      SRTO_ENFORCEDENCRYPTION).
    version 1.4.1:
    Improvements
    * Improved periodic NAK report timing
    * Use monotonic clock in CTimer::sleepto()
    * Initial reorder tolerance set to maximum value
      (SRTO_LOSSMAXTTL)
    * Added pktReorderTolerance to stats
    * Use busy wait only to refine below 1 ms
    * Added SRTO_LOSSMAXTTL to srt_getopt()
    * Update SND loss list on lite ACK
    Fixes
    * Fixed catching exception from
      CUDTUnited::connect_complete()
    * Fixed missing vertical FEC/CTL packet
    * Fixed bandwidth measurement on non-monotonic or
      retransmitted packets
    * Fixed srt_getopt(...): optlen is not set in some cases.
    * Fixed EPoll update_usock
    * Fixed checkTimers interval (100ms -> 10 ms)
    * Fixed SRT Stats backward compatibility (CBytePerfMon
      fields order)
    * Fixed FEC crash when a large number of dropped packets
      occur
    * Fixed FEC crash (access item out of range)
    * Fixed FileCC crash. Prevented 0 pktsInFlight to be used in
      the calculation for loss percentage
    version 1.4.0:
    New Features and Enhancements
    * Updates to epoll API. Added edge-triggered epoll wait.
    * srt-live-transmit default chunk size set to 1456
    * Added forward error correction (FEC) packet filter
    * Added Packet filter API
    * File congestion control improvements
    Fixed Issues
    * Free addrinfo if bind fails (potential memory leak)
    * Fixed SRTO_LOSSMAXTTL option on accepted socket
    * Fixed blocking srt_connect call (state update)
    * Fixed potential sender's sockets list overflow
    * Use MONOTONIC clock in Garbage Collector thread
- Drop CVE-2019-15784.patch (fixed upstream)

OBS-URL: https://build.opensuse.org/request/show/839996
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/srt?expand=0&rev=24
2020-10-12 09:36:59 +00:00
Dominique Leuenberger
90cbedd748 Accepting request 756849 from multimedia:libs
- Drop pkgconfig(zlib) BuildRequires: this is only needed on
  win32/mingw (and even there it rather seems like working around a
  bug in some other package, as there is no explicit call to zlib
  functions).

  * Added CVE-2019-15784.patch
- Update to version 1.3.4:

OBS-URL: https://build.opensuse.org/request/show/756849
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/srt?expand=0&rev=9
2019-12-16 16:26:17 +00:00
327eaa8b60 - Drop pkgconfig(zlib) BuildRequires: this is only needed on
win32/mingw (and even there it rather seems like working around a
  bug in some other package, as there is no explicit call to zlib
  functions).
  * Added CVE-2019-15784.patch
- Update to version 1.3.4:

OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/srt?expand=0&rev=22
2019-12-13 15:24:26 +00:00
Dominique Leuenberger
4f90cfb76e Accepting request 727274 from multimedia:libs
Update and sec patch

OBS-URL: https://build.opensuse.org/request/show/727274
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/srt?expand=0&rev=8
2019-09-04 07:03:19 +00:00
d0c5217cf7 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/srt?expand=0&rev=20 2019-08-30 15:04:17 +00:00
f1798a597f .changes tweaks
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/srt?expand=0&rev=19
2019-08-30 15:03:22 +00:00
fabeae70bb Accepting request 727247 from home:atopt:branches:multimedia:libs
- Backported commit 47e5890 and 64875fa to fix CVE-2019-15784 (boo#1148844)
  and avoid a potential array overflow.
  * Added CVE-2019-15784.patch

OBS-URL: https://build.opensuse.org/request/show/727247
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/srt?expand=0&rev=18
2019-08-30 15:02:22 +00:00
06cc18daff Accepting request 727067 from home:atopt:branches:multimedia:libs
- Update to version 1.3.4: 
  + Various bugfixes and feature enhancments.

OBS-URL: https://build.opensuse.org/request/show/727067
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/srt?expand=0&rev=17
2019-08-30 11:31:08 +00:00
Dominique Leuenberger
d1a12df8d9 Accepting request 724739 from multimedia:libs
OBS-URL: https://build.opensuse.org/request/show/724739
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/srt?expand=0&rev=7
2019-08-24 16:39:01 +00:00
b8e7fdc8d7 Accepting request 724633 from home:iznogood:branches:multimedia:libs
New upstream release

OBS-URL: https://build.opensuse.org/request/show/724633
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/srt?expand=0&rev=15
2019-08-20 09:28:35 +00:00
Dominique Leuenberger
a84211ccd5 Accepting request 648934 from multimedia:libs
OBS-URL: https://build.opensuse.org/request/show/648934
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/srt?expand=0&rev=6
2018-11-26 09:15:57 +00:00
Tomáš Chvátal
7f5dc0e44b Accepting request 648735 from home:alarrosa:branches:multimedia:libs
- Fix install prefix in cmake so the pkgconfig file has correct
  information on where to find srt's libraries and include files.

OBS-URL: https://build.opensuse.org/request/show/648735
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/srt?expand=0&rev=13
2018-11-14 11:55:09 +00:00
Dominique Leuenberger
2f2be75d13 Accepting request 645196 from multimedia:libs
OBS-URL: https://build.opensuse.org/request/show/645196
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/srt?expand=0&rev=5
2018-11-08 08:41:13 +00:00
Ismail Dönmez
31e38985bb Accepting request 645194 from home:dimstar:Factory
- Add pkgconfig(zlib) BuildRequires: until openssl 1.1.1, zlib was
  pulled in into our buildroot, avoiding srt having to care for it
  explicitly. Since this is changed now, we have to worry for our
  dependency on our own. The dep comes from:
  CMakeLists.txt:set (SSL_REQUIRED_MODULES "openssl libcrypto zlib")

without this, we end up with a -devel package without the relevant
  pkgconfig(foo) buildrequires (as pkg-config can't parse a .pc file
  without the Requires: satisfied)

This will solve the ffmpeg-4 failure curently seen in Staging:C (openssl 1.1.1 upgrade)

OBS-URL: https://build.opensuse.org/request/show/645194
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/srt?expand=0&rev=11
2018-10-29 09:25:24 +00:00
Dominique Leuenberger
c3f092cc83 Accepting request 628218 from multimedia:libs
OBS-URL: https://build.opensuse.org/request/show/628218
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/srt?expand=0&rev=4
2018-08-10 07:45:07 +00:00
Tomáš Chvátal
247277e4c7 Accepting request 628213 from home:jengelh:branches:multimedia:libs
- Trim marketing from description.

OBS-URL: https://build.opensuse.org/request/show/628213
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/srt?expand=0&rev=9
2018-08-08 17:01:15 +00:00
Dominique Leuenberger
af0df94f31 Accepting request 622441 from multimedia:libs
OBS-URL: https://build.opensuse.org/request/show/622441
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/srt?expand=0&rev=3
2018-07-17 07:39:09 +00:00
d29a3cdeee Accepting request 622440 from home:iznogood:branches:multimedia:libs
- Update to version 1.3.1:
  + Various bugfixes.

OBS-URL: https://build.opensuse.org/request/show/622440
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/srt?expand=0&rev=7
2018-07-13 08:30:41 +00:00
813e230c3f Accepting request 622352 from home:jengelh:branches:multimedia:libs
- Update summaries.

OBS-URL: https://build.opensuse.org/request/show/622352
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/srt?expand=0&rev=6
2018-07-13 07:28:58 +00:00
Dominique Leuenberger
174f0e29af Accepting request 619821 from multimedia:libs
OBS-URL: https://build.opensuse.org/request/show/619821
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/srt?expand=0&rev=2
2018-07-02 21:30:23 +00:00
9b23f7c356 Accepting request 619820 from home:iznogood:branches:multimedia:libs
- Add baselibs.conf: build 32bit support libs.

OBS-URL: https://build.opensuse.org/request/show/619820
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/srt?expand=0&rev=4
2018-06-29 18:15:57 +00:00
7eca39fb1e Update summary and description
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/srt?expand=0&rev=3
2018-05-31 09:20:11 +00:00
Dominique Leuenberger
d371905bb7 Accepting request 611058 from multimedia:libs
New package, usable as builddep for gst-plugins-bad and ffmpeg4.

OBS-URL: https://build.opensuse.org/request/show/611058
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/srt?expand=0&rev=1
2018-05-29 08:38:32 +00:00
Tomáš Chvátal
6896b1f752 Accepting request 611004 from home:iznogood:branches:multimedia:libs
New package, usable as builddep for gst-plugins-bad and ffmpeg4, resub tweaked.

OBS-URL: https://build.opensuse.org/request/show/611004
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/srt?expand=0&rev=1
2018-05-21 19:12:04 +00:00