|
@@ -1,5 +1,34 @@
-Next version, in progress:
+Latest version, in progress:
+- Changed the "RTSPClient" timeout - introduced in the previous release - from
+ 5s to 30s.
+- 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:
|