summaryrefslogtreecommitdiff
path: root/net/liblive
AgeCommit message (Collapse)AuthorFilesLines
2009-06-14Remove @dirrm entries from PLISTsjoerg1-6/+1
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2008-10-30Libtoolize for Solaris. Otherwise it doesn't build.is2-1/+39
2008-07-26Update net/liblive to liblive-20080725tonio2-6/+7
2008.07.25: - Minor bug fix to "MPEG2TransportStreamFramer" (reset "fTSPCRCount" in "doStopGettingFrames()"). (Thanks to Qiujian Shu for reporting this bug.) - Modified the previous changes to "QuickTimeFileSink" and "AVIFileSink" so that the "createNew()" functions return NULL if the output file cannot be opened. 2008.07.24: - Changed "MultiFramedRTPSource" to handle the very first packet that we receive as if there were packet loss beforehand. This ensures that we correctly discard any initial packets that we receive that occur after the start of a (multi-packet) frame. - Fixed "QuickTimeFileSink" and "AVIFileSink" to close the output file (if it's not stdout or stderr) in the destructor, 2008.07.22: - Fixed "MPEG2TransportStreamMultiplexor" to use an appropriate stream for our SCR, even if the input contained its own Program Stream Map. - More minor changes to the code to make Erik Hovland's code-checking tools happy. 2008.07.06: - Corrected one of Erik Hovland's memory leak fixes made to the previous revision.
2008-07-17Updating to the 20080706 version.ahoka5-157/+160
Fixing installation prefix and buildlink3 (now vlc's autoconf can find it). Minor cleanup. Upstream changelog: 2008.07.06: - Corrected one of Erik Hovland's memory leak fixes made to the previous revision. 2008.07.05: - Fixed some memory leaks - and several other mostly cosmetic fixes. (Thanks to Erik Hovland for noticing these.) 2008.06.26: - Fixed a bug in "openRTSP" that was sometimes causing an incorrect "Range:" header to be sent in "PLAY" requests. 2008.06.25: - Fixed a bug in the headers sent for the RTSP "GET_PARAMETER" and "SET_PARAMETER" commands. (Thanks to "beilyzhang (at) hotmail" for this report.) 2008.06.05: - Renamed the "ourSourceAddressForMulticast()" function to the less confusing and more explanatory "ourIPAddress()". - The "RTSPClient" change that was made in 2008.04.09 to accommodate multicast streams apparently broke (some?) unicast streams. This has now been fixed. - Updated "RTSPClient" to handle weird servers that include a "Content-Length:" header in the response to the RTSP "SETUP" command. (If we see such a header, we skip over the data referred to in the header.) (Thanks to Kristian Soerensen for this suggestion.) - Changed the parsing of lines in "RTSPClient" so that it now accepts \r or \n alone at the end of each line. (\r\n is preferred, but the standard also allows \r or \n) (Thanks to David Schueler for this suggestion.) 2008.05.12: - Made a change to "RTCPInterface" to ensure that "turnOffBackgroundReadHandling()" is called on a socket as many times as "turnOnBackgroundReadHandling()". Apparently some versions of Windows get upset if this doesn't happen. (Thanks to Ken Seo for the suggested fix.) - Fixed a bug in "H263plusVideoStreamParser". (Thanks to Andrey Latin.) - Added more sanity checking to "JPEGVideoRTPSink".
2008-04-26Update liblive to 2008.04.09.obache3-13/+21
draw upon a patch to update for 2007.01.17 in PR 38038 While here, add DESTDIR support and fix permission of installed libraries. 2008.04.09: - Corrected a type-related bug in "RTPInterface::handleRead()". (Thanks to Brain Lai for noting this.) - Fixed a bug in "RTSPClient" that would prevent RTCP "RR" reports from being sent to the correct multicast address when we are receiving a multicast stream. (Thanks to Changjin Liu for noticing this.) 2008.04.03: - Fixed a bug that was introduced in the "2007.12.27" release. The "timeout" parameter to the call to "readSocket" in "SocketDescriptor::tcpReadHandler()" in "RTPInterface.cpp" needed to be initialized (to zero) first. (Thanks to Lodewijk Loos for alerting us to this problem.) - Added a new config file "config.bfin-linux-uclibc", and renamed "config.bfin_uclinux" as "config.bfin-uclinux". (Thanks to Mike Frysinger.) 2008.02.08: - Added a hack (suggested by "Romain") to "MPEG2TransportStreamFramer" to (perhaps) produce more accurate per-transport-packet duration estimates for wildly VBR streams. - Updated "MPEG2TransportStreamMultiplexor" to support the addition of MPEG-4 Audio or Video Elementary Streams. - Updated "RTSPOverHTTPServer.cpp" (a work in progress) so that it complies properly for some versions of Visual Studio on Windows. (Thanks to Eric Flickner for noting this.) 2008.01.19: - Corrected the "getNormalPlayTime()" function - introduced in the previous release - to allow for 'trick play' scale factors other than 1. 2008.01.18: - Added a new member function float MediaSubsession::getNormalPlayTime() which - given a stream's current presentation time - returns the "Normal Play Time". This function is useful for RTSP streams. - Added support for a "a=control:" URL specified in the SDP description at the session level. 2008.01.04: - Changed the "RTSPClient" timeout - introduced in the previous release - from 5s to 30s. - Added support for setting and returning the RTSP session start time (as well as the end time). (This eliminates the need for the "live-starttime.patch" file that VLC was using.) - Updated some of the system-specific configuration files, to eliminate the need for many of the patches that the VLC developers added to their code. 2007.12.27: - Added a 5s timeout to the "RTSPClient" code that checks for RTSP responses. This mirrors a change that was already being done to VLC's copy of the code. (This is still a short-term fix, until the "RTSPClient" code is rewritten to properly use asynchronous I/O, using the event loop.) - Added a timeout to the "readSocket()" call in "SocketDescriptor::tcpReadHandler()" in "RTPInterface.cpp", to handle reading RTP-over-TCP data. This allows for the possibility of non-cooperative RTSP clients. (Thanks to Peter Leese for this suggestion.) This is probably not a complete solution; more thought is needed... 2007.12.07: - Fixed "H2633plusVideoFileServerMediaSubsession" to properly use a dynamic RTP payload type, rather than the static type 34 (which is reserved for the now-obsolete old "video/H263" RTP payload format). 2007.12.06: - Updated "JPEGVideoRTPSource" to take optional 'default width' and 'default height' parameters. These parameters can be set by fields in the SDP description, and can be used to specifiy unusually large frame widths and/or heights. (Thanks to Andrey Filippov.) 2007.11.18: - Fixed a couple of memory leaks in "DarwinInjector". (Thanks to Eyal Beit-Halachmi for noting these.) - Removed old 'backwards compatibility' stuff from "FramedSource". (Noone should be relying upon this any more.) - Fixed a bounds-checking error in "parseRTSPRequestString()" caused by an int vs. unsigned problem. (Thanks to Luigi Auriemma for noting this.) - In "RTSPClient.cpp", fixed a couple of "unsigned" vs. "int" nits. (Thanks for Brain Lai for noting this.) 2007.11.01: - Several of the options to "openRTSP" have now been changed, with two new options added: -s <initial-seek-time> -z <scale> See the "openRTSP" documentation <http://www.live555.com/openRTSP/> for details. - Fixed a bug in the way that "MPEG4VideoStreamDiscreteFramer" parses 'config' information (for inclusion in the stream's SDP description). (Thanks to Nicola Bova for helping to identify this bug.) - Eliminated a potential memory (and socket) leak when allocating server RTP,RTCP socket pairs. (Thanks to David Pan for reporting this.) - Updated "ByteStreamFileSource" to treat a 0-byte file read the same as EOF. - Ensure that we have reasonable OS buffering for writes on non-blocking sockets. 2007.08.03a: - Removed a debugging printf() that had been left in by mistake. (Thanks to Massimo Zito for noticing this.) 2007.08.03: - Updated the "RTSPServer" implementation to work better on systems with more than one IP address. The server will now include - in its RTSP responses - the IP address on which the corresponding incoming request was received. 2007.07.25: - Added some sanity checks to various "MediaSink" subclasses, in case "fSource" is NULL. (Thanks to Andrey Kaminsky for noting one of these.) 2007.07.10: - Made sure that "MPEG2TransportStreamFramer"s estimate of the average duration of each Transport Packet gets updated correctly after each 'seek' operation. (Thanks to Massimo Zito for suggesting this.) - Fixed a bug in "MPEG2TransportStreamFromESSource" that was causing presentation timestamps to not be generated correctly. (Thanks to Massimo Zito for noticing this.) 2007.07.01: - Fixed a bug in "RTSPServer" and "RTSPClient" that would cause problems when streaming files whose names have spaces in them. - Fixed a bug in "OnDemandServerMediaSubsession::deleteStream". (Thanks to Igor Bukanov.) - Make the sockets for "RTPSource", "RTCPInstance" and "BasicUDPSource" non-blocking, even though they will be read from only asynchronously, when packets arrive. The reason for this is that, in some OSs, reads on a blocking socket can (allegedly) sometimes block, even if the socket was previously reported (e.g., by "select()") as having data available. (This can supposedly happen if the UDP checksum fails, for example.) (Thanks to Marc Neuberger for pointing this out.) - Fixed a bug in "MPEG2TransportFileServerMediaSubsession.cpp" that was causing 2x fast-forward to fail. (Some debugging code had been left in by mistake.) 2007.05.24: - Modified "setupDatagramSocket()" to better handle setting "ReceivingInterfaceAddr" when creating a socket to be used to send/receive multicast. - Made a couple of minor changes to overcome some compilation errors that some people were apparently seeing. 2007.05.23: - The RTSP server now includes the "source=" parameter in the response to a RTSP "SETUP" command. This works around a bug in QuickTime Player that would cause it to not send RTCP "RR" packets (when playing a unicast stream, and running on Mac OS X). (Thanks to Dave Singer et al at Apple for tracking down this problem.) - The RTSP server implementation no longer terminates the session if it returns 400 or 405 errors. 2007.04.24a: - Fixed a problem in the new "RTSPOverHTTPServer" code that was causing some people compilation problems. 2007.04.24: - Fixed a typo in "testOnDemandRTSPServer.cpp". (Thanks to Nils Grundback for noticing this.) - Modified the signature of "RTSPServer::specialClientAccessCheck()" (defined in the previous revision) to add a new "clientAddr" parameter (a "struct sockaddr_in"), to allow special access checking based on clients' IP address. - Make sure that the locale is set to "POSIX" when calling "toupper()" or "tolower()" on human-supplied strings. (Thanks to Ismail Doenmez for noting this.) 2007.04.20: - Modified "MPEG2TransportStreamMultiplexor" to set the "discontinuity_indicator" flag for the first "adaptation_field" in the output Transport Stream. - Changed "AMRAudioRTPSource" to more accurately report whether/when an interleaved frame's timestamp has been synchronized using RTCP. (Thanks to David Bertrand for this patch.) - Made to a small fix to the previous revision's support for multicast streaming of raw UDP (nonstandard) - Added a virtual function to "OnDemandServerMediaSubsession" for closing the stream source. Subclasses can redefine this, if they wish, to do something smarter. (Thanks to Igor Bukanov for this patch.) - Added support to "RTSPServer" for optionally performing special per-client access control, beyond the standard Digest Authentication method. (Thanks to Igor Bukanov for this patch.) - Made a minor optimization to "Groupsock.cpp". (Thanks to Maxim Petrov for this suggestion.) - Added an initial implementation of RTSP-over-HTTP at the server level (it was already supported at the client level). (Note: This code has not yet been completed, and doesn't yet work, so don't try to use it.) 2007.02.20: - Updated "RTSPServer" to support multicast streaming of raw UDP streams (nonstandard). (Thanks to Aesmund Grammeltvedt for this modification.) - Made "RTSPClient" a little more robust in case the TCP connection fails. - Made "RTPSink::rtpmapLine()" virtual (as requested by Andrew Voznytsa). - Removed an archaic (no longer used) declaration in "groupsock/include/Groupsock.hh". - Added an optional "allowKasennaProtocol" parameter to "RTSPClient::describeWithPassword()" (similar to "RTSPClient::describeURL()"). (Thanks to Igor Bukanov for this suggestion.)s 2007.01.17: - Fixed a bug that would cause the "MPEG2TransportStreamIndexer" application to fail when run on a big-endian architecture. - Added a new class "H264VideoFileSink", that prepends each incoming H.264 NAL unit with the prefix 0x000001, before writing it to the file. Also updated the "openRTSP" code to use this, when receiving H.264/RTP streams. (Thanks to Chris Kuiper for contributing this.) - Added a temporary #ifdef to "GroupsockHelper.cpp" to work around a compliation problem when building for Cygwin. 2007.01.11: - Improved the "MPEG2IndexFromTransportStream" class to recogize Transport Stream PAT and PMT (tables). This in turn makes the "MPEG2TransportStreamIndexer" utility more robust. - Fixed a minor bug in "MPEG2TransportStreamFromESSource". 2007.01.09: - Added RTSP server support for 'trick play' operations on MPEG-2 Transport Stream files. This requires the presence of a ".tsx" index file for each ".ts" file. (This functionality will shortly be documented on the LIVE555 web site, and announced on the "live-devel" mailing list.) - Improved the performance of asynchronous file reading in "ByteStreamFileSource". (Thanks to Aesmund Grammeltvedt for this suggestion.) - Added "-D_FILE_OFFSET_BITS=64" to the "COMPILE_OPTS" line for each of the Linux config files, in order to alleviate possible problems with I/O on large files. 2006.12.31: - We now implement "ByteStreamFileSource" on Windows using synchronous file reads, by default. I had thought that Windows XP had fixed the problem - present in earlier versions of Windows - whereby open files are not treated as select()able sockets. But apparently the problem is still there. - Added code that will - probably in the next release, very soon - support server 'trick mode' operations on MPEG-2 Transport Stream files. At present, we have two new applications - in the "testProgs" directory - that help support this: "MPEG2TransportStreamIndexer" (to create a special index file for a Transport Stream file), and "testMPEG2TransportStreamTrickPlay" (to generate a new Transport Stream file that simulates a 'trick play' operation performed on the original Transport Stream file). See my forthcoming post to the "live-devel" mailing list for more details. - Fixed a bug in the Base64 encoding routine. (Thanks to Sebastian Gracias for reporting this.) 2006.12.08: - Made sure that each TCP socket used by a "RTSPserver" is non-blocking, so that a slow or hanging client cannot hang a server. (Thanks to "jers (at) inwind.it" for this suggestion.)
2006-11-19Updated netlive to 2006.11.16a.rillig7-137/+98
Neither ChangeLog, nor NEWS, nor any other documentation is available. Patch provided in PR 35079 by Anthony Mallet.
2006-07-31USE_LANGUAGES+= crillig1-2/+2
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam1-2/+2
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam1-1/+2
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-06-02Uses C++.joerg1-1/+2
2006-04-12Aligned the last line of the buildlink3.mk files with the first line, sorillig1-2/+2
that they look nicer.
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-3/+3
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2006-03-22Add DragonFly support. Fix compilation with GCC 3.4: Publically declaringjoerg3-2/+43
a private type doesn't work.
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2005-06-17Create directories before installing files into them.jlam1-1/+3
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digests.agc1-1/+2
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-2/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-17/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-04-12Convert to buildlink3. Also fix build with gcc3.snj6-34/+51
2004-01-20Move WRKSRC definition away from the first paragraph in a Makefile.agc1-2/+2
2003-07-21COMMENT should start with a capital letter.martti1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2003-04-04Initial import of liblive-2003.04.04, a set of C++ libraries for multimediarh7-0/+253
streaming.