Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 12 Feb 2020 17:54:15 +0000 (UTC)
From:      "Tobias C. Berner" <tcberner@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r525924 - head/net/liveMedia
Message-ID:  <202002121754.01CHsFPc027258@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tcberner
Date: Wed Feb 12 17:54:15 2020
New Revision: 525924
URL: https://svnweb.freebsd.org/changeset/ports/525924

Log:
  net/liveMedia: update to 2020.02.11
  
  2020.02.11:
  - Added support for receiving SRTP (encrypted) RTSP streams.
    Currently only a few RTSP servers support SRTP.  Our current RTSP client code is known
    to support two of them: The Axis and Bosch network cameras.  These cameras support SRTP
    only when the RTSP connection to the camera is over a TLS connection (something that our
    RTSP client code has supported since early December 2019).
    (If you manufacture a network camera (or other RTSP server) that supports streaming SRTP,
    but which our RTSP client code does not yet handle, then please let us know, and we might
    be able to update our code to support it.)
    Note that this support for SRTP is currently only for RTSP *clients*.
    Our RTSP server implementation does not currently support streaming (outgoing) SRTP
    However, the "LIVE555 Proxy Server" can now be used to proxy back-end SRTP streams.
    (The front-end streams will be regular RTP.)
    As usual, if you don't have the "openssl" library, you can compile the code by specifying
       -DNO_OPENSSL=1
    on the command line.  (If you do this, you won't be able to connect to RTSP servers over TLS,
    nor access SRTP streams.)
    (Many thanks to Thales Group for sponsoring this work.)
  - Updated the "LIVE555 Proxy Server" so that it can recognize/handle back-end "rtsps://" URLs.
  - Removed a cast that had prevented a file from compiling on MSVC.
    (Thanks to Jonathan Brady for reporting this.)
  - Added a new configuration file "config.macosx-no-openssl" for Mac OS X.

Modified:
  head/net/liveMedia/Makefile
  head/net/liveMedia/distinfo
  head/net/liveMedia/pkg-plist

Modified: head/net/liveMedia/Makefile
==============================================================================
--- head/net/liveMedia/Makefile	Wed Feb 12 17:47:43 2020	(r525923)
+++ head/net/liveMedia/Makefile	Wed Feb 12 17:54:15 2020	(r525924)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	liveMedia
-PORTVERSION=	2020.01.28
+PORTVERSION=	2020.02.11
 PORTEPOCH=	2
 CATEGORIES=	net devel
 MASTER_SITES=	http://www.live555.com/liveMedia/public/ \

Modified: head/net/liveMedia/distinfo
==============================================================================
--- head/net/liveMedia/distinfo	Wed Feb 12 17:47:43 2020	(r525923)
+++ head/net/liveMedia/distinfo	Wed Feb 12 17:54:15 2020	(r525924)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1580231537
-SHA256 (live.2020.01.28.tar.gz) = fd5c415f42f3c255ac5b185359cef64b214e55c0c6a71c2cc019cedd8e903c20
-SIZE (live.2020.01.28.tar.gz) = 667912
+TIMESTAMP = 1581525957
+SHA256 (live.2020.02.11.tar.gz) = df105ad85cdcf88c56ea669733273bb1c41c5148469ee1e43b6396e24f66bfde
+SIZE (live.2020.02.11.tar.gz) = 680814

Modified: head/net/liveMedia/pkg-plist
==============================================================================
--- head/net/liveMedia/pkg-plist	Wed Feb 12 17:47:43 2020	(r525923)
+++ head/net/liveMedia/pkg-plist	Wed Feb 12 17:54:15 2020	(r525924)
@@ -112,6 +112,8 @@ include/liveMedia/H265VideoRTPSource.hh
 include/liveMedia/H265VideoStreamDiscreteFramer.hh
 include/liveMedia/H265VideoStreamFramer.hh
 include/liveMedia/HLSSegmenter.hh
+include/liveMedia/HMAC_SHA1.hh
+include/liveMedia/HMAC_hash.hh
 include/liveMedia/InputFile.hh
 include/liveMedia/JPEG2000VideoRTPSink.hh
 include/liveMedia/JPEG2000VideoRTPSource.hh
@@ -119,6 +121,7 @@ include/liveMedia/JPEGVideoRTPSink.hh
 include/liveMedia/JPEGVideoRTPSource.hh
 include/liveMedia/JPEGVideoSource.hh
 include/liveMedia/Locale.hh
+include/liveMedia/MIKEY.hh
 include/liveMedia/MP3ADU.hh
 include/liveMedia/MP3ADURTPSink.hh
 include/liveMedia/MP3ADURTPSource.hh
@@ -191,6 +194,7 @@ include/liveMedia/RTSPServerSupportingHTTPStreaming.hh
 include/liveMedia/RawVideoRTPSink.hh
 include/liveMedia/RawVideoRTPSource.hh
 include/liveMedia/SIPClient.hh
+include/liveMedia/SRTPCryptographicContext.hh
 include/liveMedia/ServerMediaSession.hh
 include/liveMedia/SimpleRTPSink.hh
 include/liveMedia/SimpleRTPSource.hh



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202002121754.01CHsFPc027258>