File live-CHANGELOG of Package live
1
2009.07.09:
2
- Modified the RTSP server implementation to - for streams where there is a known duration - always include a range end time
3
in the RTSP "PLAY" response, even if the client did not specify one in the "PLAY" request. This allows VLC's client
4
'trick play' to (mostly) work.
5
- Updated "MediaSession::initiate()" to eliminate a possible memory leak if we get an error in socket creation.
6
(Thanks to Denis Charmet.)
7
- Made a minor change to "MultiFramedRTPSink" to make monitoring/debugging easier. (Thanks to Guy Bonneau.)
8
- Begun adding support for DV video. However, this implementation is still incomplete. DO NOT USE IT!
9
10
2009.06.02:
11
- Updated the MPEG Transport Stream multiplexor implementation to allow for H.264 video. (Thanks to Massimo Zito.)
12
- Updated "MultiFramedRTPSink" to allow for subclasses for RTP payload formats (such as DV, coming soon) that impose
13
a granularity on RTP fragment sizes.
14
15
2009.04.20:
16
- Fixed "BasicUsageEnvironment::getErrno()" to always (under Windows) return
17
"WSAGetLastError()" (and to just ignore the "errno" variable>.
18
Also fixed a few places in the code where we were still using "errno"
19
instead of calling "getErrno()"
20
21
2009.04.07:
22
- Changed many "char*" variables to "char const*" to eliminate possible compiler warnings.
23
(Thanks to Sebastien Escudier for pointing out this issue.)
24
25
2009.04.06:
26
- Modified our Windows-only version of "gettimeofday()" so that it now returns times based on the proper epoch.
27
(Thanks to Patrick White for this suggestion.)
28
- Created a new config file for 64-bit Solaris, and renamed the old "config.solaris" file to make it
29
clear that it's for 32-bit Solaris only. (Thanks to Michael Skaastrup.)
30
- Modified "config.mingw" to add "-DLOCALE_NOT_USED" to the "COMPILE_OPTS =" line. (The VLC folks seem to want
31
this.)
32
- Made a minor change to some win32-specific code in "RTSPClient.cpp" that the VLC folks seem to like.
33
(However, "RTSPClient" is about to undergo a major overhaul (for asynchronous I/O) anyway...)
34
- Made a small change to "mediaServer/DynamicRTSPServer.cpp" to eliminate compiler warnings on some platforms.
35
36
2009.03.22:
37
- Updated "MediaSession::initiate()" to make the selection of ephemeral client
38
port numbers (for RTP and RTCP) more robust, and to eliminate the possibility of
39
the same port numbers accidentally getting chosen more than once by different
40
clients running on the same host. (Thanks to Guido Marelli and others for helping
41
track down this issue.)
42
43
2009.02.23:
44
- Changed the way in which 'trick mode' transport streams are generated, so that each
45
video I-frame is included in the output Transport Stream no more than once.
46
This means that now - for low scale values - the output frame rate, and bit rate,
47
will be les than that of the original file. (Beforehand, we maintained the same
48
frame rate, which meant that - because each output frame is an I-frame - the output
49
stream's bit rate was always significantly larger than the original. This caused
50
problems for some clients.)
51
- Changed the 'client liveness' checking code in the "RTSPServer" implementation so that it deletes the
52
"RTSPClientSession" object even for multicast streams.
53
- Made a minor fix to an error report in "RTSPClient". (Thanks to Igor Milavec.)
54
55
2009.02.13:
56
- Changed calls to the "Locale()" constructor to use an explicit variable name (rather than an anonymous
57
declaration), because some compilers weren't handling the anonymous declaration properly.
58
(Thanks to Steven Kramer for noticing this.)
59
- Improved the "RTSPServer" definition and implementation to make it easier to subclass the
60
"RTSPServer::RTSPClientSession" class (e.g., to add a custom implementation of the "SET_PARAMETER" command).
61
Also added an iterator class for iterating over the "RTSPClientSession" objects within a "RTSPServer".
62
- Make "MediaSubsession::parseSDPAttribute_framerate()" a little more robust.
63
(Thanks to Shawn Van Every for the suggestion.)
64
- Improved "BasicUsageEnvironment0::reportBackgroundError()" (thanks to Matt Schuckmann)
65
- Fixed a bug in the "AVIFileSink" code (thanks to Pramod Bhadwat for reporting this).
66
67
2009.01.26:
68
- Updated the header file for "rtcp_from_spec.c" to make the call to "exit()" a noop.
69
(Thanks to Chris Silvers for raising this issue.)
70
- Changed the definition of "RTSPClientSession" (in "RTSPServer") to make it protected (and also to make its
71
command handler functions protected and virtual), to allow developers to subclass it (to change the
72
implementation of some commands).
73
(Thanks to Yedidia Amit for suggesting this.)
74
- Fixed a minor bug in "scheduleNextQOSMeasurement()" (in the "openRTSP" implementation).
75
(Thanks to Gabriele De Luca for noticing this.)
76
77
2008.12.20:
78
- Removed - from "MultiFramedRTPSource.cpp" - the historical sanity check for bizarrely delayed packets.
79
Accepting such bizarro packets causes problems in the code; it's best not to accept them at all.
80
- Added to "FramedFilter" a new public function "detachInputSource()" that sets the filter's input source
81
to NULL. This is useful if you want to close the filter independently of closing its input source.
82
(Thanks to Alex Cichowski for this suggestion.)
83
- Modified the header file for "MultiFramedRTPSink" to make its implementation of the "stopPlaying()" virtual
84
function public. (Thanks to Guy Bonneau for this suggestion.)
85
- Changed "MediaSession::initiate()" to make the port number selection mechanism (for unicast streams) more robust.
86
(Thanks to Pierre Ynard for this suggestion.0
87
88
2008.11.13:
89
- Fixed an obscure bug in "BasicTaskScheduler::SingleStep()" in which the call to "handleAlarm()" would
90
(on rare occasions) modify the set of read handlers in such a way as to be inconsistent with the result of
91
the earlier call to "select()". We fixed the bug by moving the call to "handleAlarm()" after the socket
92
handler call. (Thanks to Sigismondo Boschi for tracking down this bug.)
93
- Fixed a bug in "parseRTSPRequestString()" that could cause a crash when parsing certain weird, non-compliant
94
requests. (Thanks to Sebastien Escudier for reporting this.)
95
96
2008.11.04:
97
- Fixed a bug in "RTPInterface" that was sometimes causing sockets not to be reclaimed properly by a
98
RTSP server when streaming RTP/RTCP-over-TCP. (Thanks to Ralf Globisch for tracking this down.)
99
- Changed the RTSP 'start time' parameter from "float" to "double", to allow for
100
accurate 'start times' that are very large - e.g., Unix 'epoch' times.
101
(Thanks to Morgan Toervolt for the suggestion and patch.)
102
- Made some simplifications to the 'reception stats' code in "RTPSource".
103
(Thanks to Guy Bonneau for this suggestion.)
104
- Fixed a minor bug in "QuickTimeFileSink". (Thanks to Pramod Bhagwat.)
105
106
2008.10.07:
107
- Added an optional "timeout" parameter (in seconds) to the 'connecting' RTSP
108
client commands. (Thanks to Sebastien Escudier for this patch.)
109
- Increased the size of a "DummySink"s buffer in "MPEG1or2FileServerDemux", to make
110
it large enough for any PES packet.
111
- Fixed a minor memory leak in the "createNew()" functions for
112
"AVIFileSink" and "QuickTimeFileSink" if the output fid did not get created.
113
(Thanks to Mehmet Ozgul for noting this.)
114
- Fixed a couple of spelling erros, removed some unnecessary whitespace,
115
and updated the address of the FSF in the LGPL preamble (thanks to Erik Hovland).
116
117
2008.09.02:
118
- Fixed a minor bug in "RTSPServer". (Thanks to Renato Mauro.)
119
- Minor improvements fo "FileSink" and "MP3FileSource". (Thanks to Pramod Bhagwat.)
120
- Changed the default "reclamationTestSeconds" parameter (in "RTSPServer" and "DynamicRTSPServer") from 45 seconds
121
to 65 seconds, because 60 seconds is the default timeout value expected by (broken) clients that send
122
RTSP commands rather than RTCP "RR" reports to indicate liveness.
123
124
2008.07.25:
125
- Minor bug fix to "MPEG2TransportStreamFramer" (reset "fTSPCRCount" in "doStopGettingFrames()").
126
(Thanks to Qiujian Shu for reporting this bug.)
127
- Modified the previous changes to "QuickTimeFileSink" and "AVIFileSink" so that the
128
"createNew()" functions return NULL if the output file cannot be opened.
129
130
2008.07.24:
131
- Changed "MultiFramedRTPSource" to handle the very first packet that we receive as
132
if there were packet loss beforehand. This ensures that we correctly discard any
133
initial packets that we receive that occur after the start of a (multi-packet) frame.
134
- Fixed "QuickTimeFileSink" and "AVIFileSink" to close the output file (if it's not stdout or stderr) in the destructor.
135
136
2008.07.22:
137
- Fixed "MPEG2TransportStreamMultiplexor" to use an appropriate stream for our SCR, even if the input contained
138
its own Program Stream Map.
139
- More minor changes to the code to make Erik Hovland's code-checking tools happy.
140
141
2008.07.06:
142
- Corrected one of Erik Hovland's memory leak fixes made to the previous revision.
143
144
2008.07.05:
145
- Fixed some memory leaks - and several other mostly cosmetic fixes.
146
(Thanks to Erik Hovland for noticing these.)
147
148
2008.06.26:
149
- Fixed a bug in "openRTSP" that was sometimes causing an incorrect "Range:" header
150
to be sent in "PLAY" requests.
151
152
2008.06.25:
153
- Fixed a bug in the headers sent for the RTSP "GET_PARAMETER" and "SET_PARAMETER" commands.
154
(Thanks to "beilyzhang (at) hotmail" for this report.)
155
156
2008.06.05:
157
- Renamed the "ourSourceAddressForMulticast()" function to the less confusing and more explanatory
158
"ourIPAddress()".
159
- The "RTSPClient" change that was made in 2008.04.09 to accommodate multicast
160
streams apparently broke (some?) unicast streams. This has now been fixed.
161
- Updated "RTSPClient" to handle weird servers that include a "Content-Length:" header
162
in the response to the RTSP "SETUP" command. (If we see such a header, we skip over
163
the data referred to in the header.) (Thanks to Kristian Soerensen for this suggestion.)
164
- Changed the parsing of lines in "RTSPClient" so that it now accepts \r or \n alone
165
at the end of each line. (\r\n is preferred, but the standard also allows \r or \n)
166
(Thanks to David Schueler for this suggestion.)
167
168
2008.05.12:
169
- Made a change to "RTCPInterface" to ensure that "turnOffBackgroundReadHandling()" is called on a socket
170
as many times as "turnOnBackgroundReadHandling()". Apparently some versions of Windows get upset if this
171
doesn't happen. (Thanks to Ken Seo for the suggested fix.)
172
- Fixed a bug in "H263plusVideoStreamParser". (Thanks to Andrey Latin.)
173
- Added more sanity checking to "JPEGVideoRTPSink".
174
175
2008.04.09:
176
- Corrected a type-related bug in "RTPInterface::handleRead()". (Thanks to Brain Lai for noting this.)
177
- Fixed a bug in "RTSPClient" that would prevent RTCP "RR" reports from being sent to
178
the correct multicast address when we are receiving a multicast stream. (Thanks to Changjin Liu for noticing this.)
179
180
2008.04.03:
181
- Fixed a bug that was introduced in the "2007.12.27" release. The "timeout" parameter to the call to
182
"readSocket" in "SocketDescriptor::tcpReadHandler()" in "RTPInterface.cpp" needed to be initialized
183
(to zero) first. (Thanks to Lodewijk Loos for alerting us to this problem.)
184
- Added a new config file "config.bfin-linux-uclibc", and renamed "config.bfin_uclinux" as "config.bfin-uclinux".
185
(Thanks to Mike Frysinger.)
186
187
2008.02.08:
188
- Added a hack (suggested by "Romain") to "MPEG2TransportStreamFramer" to (perhaps)
189
produce more accurate per-transport-packet duration estimates for wildly VBR streams.
190
- Updated "MPEG2TransportStreamMultiplexor" to support the addition of MPEG-4 Audio or Video Elementary Streams.
191
- Updated "RTSPOverHTTPServer.cpp" (a work in progress) so that it complies properly for some versions of
192
Visual Studio on Windows. (Thanks to Eric Flickner for noting this.)
193
194
2008.01.19:
195
- Corrected the "getNormalPlayTime()" function - introduced in the previous release - to allow for 'trick play'
196
scale factors other than 1.
197
198
2008.01.18:
199
- Added a new member function
200
float MediaSubsession::getNormalPlayTime()
201
which - given a stream's current presentation time - returns the "Normal Play Time".
202
This function is useful for RTSP streams.
203
- Added support for a "a=control:" URL specified in the SDP description at the session level.
204
205
2008.01.04:
206
- Changed the "RTSPClient" timeout - introduced in the previous release - from
207
5s to 30s.
208
- Added support for setting and returning the RTSP session start time (as well as the end time).
209
(This eliminates the need for the "live-starttime.patch" file that VLC was using.)
210
- Updated some of the system-specific configuration files, to eliminate the need for many of the patches that
211
the VLC developers added to their code.
212
213
2007.12.27:
214
- Added a 5s timeout to the "RTSPClient" code that checks for RTSP responses.
215
This mirrors a change that was already being done to VLC's copy of the code.
216
(This is still a short-term fix, until the "RTSPClient" code is rewritten to
217
properly use asynchronous I/O, using the event loop.)
218
- Added a timeout to the "readSocket()" call in "SocketDescriptor::tcpReadHandler()" in "RTPInterface.cpp",
219
to handle reading RTP-over-TCP data. This allows for the possibility of non-cooperative RTSP clients.
220
(Thanks to Peter Leese for this suggestion.) This is probably not a complete solution;
221
more thought is needed...
222
223
2007.12.07:
224
- Fixed "H2633plusVideoFileServerMediaSubsession" to properly use a dynamic RTP payload type, rather than the
225
static type 34 (which is reserved for the now-obsolete old "video/H263" RTP payload format).
226
227
2007.12.06:
228
- Updated "JPEGVideoRTPSource" to take optional 'default width' and 'default height' parameters.
229
These parameters can be set by fields in the SDP description, and can be used to specifiy unusually
230
large frame widths and/or heights. (Thanks to Andrey Filippov.)
231
232
2007.11.18:
233
- Fixed a couple of memory leaks in "DarwinInjector". (Thanks to Eyal Beit-Halachmi for noting these.)
234
- Removed old 'backwards compatibility' stuff from "FramedSource". (Noone should be relying upon this any more.)
235
- Fixed a bounds-checking error in "parseRTSPRequestString()" caused by an int vs. unsigned problem.
236
(Thanks to Luigi Auriemma for noting this.)
237
- In "RTSPClient.cpp", fixed a couple of "unsigned" vs. "int" nits. (Thanks for Brain Lai for noting this.)
238
239
2007.11.01:
240
- Several of the options to "openRTSP" have now been changed, with two new options added:
241
-s <initial-seek-time>
242
-z <scale>
243
See the "openRTSP" documentation <http://www.live555.com/openRTSP/> for details.
244
- Fixed a bug in the way that "MPEG4VideoStreamDiscreteFramer" parses 'config' information (for inclusion in
245
the stream's SDP description). (Thanks to Nicola Bova for helping to identify this bug.)
246
- Eliminated a potential memory (and socket) leak when allocating server RTP,RTCP socket pairs.
247
(Thanks to David Pan for reporting this.)
248
- Updated "ByteStreamFileSource" to treat a 0-byte file read the same as EOF.
249
- Ensure that we have reasonable OS buffering for writes on non-blocking sockets.
250
251
2007.08.03a:
252
- Removed a debugging printf() that had been left in by mistake. (Thanks to Massimo Zito for noticing this.)
253
254
2007.08.03:
255
- Updated the "RTSPServer" implementation to work better on systems with more than one IP address.
256
The server will now include - in its RTSP responses - the IP address on which the corresponding incoming request
257
was received.
258
259
2007.07.25:
260
- Added some sanity checks to various "MediaSink" subclasses, in case "fSource" is NULL.
261
(Thanks to Andrey Kaminsky for noting one of these.)
262
263
2007.07.10:
264
- Made sure that "MPEG2TransportStreamFramer"s estimate of the average duration of each Transport Packet
265
gets updated correctly after each 'seek' operation. (Thanks to Massimo Zito for suggesting this.)
266
- Fixed a bug in "MPEG2TransportStreamFromESSource" that was causing presentation
267
timestamps to not be generated correctly. (Thanks to Massimo Zito for noticing this.)
268
269
2007.07.01:
270
- Fixed a bug in "RTSPServer" and "RTSPClient" that would cause problems when streaming
271
files whose names have spaces in them.
272
- Fixed a bug in "OnDemandServerMediaSubsession::deleteStream". (Thanks to Igor Bukanov.)
273
- Make the sockets for "RTPSource", "RTCPInstance" and "BasicUDPSource" non-blocking, even though they will be read
274
from only asynchronously, when packets arrive. The reason for this is that, in some OSs, reads on a blocking
275
socket can (allegedly) sometimes block, even if the socket was previously reported (e.g., by "select()") as
276
having data available. (This can supposedly happen if the UDP checksum fails, for example.)
277
(Thanks to Marc Neuberger for pointing this out.)
278
- Fixed a bug in "MPEG2TransportFileServerMediaSubsession.cpp" that was causing 2x
279
fast-forward to fail. (Some debugging code had been left in by mistake.)
280
281
2007.05.24:
282
- Modified "setupDatagramSocket()" to better handle setting "ReceivingInterfaceAddr" when creating a socket
283
to be used to send/receive multicast.
284
- Made a couple of minor changes to overcome some compilation errors that some people were apparently seeing.
285
286
2007.05.23:
287
- The RTSP server now includes the "source=" parameter in the response to a RTSP "SETUP" command.
288
This works around a bug in QuickTime Player that would cause it to not send RTCP "RR" packets
289
(when playing a unicast stream, and running on Mac OS X). (Thanks to Dave Singer et al at Apple for tracking
290
down this problem.)
291
- The RTSP server implementation no longer terminates the session if it returns 400 or 405 errors.
292
293
2007.04.24a:
294
- Fixed a problem in the new "RTSPOverHTTPServer" code that was causing some people compilation problems.
295
296
2007.04.24:
297
- Fixed a typo in "testOnDemandRTSPServer.cpp". (Thanks to Nils Grundback for noticing this.)
298
- Modified the signature of "RTSPServer::specialClientAccessCheck()" (defined in the previous revision) to add
299
a new "clientAddr" parameter (a "struct sockaddr_in"), to allow special access checking based on clients' IP
300
address.
301
- Make sure that the locale is set to "POSIX" when calling "toupper()" or "tolower()" on human-supplied strings.
302
(Thanks to Ismail Doenmez for noting this.)
303
304
2007.04.20:
305
- Modified "MPEG2TransportStreamMultiplexor" to set the "discontinuity_indicator" flag for the first
306
"adaptation_field" in the output Transport Stream.
307
- Changed "AMRAudioRTPSource" to more accurately report whether/when an interleaved frame's timestamp has
308
been synchronized using RTCP.
309
(Thanks to David Bertrand for this patch.)
310
- Made to a small fix to the previous revision's support for multicast streaming of raw UDP (nonstandard)
311
- Added a virtual function to "OnDemandServerMediaSubsession" for closing the stream source.
312
Subclasses can redefine this, if they wish, to do something smarter. (Thanks to Igor Bukanov for this patch.)
313
- Added support to "RTSPServer" for optionally performing special per-client access control, beyond the
314
standard Digest Authentication method. (Thanks to Igor Bukanov for this patch.)
315
- Made a minor optimization to "Groupsock.cpp". (Thanks to Maxim Petrov for this suggestion.)
316
- Added an initial implementation of RTSP-over-HTTP at the server level (it was already supported at the client level).
317
(Note: This code has not yet been completed, and doesn't yet work, so don't try to use it.)
318
319
2007.02.20:
320
- Updated "RTSPServer" to support multicast streaming of raw UDP streams (nonstandard).
321
(Thanks to Aesmund Grammeltvedt for this modification.)
322
- Made "RTSPClient" a little more robust in case the TCP connection fails.
323
- Made "RTPSink::rtpmapLine()" virtual (as requested by Andrew Voznytsa).
324
- Removed an archaic (no longer used) declaration in "groupsock/include/Groupsock.hh".
325
- Added an optional "allowKasennaProtocol" parameter to "RTSPClient::describeWithPassword()"
326
(similar to "RTSPClient::describeURL()"). (Thanks to Igor Bukanov for this suggestion.)s
327
328
2007.01.17:
329
- Fixed a bug that would cause the "MPEG2TransportStreamIndexer" application to fail when run on a big-endian
330
architecture.
331
- Added a new class "H264VideoFileSink", that prepends each incoming H.264 NAL unit with the prefix 0x000001,
332
before writing it to the file. Also updated the "openRTSP" code to use this, when receiving H.264/RTP streams.
333
(Thanks to Chris Kuiper for contributing this.)
334
- Added a temporary #ifdef to "GroupsockHelper.cpp" to work around a compliation problem when building
335
for Cygwin.
336
337
2007.01.11:
338
- Improved the "MPEG2IndexFromTransportStream" class to recogize Transport Stream
339
PAT and PMT (tables). This in turn makes the "MPEG2TransportStreamIndexer"
340
utility more robust.
341
- Fixed a minor bug in "MPEG2TransportStreamFromESSource".
342
343
2007.01.09:
344
- Added RTSP server support for 'trick play' operations on MPEG-2 Transport Stream
345
files. This requires the presence of a ".tsx" index file for each ".ts" file.
346
(This functionality will shortly be documented on the LIVE555 web site,
347
and announced on the "live-devel" mailing list.)
348
- Improved the performance of asynchronous file reading in "ByteStreamFileSource".
349
(Thanks to Aesmund Grammeltvedt for this suggestion.)
350
- Added "-D_FILE_OFFSET_BITS=64" to the "COMPILE_OPTS" line for each of the Linux config files, in order to
351
alleviate possible problems with I/O on large files.
352
353
2006.12.31:
354
- We now implement "ByteStreamFileSource" on Windows using synchronous file reads,
355
by default. I had thought that Windows XP had fixed the problem - present in
356
earlier versions of Windows - whereby open files are not treated as select()able
357
sockets. But apparently the problem is still there.
358
- Added code that will - probably in the next release, very soon - support server
359
'trick mode' operations on MPEG-2 Transport Stream files. At present, we have two
360
new applications - in the "testProgs" directory - that help support this:
361
"MPEG2TransportStreamIndexer" (to create a special index file for a Transport Stream
362
file), and "testMPEG2TransportStreamTrickPlay" (to generate a new Transport Stream
363
file that simulates a 'trick play' operation performed on the original Transport
364
Stream file). See my forthcoming post to the "live-devel" mailing list for more
365
details.
366
- Fixed a bug in the Base64 encoding routine. (Thanks to Sebastian Gracias for reporting this.)
367
368
2006.12.08:
369
- Made sure that each TCP socket used by a "RTSPserver" is non-blocking, so that a slow or hanging client
370
cannot hang a server. (Thanks to "jers (at) inwind.it" for this suggestion.)
371
372
2006.11.16a:
373
- Oops - fixed a problem with the packaging of the new "mediaServer" code.
374
375
2006.11.16:
376
- Included the code for the new "LIVE555 Media Server" application
377
(in the "mediaServer" subdirectory). This is a complete RTSP/RTP server, that
378
will serve any appropriately-formatted file that resides in the current directory.
379
(More documentation will follow.)
380
- Updated "QuickTimeFileSink" to support H.264 video in ".mov" or ".mp4" output files.
381
(Thanks to David Arnold for this.)
382
- Fixed a potential reference-count related bug in "OnDemandServerMediaSubsession". (Thanks to Jers.)
383
- Changed the "RTSPClient" constructor from "private:" to "protected:".
384
385
2006.10.27:
386
- "RTSPClient" now recognizes the "Content-Base:" header in RTSP "DESCRIBE" responses.
387
(Thanks to Derk-Jan Hartman for this suggestion.)
388
- Updated "MultiFramedRTPSource" to avoid excessive recursion (and thus potential
389
stack overflow) in some cases when receiving streams that have packet loss.
390
(Thanks to Erwin Beckers for raising this as an issue.)
391
- Updated "RTPSink" and "MultiFramedRTPSink" to ensure that a proper RTP timestamp
392
is set in the RTSP "RTP-Info" header that follows a "PAUSE", and that this timestamp
393
gets used in the next outgoing RTP packet. (Thanks to David Bertrand for this suggestion.)
394
- Changed the special implementation of "gettimeofday()" for Windows to return
395
more accurate results. (Thanks to David Arnold for this change.)
396
397
2006.10.18a:
398
- A minor update to the "MultiFramedRTPSink" change made in the previous release.
399
400
2006.10.18:
401
- Added support for adding optional RTP padding bytes to "MultiFramedRTPSink".
402
(Thanks to Victor Kozhuhov for this suggestion.)
403
404
2006.10.12a:
405
- Backed out the change that we made in the 2006.09.18 release: We now don't attempt
406
to setsockopt() SO_REUSEPORT and IP_MULTICAST_LOOP on Windows. (Dave Arnold reports
407
that doing so leads to UDP packets with TTL=1.)
408
409
2006.10.12:
410
- Fixed a rare memory leak in "MultiFramedRTPSource". (Thanks to David Bertrand for this fix.)
411
- Made "RTSPServer::lookupServerMediaSession()" virtual, to allow for future
412
subclasses of "RTSPServer" that - for example - create and add "ServerMediaSession"s
413
dynamically (depending on whether or not the named file exists).
414
- Added a "rtspURLPrefix()" member function to "RTSPServer". This returns the
415
"rtsp://" URL prefix that's common to all of the server's "rtsp://" URLs.
416
417
2006.10.07:
418
- The demo applications (in the "testProgs" directory) that stream MPEG-4
419
Elementary Stream video files now use a file name "test.m4e" rather than "test.m4v".
420
This is to avoid confusion, because Apple has coopted the ".m4v" suffix for
421
MPEG-4 (audio+video) files, which are different.
422
- Made "MPEG4VideoStreamFramer" more bullet proof against some non-standard MPEG-4 video data.
423
(Thanks to Maxim Petrov for this suggestion.)
424
425
2006.10.05:
426
- Fixed a minor bug in "MPEG2TransportStreamFromESSource" (thanks to "jeremy at electrosilk.net")
427
- Changed some class member function and variables from "private" to "protected", in response to a request
428
from David Bertrand.
429
- Made "DarwinInjector::createNew()" more bullet proof, by giving the "applicationName" parameter
430
a default value.
431
432
2006.09.20:
433
- Corrected the bug fix to "H264VideoRTPSink" that was made two revisions ago.
434
435
2006.09.18:
436
- Fixed a bug in the way that "RTPSource" records the maximum sequence number seen so far.
437
(The bug could be triggered by packets arriving out of order.) Thanks to Mallikharjuna Reddy
438
for pointing this out.
439
- When creating new datagram sockets, we now attempt to setsockopt() SO_REUSEPORT and IP_MULTICAST_LOOP,
440
even on Windows. (A version of Windows prior to XP had problems with this, but it's apparently no longer
441
a problem.)
442
443
2006.09.12:
444
- Fixed a minor bug in "H264VideoRTPSink". (Thanks to Emiliano Parasassi for noting this.)
445
- If the "totSessionBW" parameter to "RTCPInstance::RTCPInstance()" is zero, print out an error message,
446
and use a value of 1 (kbps) instead.
447
448
2006.09.09:
449
- Reenabled asynchronous file reading in "ByteStreamFileSource", after fixing a bug
450
that could lead to a 'race condition' in some circumstances. (The fix was to call
451
"FramedSource::afterGetting()" directly - rather than via the event loop - after
452
delivering data to the downstream object.)
453
- Updated "MPEG2TransportStreamFromESSource" again. Now, we set the
454
"PES_packet_length" field to zero if the input data was larger than 2^16 bytes
455
long. (This is in accordance with the MPEG specifications; thanks to "jeremy at electrosilk.net"
456
for noticing this..)
457
458
2006.09.08:
459
- Temporarily disabled asynchronous file reading in "ByteStreamFileSource" until we
460
fix an apparent bug that is causing MPEG streaming to fail.
461
- Updated "MPEG2TransportStreamFromESSource" to print a warning message if the input source delivers
462
data in chunks that are too big to make up a PES packet.
463
464
2006.09.07:
465
- Fixed a bug that was preventing the RTCP "RR" packet handler from being called
466
when we were streaming RTP/RTCP-over-TCP. (Thanks to "zhangzx at rcs-9000.com"
467
for noticing this.)
468
469
2006.08.26:
470
- Changed the implementation of "ByteStreamFileSource" so that reads from the
471
open file are now done asynchronously, when data becomes available. This matches
472
the code's event-driven execution model better than the previous implementation,
473
which read from files synchronously. It should also perform better in systems
474
that read from more than one file concurrently.
475
- Added Victor Kozhuhov's modifications to the WAV file support code, to allow for WAV files that contain
476
u-law or a-law content (instead of the usual raw PCM).
477
478
2006.08.24:
479
- Fixed the way in which "RTSPServer" handles requests that span more than one
480
TCP socket read. These reads are now all handled asynchronously, in accordance
481
with the library's event-driven execution model. (Thanks to Marc Neuberger for noting this.)
482
- Fixed a memory leak in "MultiFramedRTPSource" that would occur if we received
483
packets with duplicate sequence numbers, or if we received excessively delayed
484
packets. (Thanks to David Bertrand for noticing this.)
485
- Changed the order of statements in "~RTSPClient()" to fix a bug (noted by Brain Lai).
486
- Changed "base64Encode()" to take a 'length' parameter, so that it will work with input data that
487
contains '\0' characters. (Thanks to Derk-Jan Hartman for this suggestion.)
488
- Added support - in "RTSPServer" - for the (non-standard) "x-playNow:" header in RTSP requests.
489
(Thanks to Rob Casey for this patch.)
490
- Updated "MediaSession" to parse the (standard) SDP "framerate" attribute (in addition to "x-framerate", which
491
is non-standard).
492
- Changed the parent class of "H264VideoStreamFramer" to be "FramedFilter" (to be consistent with other
493
'Framer' classes) instead of "FramedSource". (Thanks to Jinfeng Zhang for noticing this.)
494
- Made the "FramedFilter" implementation more robust, in case the supplied input source parameter is NULL.
495
496
2006.08.07:
497
- Changed the way that "OnDemandServerMediaSubsession" creates server ports.
498
It now chooses server port numbers starting with a specific port number
499
(which is now an optional parameter to the "OnDemandServerMediaSubsession"
500
constructor). The default value of this initial port number parameter is 6970.
501
This matches the port number range used by other common RTSP server implementations,
502
including Darwin Streaming Server and Helix.
503
- Changed the criterion for whether to send out a RTCP "SR". (Thanks to David Bertrand.)
504
- Fixed an obscure bug in "OnDemandServerMediaSubsession::deleteStream()"
505
(reported by Scott Hayes)
506
- Removed some archaic code that was developed for a customer several years ago, but
507
which is no longer used.
508
509
2006.07.04:
510
- Another update to "H264VideoRTPSink" (requested by David Bertrand)
511
512
2006.06.28:
513
- Another update to "H264VideoRTPSink". (Thanks to David Bertrand.)
514
515
2006.06.27:
516
- Updated "H364VideoRTPSink"
517
- Corrected the definition of MAX_PES_PACKET_SIZE in MPEG2TransportStreamFromPESSource.cpp.
518
(Thanks to Jiri Pinkava for this fix.)
519
520
2006.06.23:
521
- Fixed some minor issues with the previous addition of "H264VideoRTPSink"
522
523
2006.06.22:
524
- Added "H264VideoRTPSink", for transmitting H.264/RTP streams. (Thanks to
525
Benoit Quirynen and David Bertrand for funding this work.)
526
- Changed the default definitions of IP_ADD_SOURCE_MEMBERSHIP and
527
IP_DROP_SOURCE_MEMBERSHIP (for use if they're not already defined in header files),
528
to make it more likely that SSM joins will properly fail if SSM is not actually
529
implemented on the host OS.
530
- Changed some "delete"s into "delete[]". (Thanks to Wojciech Matyjewicz
531
and Mathur for reporting these bugs.)
532
- Made "sapWatch a bit more robust. (Thanks to Jiri Pinkava for this fix.)
533
534
2006.05.17:
535
- Fixed "OnDemandRTSPServer" so that it sets a RTCP "RR" handler,
536
even if "reuseFirstStream" is True.
537
- Changed "RTSPServer" (and the "testOnDemandRTSPServer" demo application)
538
to use a 45-second client liveness timeout, by default. (Previously,
539
no client liveness checking was being done by default.)
540
(Note that client liveness timeouts are done only for unicast streams, not multicast.)
541
- Fixed a bug in the implementation of "BasicHashTable" that arose when
542
we were using hash tables with multi-word-sized keys.
543
544
2006.05.15:
545
- No change from the previous release, but the installed ".tar.gz" file had
546
accidentally been deleted.
547
548
2006.05.11:
549
- Cleaned up some code in "BasicTaskScheduler" that was allegedly causing
550
problems on a Zaurus.
551
- Changed "TaskScheduler::rescheduleDelayedTask()" so that its "microseconds"
552
parameter is a "int64_t" (to match "scheduleDelayedTask").
553
(Thanks to David Bertrand for suggesting this.)
554
- Updated "ServerMediaSession:::generateSDPDescription()" to change
555
"a=rtcp: unicast-reflection" to "a=rtcp-unicast: reflection", to
556
reflect the latest version of the IETF's "draft-ietf-avt-rtcpssm"
557
Internet-Draft. (This is for Source-Specific Multicast sessions only.)
558
- Cleaned up "H263plusVideoRTPSink" slightly, to remove an unnecessary
559
member variable.
560
- Removed support for the (experimental and non-standard) "X-MCT-TEXT"
561
payload type.
562
563
2006.03.17:
564
- Fixed a bug in "RTSPClient" (that had been introduced in the 2006.02.15
565
release) that was stopping RTP-over-TCP reception from working.
566
567
2006.03.15:
568
- Updated "MediaSession" to parse the "s=" and "i=" lines of input SDP
569
descriptions, and added member functions for returning these string values.
570
(Thanks to Scott Hays or this.)
571
- Updated "MPEG2TransportStreamMultiplexor" to use the audio track for PCR
572
iff there is no video track present.
573
- Made a change to "liveMedia/include/H263plusVideoStreamFramer.hh" to overcome
574
an error reported by some nit-picking compilers.
575
- Fixed a minor bug in "MPEG2TransportStreamFromESSource" (in the way that it
576
handles EOF on input).
577
578
2006.03.03:
579
- Updated "MPEG4LATMAudioRTPSource" to allow the LATM data length field to
580
be omitted from the start of each returned audio frame. (The "faad" decoder
581
(used by VLC, for example) needed this.)
582
- Renamed "SECOND" in the "BasicUsageEnvironment" library to "DELAY_SECOND"
583
(and similarly for "ZERO", "MINUTE", "HOUR", "DAY"), to avoid an alleged
584
name conflict with some other code used by VLC. (Thanks to
585
Derk-Jan Hartman for this suggestion.)
586
- Removed some unnecessary code from "testProgs/playCommon.cpp".
587
588
2006.02.25:
589
- Updated the previous change to "MultiFramedRTPSource::doStopGettingFrames()",
590
to also reset the object's fields. (Thanks to David Bertrand.)
591
592
2006.02.15:
593
- Changed "GetFileSize()" (defined in "liveMedia/include/InputFile.hh") and
594
"ByteStreamFileSource::fileSize()" to return a "u_int64_t", to allow for
595
(potentially) large files.
596
- Changed the "microseconds" parameter to "TaskScheduler::scheduleDelayedTask()"
597
from "int" to "int64_t". This allows for durations greater than the previous
598
~2000 second limit.
599
- Updated "RTSPClient" to support handling RTSP requests sent by the server.
600
(Some servers send periodic requests back to the client as a keep-alive test.)
601
At present, we just respond to such requests with a "not allowed" error.
602
(Thanks to Khanh Mai for this change.)
603
- Updated "MultiFramedRTPSource::doStopGettingFrames()" to reset the
604
"ReorderingPacketBuffer". (Thanks to David Bertrand for this fix.)
605
- Corrected a small bug in the previous "RTSPClient" modification
606
(noticed by Glen Gray).
607
- Fixed a bug in "ADTSAudioFileSource" when parsing the optional "crc_check"
608
field. (Thanks to Paul Li for noticing this.)
609
610
2006.01.27:
611
- Updated "RTSPClient" to:
612
- allow the "parameterName" parameter to "getMediaSessionParameter()" to be NULL
613
- add a "setUserAgentString()" member function, to allow clients to
614
specify an alternative string for "User-Agent:" headers
615
- parse the optional "timeout" parameter in response "Session:" headers,
616
and added a "sessionTimeoutParameter()" member function to retrieve it.
617
(Thanks to Glen Gray for proposing these changes.)
618
- Fixed "H263plusVideoRTPSource" to properly initialize two member variables
619
in its constructor. (Thanks to David Bertrand for this fix.)
620
- Added Bernhard Feiten's support for H.263plus parsing/framing
621
622
2006.01.24:
623
- Corrected the maximum PES packet size (in "MPEG1or2DemuxedElementaryStream.cpp")
624
to allow for a 6-byte header. (Thanks to Jiri Pinkava for this fix.)
625
- Fixed "MPEG1or2AudioStreamFramer" to avoid a potential divide-by-zero when
626
it's fed certain malformed MPEG audio data. (Thanks to Eric Peters for this.)
627
- Updated the top-level "Makefile.tail" to make it clear that "testProgs" can't
628
be built until after the 'library' directories are built. This ensures that
629
parallelizing "make"s don't do the wrong thing.
630
631
2006.01.05:
632
- Updated "MPEG4VideoStreamFramer" to make the parsing of MPEG-4 video a bit
633
more robust. (Thanks to Khanh Mai for this suggestion.)
634
635
2006.01.04:
636
- Updated "OnDemandServerMediaSubsession" to tear down the stream (thus sending
637
a RTCP "BYE") when the input source ends, iff the stream does not have a known
638
duration. (If the stream has a known duration, then we keep the stream alive,
639
in case a client wants to seek backwards in it.)
640
641
2005.12.30:
642
- Extended the previous release's fix to also work with the RTSP
643
"OPTIONS" command.
644
645
2005.12.29:
646
- Include (if necessary) authentication headers in the initial HTTP
647
"GET" and "POST" commands, if we're setting up RTSP-over-HTTP tunneling.
648
This allows "RTSPClient" to work properly with some Axis cameras, which
649
require authentication on these HTTP commands.
650
651
2005.12.23:
652
- Fixed the RTCP port number in the RTSP "Transport:" header "port=" part
653
(for multicast streams).
654
- Updated the change that we made in version 2005.11.02 so that it also
655
sets the port number correctly.
656
657
2005.12.15:
658
- Made calls to "select()" more robust, by checking for (and ignoring)
659
EAGAIN or EINTR errors.
660
- Fixed a bug in "MPEG4VideoFileServerMediaSubsession" that could occur if a
661
bad MPEG-4 video file (not containing any initial 'config' data) is read.
662
(Thanks to Trevor Pering for noticing this.)
663
- Removed an undocumented, experimental and rarely-used option from "openRTSP".
664
665
2005.12.09:
666
- Updated the RTCP implementation so that reception stats for a SSRC are now kept
667
around even after a RTCP BYE is received, in case we want to use these stats
668
for QOS reports. (However, if a SSRC is reaped due to inactivity, then the
669
reception stats are deleted.)
670
671
2005.12.05:
672
- On some systems (notably FreeBSD), "struct sockaddr_in" includes a "sin_len"
673
field, which should be set before the struct is used. We now replace declarations
674
of "struct sockaddr_in" with a macro MAKE_SOCKADDR_IN() (defined in
675
"groupsock/include/GroupsockHelper.hh"). This macro sets the "sin_len" field
676
iff "HAVE_SOCKADDR_LEN" is defined on the command line.
677
(Thanks to Boris Nikolaus for noting this issue.)
678
- Fixed a bug in the timestamp generation for certain rare MPEG-4 video streams.
679
(Thanks to Bernhard Feiten for reporting this.)
680
681
2005.11.30a:
682
- Improved the calculation of the per-Transport Packet duration in
683
"MPEG2TransportStreamFramer", so that the overall transmit duration
684
tries to match the client playout duration (as determined by PCRs).
685
- Minor patch to avoid errors when compiling with GCC 4.1.
686
(Patch contributed by Hanno Boeck.)
687
- Patch to the special 'Kasenna'-specific support in "RTSPClient".
688
(Patch contributed by Glen Gray.)
689
690
2005.11.11:
691
- Modified "MPEG2TransportStreamFramer" to take the PCR "discontinuity_indicator"
692
flag into account when updating the estimated duration of each TS packet.
693
694
2005.11.03:
695
- Minor bug fix to the previous version's update to "RTSPClient".
696
697
2005.11.02a:
698
- Updated the previous release to add a new (optional)
699
"forceMulticastOnUnspecified" parameter to "RTSPClient::setupMediaSubsession()".
700
This forces the client to request a multicast stream if the original SDP
701
response address was unspecified (0.0.0.0). (Note that not all servers
702
will be able to handle this.) We also handle the "port=" field in RTSP
703
"SETUP" response "Transport:" headers.
704
- Fixed "RTSPServer" to include a proper "port=" field in the "SETUP"
705
"Transport:" response when streaming multicast.
706
707
2005.11.02:
708
- Updated "RTSPClient" to use the "destination=" address in the "SETUP"
709
response's "Transport:" header - for multicast streams. We do this because
710
some weird servers (e.g., Axis cameras, reportedly) do not specify the
711
multicast address earlier, in the "DESCRIBE" response's SDP.
712
713
2005.10.28b:
714
- Added a "rtpTimestampFrequency" parameter (with default value 90000)
715
to "H263plusVideoRTPSink", "MPEG4ESVideoRTPSink".
716
717
2005.10.28a:
718
- Removed some unnecessary "delete"s, and changed some "delete"s to
719
"Medium::close()"s. (Minor bug noted by Zhixue Zhang.)
720
721
2005.10.28:
722
- Fixed a potential 'divide by zero' problem in "MP3Internals.cpp".
723
(Thanks to Eric Peters for noting this.)
724
725
2005.10.27:
726
- Added a "numEntries()" pure virtual function to "HashTable".
727
(Thanks to David Bertrand for this suggestion.)
728
729
2005.10.23:
730
- When creating a Transport Stream from AC-3 audio input, we now use a stream_id
731
of 0x06 rather than 0x81.
732
- Add support for receiving the various G.726 RTP payload formats, described
733
in RFC 3551.
734
- Added an implementation of the "doStopGettingFrames()" virtual function to
735
"BasicUDPSource". (Thanks to Adrian Hornsby for this suggestion.)
736
- Changed the reimplemented virtual functions in "BasicUsageEnvironment0" and
737
"BasicTaskScheduler0" from "protected" to "public". (Thanks to David Bertrand
738
for this suggestion.)
739
- Added support to "RTSPClient" for the "GET_PARAMETER" RTSP command.
740
(Thanks to Glen Gray for this.)
741
- Added a Windows version of the "genWindowsMakefiles" script. This should
742
make it easier for Windows users to unpack and build the code.
743
(Thanks to Erwin Herzog for this script.)
744
745
2005.10.05:
746
- Fixed a couple of bugs noticed by David Bertrand.
747
748
2005.09.23:
749
- This software is now called "LIVE555 Streaming Media", and our preferred domain name
750
is now "live555.com".
751
752
2005.09.20:
753
- Updated "MPEG2TransportStreamMultiplexor" to increase the frequency of PMTs
754
and PATs in the output Transport Stream.
755
- More improvements to "MPEG2TransportStreamFromESSource".
756
- Updated "RTSPServer" to allow for empty stream names from certain non-standard
757
RTSP clients (such as Amino STBs).
758
- Fixed "RTSPClient::tearDownMediaSession()" to delete each subsession's
759
"sessionId" field.
760
- Fixed a minor memory leak in "RTSPClient" (when implementing HTTP tunneling)
761
762
2005.09.09:
763
- Made the destructors for "BasicUsageEnvironment" and "BasicUsageEnvironment0"
764
protected rather than public, to match the base class "UsageEnvironment".
765
- More improvements to "MPEG2TransportStreamFromPESSource" and
766
"MPEG2TransportStreamFromESSource".
767
768
2005.09.06:
769
- Modified "MPEG2TransportStreamMultiplexor", and added
770
"MPEG2TransportStreamFromESSource".
771
772
2005.08.26:
773
- Updated "MediaSession" to parse the SDP "a=type:" attribute. (Patch by
774
Derk-Jan Hartman.)
775
- Added support to "RTSPClient" for handling Microsoft servers' non-standard use
776
of the RTSP/RTP protocol. Also, fixed the parsing and generation of floating
777
point numbers in the RTSP "Range:" and "Scale:" headers to work correctly in
778
non-POSIX locales. (Thanks to Derk-Jan Hartman for this suggestion.)
779
- Fixed a memory leak in "MPEG2TransportStreamFromPESSource".
780
- Changed "MP3StreamState::readFromStream()" from "private" to "protected", to
781
satisfy a request by Pierre l'Hussiez.
782
783
2005.08.09:
784
- Improved the Transport Stream generation software to (in the future) allow
785
for generating Transport Streams from Elementary Stream data as well as
786
from PES packet data.
787
788
2005.07.23:
789
- Improved "H264VideoRTPSource" to properly handle 'aggregate' packets
790
that contain more than one NAL unit.
791
792
2005.07.21:
793
- We no longer set a RTCP "RR" handler when we're streaming, unicast on-demand,
794
from a shared input source. (The reason for this is that, in this case,
795
we also share a RTCP instance for all client sessions (streams).
796
A better fix will eventually be needed.)
797
798
2005.07.19:
799
- Updated H.264/RTP support.
800
801
2005.07.15:
802
- Oops, DEBUG was not supposed to be defined in "RTSPServer.cpp".
803
- Added "-D_LARGEFILE_SOURCE=1" to the "COMPILE_OPTS =" line of the various
804
"config.*linux*" files, to ensure that code that uses "fseeko()" will
805
compile properly for all Linux systems.
806
807
2005.07.13:
808
- When handling a 'passive' session, we no longer set a RTCP "RR" handler,
809
because (unlike unicast, on-demand sessions) the RTCP instance usually
810
outlives RTSP client sessions. (Thanks to Jon Sheller for reporting
811
this bug.)
812
813
2005.07.12:
814
- Minor updates to the Base64 code for H.264/RTP receiving.
815
816
2005.07.10:
817
- Removed a debugging version of "testOnDemandRTSPServer" that had mistakenly been
818
left in the proevious revision. If you downloaded the previous revision, then
819
please download this version instead!
820
- Fixed "MPEG1or2VideoStreamFramer" to better handle MPEG video streams where the
821
first GOP time code has a non-zero 'pictures' count.
822
(Thanks to Eric Peters for reporting this problem.)
823
- Some enhancements to the Base64 code, for eventual use by "H264VideoRTPSource".
824
825
2005.07.08:
826
- Added - to "RTCPInstance" - the ability to assign 'handler' functions
827
to be called on the arrival of RTCP "SR" or "RR" packets (as well as "BYE").
828
We now use this mechanism (specifically, a RTCP "RR" handler) to improve the
829
optional 'liveness' test for "RTSPServer". (Liveness is now indicated by
830
either a RTSP command over the TCP connection, or the arrival of a RTCP
831
"RR" packet.)
832
- Moved routines for Base64 encoding and decoding into the "liveMedia"
833
library. (Base64 encoding was already being used by "RTSPClient";
834
Base64 decoding will soon be used by "H264VideoRTPSource".)
835
836
2005.07.01:
837
- Updated "testOnDemandRTSPServer" to demonstrate AAC audio streaming (from an
838
ADTS-format file)
839
- Made some modifications to (supposedly) make the code compile better for
840
WinCE.
841
842
2005.06.30:
843
- Added support for reading and streaming from AAC audio files in ADTS format.
844
(Thanks to Manthan Systems for funding this work.)
845
- Removed duplicate code in "testOnDemandRTSPServer.cpp".
846
- Removed duplication of a common error message from "RTSPClient.cpp".
847
848
2005.06.29:
849
- Added support for Basic authentication (in addition to Digest authentication)
850
to "RTSPClient".
851
- Removed a minor memory leak in "PassiveServerMediaSubsession".
852
- Improved "MPEG4ESVideoRTPSource" to better note when received RTP packets
853
begin or end a MPEG-4 'frame'. (Thanks to Saumya Chandra for noting the
854
limitations of the previous code.)
855
- Changed some member functions in "PassiveServerMediaSubsession" from
856
"private" to "protected", to allow subclassing. (Thanks to
857
Fabrice Aeschbacher for this suggestion.)
858
859
2005.06.16:
860
- Fixed a bug in the generic MPEG (1, 2 or 4) video parsing code that was causing some
861
MPEG-4 streams not to be parsed correctly.
862
- Updated "MPEG4VideoStreamFramer" to better handle MPEG-4 video streams that contain
863
'B' frames. (Now, more accurate presentation times and frame durations are computed
864
for such streams.)
865
866
2005.06.07:
867
- Modified the Windows-specific code in "ByteStreamFileSource.cpp" to compile properly
868
under MINGW.
869
870
2005.06.04:
871
- Updated "MPEG2TransportStreamFramer::doStopGettingFrames()" to clear the PID status
872
table. This makes it possible to handle PCR discontinuities when seeking (e.g.)
873
within a stream.
874
- Updated the "ByteStreamFileSource::seekToByte*()" operations to take 64-bit
875
parameters, to allow for seeking within files that are >4 GB in size.
876
877
2005.05.26a:
878
- Updated the 'seeking' operations in "ByteStreamFileSource" to handle files
879
that are > 2^31 bytes in size.
880
881
2005.05.26:
882
- Updated "RTCPInstance::setByeHandler()" to (by default) handle only "BYE"s that
883
come from active participants. This means, for example, that a receiver of a
884
multicast stream can now quit without its RTCP "BYE" being handled by other
885
multicast receivers. (By default, multicast receivers will now handle only
886
"BYE"s that come from the sender.)
887
- "RTSPServer" now includes "rtptime" in the returned "RTPInfo:" header, because
888
the bugfix in the previous release also happened to fix the problem that this was
889
having with QuickTime Player.
890
891
2005.05.24:
892
- Fixed "RTPSink" so that it now resets "fTimestampBase" only on the first time
893
that a timestamp is ever computed; not on the first time after "startPlaying()"
894
is called. (Thanks to David Bertrand for noting this.)
895
896
2005.05.23:
897
- Added support to "RTSPServer" for (optionally) reclaiming client connection
898
state (and stopping the stream) if no command has been received on the
899
RTSP TCP connection within a specified period of time. This is useful for
900
use in closed systems where it is known that the RTSP client always uses
901
the "GET_PARAMETER" command as a periodic 'keep-alive'. It stops the
902
stream from continuing indefinitely if the client suddenly dies.
903
904
2005.05.12:
905
- Removed some unnecessary floating point code from "MP3Internals.cpp".
906
(This was causing unnecessary slowness on some hardware without floating point.)
907
908
2005.05.09:
909
- Modified "MPEG2TransportStreamFramer" to give greater weight (0.5) to more recent
910
data when computing the estimate of per-transport-packet duration. (This causes
911
it to respond more accurately to sudden changes in bitrate (i.e., in VBR streams).)
912
- Added some (otherwise unnecessary) null destructors to stop gcc 4.0 from printing
913
warning messages. (Thanks to Emiliano Parasassi for pointing this out.)
914
915
2005.05.05:
916
- "RTSPServer" now uses separate buffers for requests and responses. (This fixes
917
an issue that arose in the handling of requests from a set-top box.)
918
919
2005.05.04:
920
- Updated "RTSPServer" to make the parsing of "CSeq:" headers in RTSP requests
921
more robust.
922
923
2005.04.26:
924
- Made sure that "MultiFramedRTPSource"s properly stop receiving incoming RTP
925
packets, when they're asked to stop. (This fixes a bug that was being triggered
926
by some streams that continued sending RTP packets after a RTCP "BYE". Thanks to
927
Eberhardt Garner for helping track this down.)
928
- Fixed a minor memory leak in "openRTSP".
929
- Updated "FramedSource.hh" to no longer (by default) support the old form of
930
the 'after getting' function.
931
932
2005.04.23:
933
- Added "H264VideoRTPSource", for receiving H.264/RTP streams.
934
(Thanks to Erik Hellerud for this.)
935
- Made some minor modifications to "ServerMediaS(ubs)ession",
936
to support a customer's project.
937
938
2005.04.22:
939
- Improved "MPEG1or2VideoRTPSink" to allow more than one complete video 'slice'
940
from the same picture to be packed into an outgoing RTP packet.
941
- Eliminated a bogus "IP_ADD_MEMBERSHIP" error message that Windows (for some
942
reason) sometimes triggers for no reason.
943
944
2005.04.20:
945
- Changed the name of the (platform-independent) "_close()" function to
946
"closeSocket()", to prevent an apparent function name conflict in Windows.
947
948
2005.04.13:
949
- Modified "ourSourceAddressForMulticast()" to try the
950
"gethostname()"/"gethostbyName()" method if the 'multicast loopback' method fails.
951
- Made some modifications to "ServerMediaSubsession" to support "SIPServer"
952
(whose implementation is currently in progress).
953
954
2005.04.07:
955
- Fixed a bug in the "base64Encode()" routine in "RTSPClient.cpp".
956
(Thanks to Raphael Rigo for noticing this.)
957
- Updated "MPEG1or2VideoStreamDiscreteFramer" to handle the "iFramesOnly" and
958
"vshPeriod" parameters (just as the original "MPEG1or2VideoStreamFramer"
959
already does).
960
961
2005.03.31:
962
- Removed some testing code that had accidentally been left in the previous
963
release. If you use "openRTSP", then please use this release instead of the
964
previous one.
965
- Fixed a bug in "RTPServer" when handling streams without stream names.
966
(The bug had been introduced in version 2005.03.28.)
967
968
2005.03.30:
969
- Improved the support for seeking within RTSP/RTP-streamed MPEG-1 or 2
970
Program Stream files. (A/V sync after a seek still isn't perfect, though.)
971
972
2005.03.28:
973
- The "RTSPServer" implementation now supports raw-UDP streaming, for those
974
clients that request it. (This is usually requested only by some specialized
975
clients - such as set-top boxes - and only for data such as MPEG Transport
976
Streams where audio/video is muxed together (and no RTP timestamps are needed).)
977
- Updated the calculation of MP3 sampling frequencies to allow for 'MPEG2.5'
978
(Thanks to Massimo Buffo for this fix.)
979
980
2005.03.23:
981
- Changed "BasicTaskScheduler::SingleStep()" to call only one read handler during
982
each iteration of the event loop. This prevents potential problems if
983
the event loop is called reentrantly from within a read handler.
984
- Added a new, alternative version of "ByteStreamFileSource::createNew()" that
985
takes an open file (FILE*) as parameter, instead of a file name.
986
(Thanks to Mike Yan for this suggestion.)
987
- Updated the top-level Makefile to build the lower-level directories using
988
"$(MAKE)" rather than "make". This allows a command other than "make"
989
(e.g., "gmake") to be used. (Thanks to Sergio.Gelato for this fix.)
990
- Minor changes to (apparently) make Sun's C++ compiler happy.
991
(Thanks to Sergio.Gelato for these.)
992
- Some changes to "RTSPServer" to make it more tolerant of some strange, non-standard
993
clients.
994
- Support seeking within RTSP/RTP-streamed MPEG-1 or 2 Program Stream files.
995
996
2005.03.11:
997
Updated "MPEG2TransportStreamFromPESSource" once again to better handle
998
Program Streams that include a "program_stream_map".
999
1000
2005.03.10:
1001
- Modified "BasicUDPSource" to make its OS socket receive buffer at least 50 kBytes
1002
(the same as we do for "MultiFramedRTPSource").
1003
1004
2005.03.07:
1005
- Updated "MPEG2TransportStreamFromPESSource" (and thus also the
1006
"testMPEG1or2ProgramToTransportStream" demo application) to handle MPEG
1007
Program Streams that include MPEG-4 Elementary Stream data. (For this to work,
1008
the Program Stream must include a "program_stream_map".)
1009
1010
2005.03.05:
1011
- Modifying "ReceivingInterfaceAddr" now works before receiving
1012
unicast streams. (Previously, it worked only when receiving multicast
1013
streams.) Also, added a new option "-I <interface-ip-address>"
1014
to "openRTSP", to allow the user to specify which interface is used.
1015
(Thanks to Luca Abeni for this patch.)
1016
- Fixed a "delete[]" vs "delete" bug in "MPEG4VideoStreamFramer",
1017
1018
2005.02.28:
1019
- Fixed a bug (that had been introduced in the 2005.01.07 version)
1020
in the MP3 frame<->ADU conversion code.
1021
1022
2005.02.25:
1023
- Fixed some minor memory leaks.
1024
- Made some more changes to prepare for RTSP server seeking within MPEG-1 or 2
1025
Program Stream files. (This is still not done yet.)
1026
1027
2005.02.14:
1028
- Changed the generation of "rtptime" in "RTPInfo:" RTSP headers to use
1029
%u instead of %d. (Thanks to Regis Feneon for noting this.)
1030
- Made some changes to prepare for RTSP server seeking within MPEG-1 or 2
1031
Program Stream files. (This is still not done yet.)
1032
1033
2005.02.09:
1034
- Updated "MultiFramedRTPSink" to allow for frame-specific special headers to
1035
appear before each frame in RTP packets. (This in addition to the (possible)
1036
special header that may appear at the start of the packet.) This functionality
1037
is added using a new virtual function "frameSpecificHeaderSize()" (that,
1038
by default, returns 0.) Thanks to Matt Romaine for this.
1039
- Added a new "BufferedPacket" virtual member function
1040
"getNextEnclosedFrameParameters()", which will (eventually) replace the existing
1041
"nextEnclosedFrameSize()" virtual member function. This (plus a corresponding
1042
change to "MultiFramedRTPSource") now makes it possible to give correct
1043
presentation times to multiple frames within incoming RTP packets.
1044
1045
2005.02.07:
1046
- The "MultiFramedRTPSink::setPacketSizes()" function now applies just to one
1047
specific "MultiFramedRTPSink" object; not to all such objects.
1048
- Added a new version of "RTSPServer::removeServerMediaSession()" that takes
1049
the (string) stream name - rather than the "serverMediaSession" object
1050
- as argument.
1051
1052
2005.01.29:
1053
- We now remove reception and transmission statistics records (from each
1054
"RTPSource" and "RTPSink", respectively), whenever each RTCP SSRC membership
1055
gets 'reaped'. We also added more information to "RTPTransmissionStats".
1056
(Thanks to WIS Technologies for funding this work.)
1057
- Some minor fixes to "JPEGVideoRTPSource". (Thanks to Sergey Khlutchin for
1058
reporting this.)
1059
- Made the "ServerMediaSession" constructor "protected", to allow for
1060
subclassing. (This was requested by Eric Peters.)
1061
- Updated "win32config.Borland" and modified some header files, so that the
1062
code can be built using Borland's "C++ Builder 5.0".
1063
(Thanks to David Wu for this suggestion.)
1064
- Added a "setPacketSizes()" function to "MultiFramedRTPSink" to make it
1065
possible to change the 'maximum' and 'preferred' size of outgoing
1066
RTP packets. (Thanks to Christian Gerstner for this suggestion.)
1067
1068
2005.01.24:
1069
- Some MIME-type parameters in SDP "a=fmtp:" lines are Boolean, taking only values
1070
0 or 1. Sometimes these parameters are set (to 1), without an explicit "=1"
1071
being in the SDP "a=fmtp:" line. (This is not legal, but it sometimes occurs.)
1072
Our SDP parsing code (in "MediaSession.cpp") now checks for this.
1073
1074
2005.01.23:
1075
- More improvements to "AVIFileSink". MPEG-1, 2 or 4, JPEG and H.263 video is
1076
now supported, along with raw PCM or u-law audio. (However, audio is not
1077
yet working perfectly, and MPEG audio is currently not supported at all.)
1078
(Thanks to WIS Technologies for funding this work.)
1079
- Changed the (many) calls to "gettimeofday()" to pass NULL as the 'timezone'
1080
parameter, because this isn't used.
1081
1082
2005.01.13:
1083
- Fixed a bug in "liveMedia/OnDemandServerMediaSubsession.cpp" that was reportedly
1084
causing crashes on some systems. (Thanks to Brian Wang for finding this.)
1085
- Updated "MPEG1or2VideoStreamDiscreteFramer" and
1086
"MPEG4VideoStreamDiscreteFramer" to set appropriate presentation
1087
timestamps for B-frames. (Unlike I and P-frames, B-frames' timestamps are
1088
not monotonically increasing.) (Thanks to WIS Technologies for funding this work.)
1089
1090
2005.01.07:
1091
- Fixed a bug in "JPEGVideoRTPSink" that was causing incorrect packets to
1092
be generated when streaming using non-standard JPEG quantization tables
1093
(which must be included in the RTP packets).
1094
- Updated the handling of incoming MP3 ADUs to allow for the possibility of
1095
receiving ADUs that contain 'ancillary data' at the end. (For example,
1096
ADUs for "mp3Pro" frames are like this.) Note, however, that our
1097
MP3 frame-to-ADU generating code currently doesn't include 'ancillary
1098
data' at the end of the generated MP3 ADUs. This will need to be fixed
1099
in order to be able to correctly *transmit* ADUs for "mp3Pro" frames.
1100
- More work on "AVIFileSink". Recording of MPEG-4 video-only files now works.
1101
1102
2004.12.29:
1103
- Added a new liveMedia 'sink' class - "AVIFileSink" - for writing an AVI-format
1104
file. Note: This is not fully working yet, so don't try using it yet!
1105
(Thanks to WIS Technologies for funding this work.)
1106
1107
2004.12.23:
1108
- Fixed a bug in the previous release (when receiving MPEG-2 Transport RTP streams).
1109
1110
2004.12.22:
1111
- Updated "MPEG4GenericBufferedPacket::nextEnclosedFrameSize() to (i) allow
1112
for "generic" mode, and (ii) properly check for the absence of an
1113
"AU Header section". (Thanks to Erick van Rijk for this suggestion.)
1114
- When receiving a MPEG-2 Transport Stream (either RTP *or* raw-UDP), pass it
1115
through a "MPEG2TransportStreamFramer", so that "durationInMicroseconds" is
1116
set appropriately, based on the stream's embedded PCR values.
1117
(Thanks to Dermot McGahon for this suggestion.)
1118
- Changed the "num_packets_lost" statistics line (printed by "openRTSP -Q")
1119
to format as an int rather than as an unsigned. This is in case this value
1120
is negative (which can happen if duplicate packets are received).
1121
(Thanks to Norbert Donath for noting this.)
1122
1123
2004.12.15:
1124
- Changed the RTSP servers in the various test programs to use port 8554
1125
instead of port 7070 for RTSP (as an alternative to the standard port
1126
554). It turns out that port 8554 is the official IANA-reserved port
1127
number for RTSP (alternative).
1128
- Changed "RTSPClient" to include the "Scale:" header if the scale is being changed
1129
to 1.0 from something else. (Thanks to Matt Romaine for this suggestion.)
1130
1131
2004.12.09:
1132
- Fixed a bug in the handling of "audio/X-MP3-DRAFT-00" RTP streams.
1133
(Thanks to Dhananjay Deshpande for noticing this.)
1134
1135
2004.12.07:
1136
- Updated "RTSPClient" to parse the "Scale:" header (if any) in a response to
1137
a "PLAY" command, and set a corresponding field in the "MediaSession" or
1138
"MediaSubsession" structure.
1139
1140
2004.12.06:
1141
- Fixed a minor bug in "BasicTaskScheduler::SingleStep()" that would be triggered
1142
if the (optional) "maxDelayTime" parameter were unusually large.
1143
- The "RTSPServer" implementation of RTP/RTC-over-TCP streaming will now work even
1144
if the client's RTSP "SETUP" command doesn't include an "interleaved=" field.
1145
1146
2004.11.30:
1147
- Added "RTSPServer" support for the RTSP "Scale:" header, which is used to
1148
implement 'trick play': fast forward and reverse play. The actual implementation
1149
of these depends on the media type; it is currently implemented for MPEG-1 or 2
1150
(including MP3) audio (forward play only), and for WAV (PCM) audio (forward or
1151
reverse play).
1152
(Thanks to Sony Corporation for funding this work.)
1153
1154
2004.11.26:
1155
- Improved "H263plusVideoRTPSource" to better recognize which packets begin
1156
a frame. (This should improve its performance on lossy networks.)
1157
- Improved the parsing of MPEG-1 or 2 audio streams to ignore more bogus
1158
'syncwords'.
1159
- We now look for the 'Xing' VBR Table of Contents, and use this (if present)
1160
to implement seeking within VBR files.
1161
- Updated "ADUFromMP3Source" to allow the internal data buffers to be flushed
1162
(e.g., if there is a discontinuity in the MP3 input data).
1163
- When streaming a seekable MPEG audio stream on demand, insert filters that
1164
convert the input stream to ADU format, and then back to MP3. This allows
1165
us to seek within the stream without being tripped up by the MP3
1166
'bit reservoir' (back-pointer).
1167
1168
2004.11.20:
1169
- Fixed a bug in "MediaSession::initiateByMediaType()". (It was not allowing
1170
for the possibility that a subsession had already been initiated.)
1171
1172
2004.11.19:
1173
- For consistency (and ease of comparison), the "MIMEtype()"
1174
codec name substring for each "MediaSource" subsession is in upper case.
1175
1176
2004.11.18:
1177
- Added an optional "scale" parameter to the "RTSPClient" "play...()"
1178
methods, to allow a client to specify fast forward or rewind 'trick play'.
1179
(Thanks to Dermot McGahon for this suggestion.)
1180
1181
2004.11.16:
1182
- Fixed a bug in the way that "QuickTimeFileSink" records the duration of
1183
multi-channel audio tracks in ".mov" or ".mp4"-format files.
1184
(Thanks to Orban/CRL Inc. for funding this work.)
1185
1186
2004.11.11a:
1187
- Another minor update to "RTSPClient".
1188
1189
2004.11.11:
1190
- Updated the "RTSPServer" implementation to handle the case where a "PLAY"
1191
request does not contain a "Range:" header. (Suggestion by Brian Wang.)
1192
- Reinstated the "MPEG4LATMAudioRTPSource" fix from version "2004.08.24".
1193
(It had accidentally gotten deleted.)
1194
- Included Dermot McGahon's patch to "RTSPClient" to support the bogus
1195
non-standard 'Kasenna' variant of RTSP.
1196
1197
2004.11.09a:
1198
- Fixed the previous revision (RTSP seeking support) to work properly with VLC.
1199
- Fixed a bug that was causing receivers of SSM streams to not receive RTCP packets. (Thanks to Alessandro Gaiarin for reporting this.)
1200
1201
2004.11.09:
1202
- Added support for seeking within streams. This currently works only for
1203
WAV audio file streams, and MPEG audio (include MP3) file sources.
1204
(However, it doesn't yet work properly for VBR MP3 files; this will get fixed.
1205
Also, it doesn't yet work properly with VLC.)
1206
(Thanks to Sony Corporation for funding this work.)
1207
1208
2004.11.06:
1209
- Improved the way that we specify output buffers for "RTPSink" objects.
1210
We now do this using a "maxSize" static member variable (instead of
1211
using a 'number of packets' variable as we did before). We also limit
1212
the size of the output buffer used for RTCP packets, to save space.
1213
- When streaming a MPEG Transport Stream, don't set the RTP 'M' bit.
1214
- When recording a ".mov" or ".mp4" file using "QuickTimeFileSink.cpp",
1215
we no longer fill in the "width" and "height" fields for audio tracks.
1216
1217
2004.11.04:
1218
- When streaming MPEG audio or WAV audio files on demand, we now return the
1219
correct file duration (in the RTSP "Range:" header and the SDP "a=range:"
1220
attribute), so that media players will report the correct stream duration.
1221
(Thanks to Sony Corporation for funding this work.)
1222
- In "MultiFramedRTPSink", we now wait until we receive the first data before
1223
initializing "fNextSendTime" with the current wall-clock time.
1224
(Thanks to Eric Peters for suggesting this.)
1225
1226
2004.11.02:
1227
- Updated the RTSP "Range:" header (in a "PLAY" response) and the SDP "a=range:"
1228
attribute to support streaming from sources with finite durations.
1229
(Such sources can support seeking via RTSP.) The "ServerMediaSubsession"
1230
class now has a "duration()" virtual function. (In the future,
1231
"FileServerMediaSubsession" subclasses will redefine this, so that seeking
1232
within the file will work.)
1233
(Thanks to Sony Corporation for funding this work.)
1234
1235
2004.11.01:
1236
- Added support to "RTSPClient" for streaming RTSP/RTP over HTTP, using the technique
1237
described in Apple's document: <http://developer.apple.com/documentation/QuickTime/
1238
QTSS/Concepts/chapter_2_section_14.html>.
1239
This can be used for streaming from a Darwin Streaming Server from behind a
1240
HTTP-only firewall. (Note that our own RTSP server implementation doesn't yet
1241
implement RTSP-over-HTTP, but this is on the 'to do' list.)
1242
(Thanks to Orban/CRL Inc. and WIS Technologies for funding this work.)
1243
1244
2004.10.28a:
1245
- Fixed "OnDemandServerMediaSubsession" so that "PAUSE"/"PLAY" works properly on
1246
unicast streaming from files.
1247
1248
2004.10.28:
1249
- Removed (perhaps temporarily) the "rtptime=" parameter from the "RTP-Info:" header
1250
that's returned in response to the RTSP "PLAY" command. It appears that this may
1251
be messing up A/V sync in QuickTime Player.
1252
1253
2004.10.26:
1254
- Updated "JPEGVideoRTPSink" (and "JPEGVideoSource") to allow for the
1255
possibility of sending custom quantiziation tables in JPEG/RTP packets.
1256
- Fixed some compile warnings about unused named parameters. (Thanks to
1257
Thiago Correa for these suggestions.)
1258
1259
2004.10.22:
1260
- Added a new "MPEG1or2VideoStreamDiscreteFramer" class, similar to the existing
1261
"MPEG4VideoStreamDiscreteFramer".
1262
1263
2004.10.21:
1264
- Modified the order of SDP lines generated by a RTSP server
1265
(in "ServerMediaSession.cpp") to correspond to the exact order specified by
1266
the SDP RFC. JMIF clients are supposedly anal retentive about this.
1267
(Thanks to Fabrice Aeschbacher for noticing this.)
1268
1269
2004.10.19:
1270
- Updated "MPEG2TransportStreamFramer" to properly handle input data that
1271
doesn't begin with a 'sync' byte (0x47).
1272
1273
2004.10.18:
1274
- Added a new "removeServerMediaSession()" member function to "RTSPServer".
1275
- Updated the implementation of the RTSPServer "RTPInfo:" header to include a
1276
"rtptime=" field.
1277
- Improved the "WindowsAudioInputDevice" trick for making the microphone the
1278
first-listed device. (Thanks to Syncanph Xie for this suggestion.)
1279
1280
2004.10.14:
1281
- Added a new argument "-4" to "openRTSP" (with corresponding updates to
1282
"QuickTimeFileSink"), to generate a "MP4"-format file. (Currently, this
1283
works for MPEG-4 audio only.)
1284
(Thanks to Orban/CRL Inc. for funding this work.)
1285
1286
2004.10.13:
1287
- Fixed a typo that was causing the Windows version not to build.
1288
(Thanks to Thiago Correa for noticing this.)
1289
1290
2004.10.11:
1291
- Updates to "RTSPServer":
1292
- Include a "Date:" header in each response
1293
- Include a "Range:" header in each "PLAY" response.
1294
- Include "RTP-Info:" header in each "PLAY" response.
1295
- Made "SimpleRTPSink" more idiot-proof.
1296
1297
2004.10.07:
1298
- Improved the parser in "MPEG4VideoStreamFramer" to be more tolerant of
1299
bad/unexpected data.
1300
- Moved the code for opening input files by name (which includes a special-case
1301
hack for "stdin") to a single common file - "InputFile.cpp" - to get rid of
1302
duplicated code.
1303
1304
2004.10.04:
1305
- Fixed "UserAuthenticationDatabase::addUserRecord()" (in "RTSPServer.cpp") to
1306
make a copy of the "password" string, before adding it to the hash table.
1307
(The hash table already makes a copy of the "username" (key) string.)
1308
1309
2004.10.03:
1310
- Added support for receiving raw UDP streams (in addition to normal RTP/UDP streams)
1311
(Thanks to Derk-Jan Hartman)
1312
1313
2004.09.30:
1314
- Updated the RTSP server "UserAuthenticationDatabase" to (i) allow for it to
1315
be subclassed, and (ii) allow it to store passwords that are really
1316
md5(<username>:<realm>:<password>)
1317
1318
2004.09.24:
1319
Added support for access control (using digest authentication) to "RTSPServer".
1320
Also, added example code to the "testOnDemandRTSPServer" test program to illustrate
1321
how to use this. (Thanks to Orban/CRL Inc. and WIS Technologies for
1322
funding this work.)
1323
1324
2004.09.22:
1325
- Moved the digest authentication support out of "RTSPClient.cpp"
1326
(and "SIPClient.cpp") into a new file: "DigestAuthentication.cpp". There's also
1327
a corresponding new header file: "DigestAuthentication.hh". This is in preparation
1328
for adding digest authentication support to our RTSP server implementation also.
1329
1330
2004.09.20:
1331
- More improvements to the multi-unicast streaming support (from a single input
1332
source). RTP-over-TCP streaming is now supported in this case. Updated
1333
"testOnDemandRTSPServer" to add a variable "reuseFirstSource" (default: False)
1334
that can be used to implement this.
1335
1336
2004.09.09:
1337
- Made a minor improvement to the multi-unicast streaming support.
1338
1339
2004.09.08:
1340
- Added optional "author" and "copyright" parameters to "DarwinInjector::setDestination()".
1341
- Added an optional "miscSDPLines" parameter to "ServerMediaSession::createNew()",
1342
to allow the caller to add extra SDP lines to the session description.
1343
- Fixed a minor bug in the media tables reclamation code.
1344
- Added still more support for multi-unicast RTSP/RTP streaming from a
1345
single input source. (Thanks to Orban/CRL, Inc. and WIS Technologies for funding
1346
this work.)
1347
1348
2004.09.05:
1349
- We now more gracefully handle malformed "m=" SDP lines. (Thanks to
1350
Derk-Jan Hartman for noticing this problem.)
1351
- In "RTSPClient", we now make the "CSeq" number a static variable, to avoid
1352
potential problems if we connect to the same server with the same URL
1353
more than once. (Thanks to Keith Gurganus for the suggestion.)
1354
- Modified "RTSPServer" to use the destination interface IP address in
1355
its "rtsp://" URL.
1356
1357
2004.09.02:
1358
- Modified "GroupsockHelper.cpp" to allegedly support building for WinCE.
1359
1360
2004.08.26:
1361
- Fixed a bug that could cause "AMRAudioRTPSource"s to not get reclaimed.
1362
(Thanks to Chenglim Ear for reporting this.)
1363
- More support for multi-unicast RTSP/RTP streaming from a single input source.
1364
1365
2004.08.24:
1366
- Modified "LATMAudioRTPSource" to include the initial data length field
1367
in the data that's delivered to a client. (A decoder was needing to see this.)
1368
- Added a new "MPEG4VideoStreamDiscreteFramer" class, as a (more efficient)
1369
alternative to "MPEG4VideoStreamFramer" when the input source is a sequence of
1370
discrete MPEG-4 frames, rather than a byte stream.
1371
- Fixed a minor bug in "Media.cpp". (Thanks to Thiago Correa.)
1372
- Added more support for multi-unicast RTSP/RTP streaming from a single input
1373
source. (This now working, except for TCP connections - to be completed.)
1374
1375
2004.08.17:
1376
- Made the parsing of MPEG-1 or 2 video more robust, in case a Video Sequence Header
1377
doesn't appear exactly where it should.
1378
- Added initial support for multi-unicast RTSP/RTP streaming from a single input
1379
source. (This isn't fully working yet - more support needs to be added.)
1380
1381
2004.08.13:
1382
- Added a "numChannels" parameter to "MPEG4GenericRTPSink" (optional)
1383
and "MPEG4LATMAudioRTPSink".
1384
1385
2004.08.12:
1386
- Fixed a couple of small memory leaks (noticed by Gabriel Bouvigne).
1387
1388
2004.07.31:
1389
- Added support for MPEG-4 LATM audio RTP streaming. (MPEG-4 LATM audio RTP
1390
*receiving* had already been implemented.) (Thanks to Orban/CRL, Inc. for
1391
funding this work.)
1392
1393
2004.07.27:
1394
- Updated the MPEG Program-to-Transport Stream conversion mechanism to set the
1395
correct stream tags depending on whether the input data is MPEG-1 or 2.
1396
1397
2004.07.23:
1398
- Added a "-O" (upper-case letter 'oh') option to "openRTSP". This tells the
1399
program to not send an initial "OPTIONS" request prior to "DESCRIBE".
1400
- Modified "BasicTaskScheduler" to better allow subclassing.
1401
- Added an optional "maximum delay time" option to
1402
"BasicTaskScheduler0::SingleStep()". This allows subclasses to impose a
1403
limit on how long "select()" can delay, in case it wants to also do polling.
1404
1405
2004.07.22:
1406
- Fixed a serious bug that was causing some MPEG Program Stream files to be parsed
1407
incorrectly - especially if they have non-MPEG header data at the front.
1408
- Modified the way in which "Medium" objects are reclaimed, to overcome an
1409
obscure bug.
1410
1411
2004.07.20:
1412
- Added a comment to "DeviceSource.cpp" to clarify the purpose of "fTo", because
1413
several people have gotten this wrong.
1414
- Made ~BasicUsageEnvironment protected (just like ~UsageEnvironment)
1415
- Fixed "samplingFrequencyFromAudioSpecificConfig()" to remove a memory leak.
1416
1417
2004.07.16:
1418
- Fixed a bug in "AMRAudioRTPSource", in the way that it handled input RTP packets
1419
that contained more than one AMR frame.
1420
(Thanks to Gabriel Bouvigne for reporting this problem.)
1421
- We no automatically reclaim the memory that was allocated for the "UsageEnvironment"
1422
"liveMediaPriv" and "groupsockPriv" structures, once their tables become empty.
1423
1424
2004.07.14:
1425
- Updated "QuickTimeFileSink's" MPEG-4 audio recording mechanism again, this time
1426
to support aacPlus as well as regular AAC.
1427
1428
2004.07.13:
1429
- Updated "QuickTimeFileSink" to support recording MPEG-4 audio (including
1430
hint tracks).
1431
- Modified "MPEG4VideoStreamFramer" to allow simplified subclasses that take
1432
discrete frames as input (and therefore don't need a full parser).
1433
1434
2004.07.07:
1435
- Added the (rather bogus) "a=x-qt-text-nam:" and "a=x-qt-text-inf:" attributes
1436
to the SDP descriptions delivered by "RTSPServer" (in response to a "DESCRIBE"
1437
operation). These attributes get the same strings as the "s=" and "i=" lines
1438
(respectively). However, QuickTime Player doesn't do anything with those lines,
1439
but does recognize the "a=x-qt-*" lines.
1440
1441
2004.07.06:
1442
- Modified the code so that it will build for WinCE.
1443
(Thanks to Gabriel Bouvigne for these changes.)
1444
1445
2004.07.02:
1446
- Fixed a bug in HashTable::RemoveNext() (noted by Greg Bothe)
1447
- Added partial support for recording MPEG-4 audio in "QuickTimeFileSink".
1448
(Hinting is not yet working properly for this media type.)
1449
- Added an option to "MPEG1or2AudioStreamFramer" to allow its presentation times
1450
to be resynchronized by its input source.
1451
1452
2004.06.18:
1453
- Fixed a bug in "MPEG1or2AudioStreamFramer" (in the way it was checking for
1454
syncwords at the start of each frame).
1455
- Updated the "MPEGVideoStreamFramer" (base) class to report "fNumTruncatedBytes".
1456
- Increased "OutPacketBuffer::numPacketsLimit" from 20 to 30.
1457
1458
2004.06.17:
1459
- Another improvement to the "MPEG1or2Demux" parsing code.
1460
- Updated "QuickTimeFileSink" to support recording MPEG-4 video tracks into
1461
".mov" files. (There's also basic support for recording MPEG-4 audio, but
1462
this isn't quite working yet.)
1463
1464
2004.06.14:
1465
- Updated "MPEG1or2Demux" to make the checking for a PACK_START_CODE more
1466
robust if it's not immediately present where we expect to see it.
1467
- Fixed a bug in "JPEGVideoRTPSource" that could cause a problem on
1468
64-bit architectures.
1469
(Thanks to Andrey Filippov for noticing this.)
1470
1471
2004.06.11:
1472
- Removed an error from a error message in StreamParser.
1473
1474
2004.06.09:
1475
- Updated the implementation of the aggregate and non-aggregate RTSP "PLAY"
1476
operations to not include a "Range:" header if the 'start' parameter is < 0.
1477
(This is used when resuming from a "PAUSE", for example.)
1478
Also, removed an unnecessary "Range:" header from the "PAUSE" command.
1479
(Thanks to Gabriel Bouvigne for this suggestion.)
1480
- Reimplemented "MultiFramedRTPSource::doGetNextFrame1()" to use iteration
1481
rather than recursion, in the case where a large frame is fragmented over
1482
multiple incoming RTP packets. This avoids the possibility of stack overflow
1483
occurring if there are very large fragmented frames in the input data.
1484
1485
2004.06.07:
1486
- Added optional "start" and "end" parameters to the aggregate "PLAY" operation
1487
in "RTSPClient". (We had already done this for the non-aggregate "PLAY" operation.)
1488
- Made the input banks buffers in "StreamParser" heap-allocated, rather than making
1489
them member variables. This avoids any potential compiler problems with having
1490
such large structures as member variables.
1491
1492
2004.06.03:
1493
- Added the new 'liveMedia' class "MPEG2TransportFileServerMediaSubsession", for
1494
unicast on-demand streaming of MPEG-2 Transport Stream files.
1495
- Added the new test programs "testMPEG2TransportStreamer" and
1496
"testMPEG1or2ProgramToTransportStream", and added support for Transport File
1497
streaming to "testOnDemandRTSPServer".
1498
(Thanks to DVAgroup Inc. for funding this work.)
1499
1500
2004.06.02:
1501
- Fixed "MediaSession" to no longer apply the normal RTP 'M' bit rule
1502
when processing incoming "video/MP2T" (or "video/MP1S" or "video/MP2P")
1503
streams. (For such streams, the 'M' bit does not mean 'end of frame'.)
1504
1505
2004.06.01:
1506
- Updated "RTSPClient" to handle "Session:" headers that have a trailing
1507
";timeout=" part. (Thanks to Gabriel Bouvigne for suggesting this.)
1508
1509
2004.05.31:
1510
- We now handle SDP "m=" lines with an optional <number-or-ports> field
1511
(although we don't actually do anything with this value). Thanks to
1512
Derk-Jan Hartman for this suggestion.
1513
1514
2004.05.29a:
1515
- Made a correction to the previous change.
1516
1517
2004.05.29:
1518
- Added a call to "DarwinInjector" to set the TCP socket's send buffer to 100 kBytes.
1519
1520
2004.05.28:
1521
- Renamed some variables in "MP3Internals.cpp" (and made them static) to
1522
overcome a name conflict seen by the VLC developers. (Thanks to
1523
Derk-Jan Hartman for pointing this out.)
1524
1525
2004.05.26:
1526
- Fixed a bug (apparently introduced with recent header file changes) that
1527
could cause MP3 files to not be read correctly on Windows. (In particular,
1528
this could cause "testMP3Streamer" to not work correctly on Windows.)
1529
Thanks to David Skiba for the bug report.
1530
1531
2004.05.24:
1532
- Added a new member function "lastReceivedSSRC()" to "RTPSource". This makes it
1533
possible for a receiver to demultiplex incoming RTP data based on SSRC.
1534
(Later this functionality should perhaps be added to "(MultiFramed)RTPSource"
1535
instead.)
1536
- More updates to "DarwinInjector".
1537
1538
2004.05.19:
1539
- Another update to "openRTSP" for a customer job.
1540
1541
2004.05.17:
1542
- Added a new test program "testMPEG4VideoToDarwin.cpp" that is similar
1543
to "testMPEG4VideoStreamer", except that instead of transmitting the
1544
video RTP/RTCP packets via multicast, it transmits them - via a RTSP TCP
1545
connection - to a remote Darwin Streaming Server.
1546
1547
2004.05.12:
1548
- Added a new "liveMedia" class - "DarwinInjector" - that can be used to send an
1549
audio and/or video RTP/RTCP stream to a remote Apple 'Darwin' (aka. QuickTime)
1550
Streaming Server, for playing by (potentially multiple) RTSP clients.
1551
- Added a new test program "testMPEG1or2AudioVideoToDarwin.cpp" that is similar
1552
to "testMPEG1or2AudioVideoStreamer", except that instead of transmitting the
1553
audio/video RTP/RTCP packets via multicast, it transmits them - via a RTSP TCP
1554
connection - to a remote Darwin Streaming Server.
1555
1556
2004.05.09:
1557
- Removed a line of junk that had erroneously been left at the start of Makefile.tail.
1558
- The "testRelay" test program has been reprogrammed in the usual liveMedia
1559
'source->sink' style.
1560
1561
2004.05.07:
1562
- Another update to RTSPClient for a customer job.
1563
1564
2004.05.04:
1565
- Added an #include to "BasicUDPSink.cpp" to prevent a compilation problem on
1566
some platforms.
1567
1568
2004.05.02:
1569
- Some updates to RTSPClient and openRTSP for a customer job.
1570
1571
2004.04.27:
1572
- Fixed the round-trip time estimation routine in "RTPSink" to allow for
1573
the possibility of the computed round-trip time being negative. This can
1574
happen if there is clock drift between the sender and receiver, and if the
1575
actual round-trip time was quite small. If this happens, the returned
1576
round-trip time value is zero.
1577
(Thanks to Dixon Siu for alerting us to this issue.)
1578
1579
2004.04.23:
1580
- Updated some #ifdef's so that the code will compile with "mingw" on Windows.
1581
(Thanks to Joey Parrish for this.)
1582
- Added a "BasicUDPSink" class to "liveMedia", for UDP streaming without RTP.
1583
- Added new 'filter' classes to "liveMedia" for
1584
- converting MPEG Program Streams to Transport Streams.
1585
- 'framing' MPEG Transport Streams to return the 'duration' of each Transport
1586
packet (i.e., the inter-packet time gap).
1587
1588
2004.04.09:
1589
- Fixed a byte-ordering bug in the code for streaming from WAV audio files
1590
(used in "testWAVAudioStreamer" and "testOnDemandRTSPServer"). We were converting
1591
16-bit samples from host to network order before streaming them. That was wrong,
1592
because audio samples are always stored in WAV files in little-endian order.
1593
The correct thing to do was to convert from little-endian to big-endian order.
1594
1595
2004.03.27:
1596
- Fixed a minor bug in the top-level Makefile. (Thanks to Matteo Nastasi for
1597
noting this.)
1598
1599
2004.03.27:
1600
- Modified "H261VideoRTPSource" so that it returns individual packet payloads to
1601
the caller, rather than waiting to form complete frames. Also, added a member
1602
function "lastSpecialHeader()" that returns the 4-byte special header for the
1603
most recently-read payload.
1604
1605
2004.03.23:
1606
- Added support for unicast RTSP/RTP streaming from VOB files, and added an example
1607
of this to "testOnDemandRTSPServer".
1608
1609
2004.03.17:
1610
- Made a series of minor bug fixes and improvements suggested by Sony.
1611
1612
2004.03.15:
1613
- Fixed a bug in "OnDemandServerMediaSubsession" (the RTCP instance was being
1614
deleted at the wrong time). (Thanks to Clark Taylor for noticing this.)
1615
- Minor modifications to the 2004.02.26 "RTPSink" changes.
1616
- Updated the "AMRAudioRTPSource" implementation to support 'bandwidth-efficient'
1617
mode. (Warning: This has not yet been tested.)
1618
1619
2004.03.12:
1620
- Updated the "RTSPClient" class to support an aggregate "PAUSE" operation.
1621
1622
2004.03.11:
1623
- Added an implementation of AMR audio RTP receiving ("AMRAudioRTPSource"), to
1624
match the existing"AMRAudioRTPSink". Also, added a new class "AMRAudioFileSink"
1625
(a subclass of "FileSink") that outputs an AMR audio input stream to a file,
1626
including the file 'magic number' and frame headers. "openRTSP" was also updated
1627
to output received AMR audio streams using "AMRAudioFileSink"s.
1628
(Thanks to SIGOS Systemintegration GmbH for funding this work.)
1629
- Cleaned up the "RTPSource" changes that were made in version 2004.02.26.
1630
1631
2004.03.05:
1632
- Updated the "RTSPServer" implementation to properly handle aggregate
1633
operations for which the URL ends with a "/". Some clients, such as
1634
"gmp4player" do this.
1635
1636
2004.03.03a:
1637
- Fixed a bug in "MultiFramedRTPSource.cpp" where we were not properly
1638
skipping over "contributing source" fields, if they were present in the
1639
RTP header. (Thanks to Phillip Bruce for noticing this.)
1640
1641
2004.03.03:
1642
- Fixed the "testMP3Streamer" test program to keep the RTP sink, RTCP instance,
1643
Groupsocks, and RTSP server (if used) open across all iterations of the loop.
1644
(Thanks to Frank Xia for noticing this problem.)
1645
1646
2004.03.02a:
1647
- The previous version accidentally had the built-in RTSP server enabled in
1648
"testMP3Streamer". It should be disabled by default.
1649
1650
2004.03.02:
1651
- Fixed a few potential errors that were found by running "valgrind" on some of
1652
the test programs (on Linux).
1653
1654
2004.03.01:
1655
- Added two new options to "openRTSP" (and "playSIP"):
1656
"-E <max-inter-packet-gap-time>"
1657
Tells the program to close the stream if no new packets have been
1658
received in at least <max-inter-packet-gap-time> seconds.
1659
"-B <input-socket-buffer-size>"
1660
Tells the program to set the network socket input buffer (for each
1661
input stream) to <input-socket-buffer-size> bytes. (This can be useful
1662
when testing QOS for different input buffer sizes.)
1663
(Thanks to SIGOS Systemintegration GmbH for funding this work.)
1664
1665
2004.02.26:
1666
- Added - to "RTPSink" - a database of statistics from incoming RTCP
1667
"Reception Report" (RR) packets. (This mirrors the similar database
1668
for RTCP SR packets that was already part of "RTPSource".) (Thanks to
1669
Clark Taylor for contributing this code.)
1670
1671
2004.02.23:
1672
- Fixed a bug in "MP3ADUinterleaving.cpp" that was causing frame durations
1673
to not be set properly when handling interleaved MP3 ADUs.
1674
1675
2004.02.20a:
1676
- Corrected a typo in the previous "#ifdef"s
1677
1678
2004.02.20:
1679
- Added "#ifdef"s to the two files that #include <strstream.h>, so that they
1680
will compile OK with GCC v3.*. (Thanks to Goetz Waschk for this.)
1681
- Changed the stream parser debugging statements to make it clear that the
1682
use of C++ language exceptions by the stream parsing code is normal, and
1683
is not an error.
1684
1685
2004.02.19:
1686
- Updated the "RTSPServer" implementation to support RTP-over-TCP streaming
1687
(if requested by the client).
1688
1689
2004.02.13:
1690
- Changed the implementation of the "BasicUsageEnvironment" "operator<<"
1691
member functions so that they use "fprintf(stderr, ..." rather than
1692
"cerr << ...". People compiling in some environments were getting
1693
complaints about "cerr" being undefined (presumably because the right
1694
#include files weren't being found). However, everyone should have
1695
"stdio.h". (Thanks to Clark Taylor for this suggestion.)
1696
- Changed the "genMakefiles" script to complain if the user tries to
1697
run it without an "<os-target"> parameter.
1698
1699
2004.02.09:
1700
- Updated "RTSPServer" once again - this time to ensure that each incoming request
1701
is read completely (i.e., up until the trailing <CR><LF><CR><LF>).
1702
(Thanks to Regis Feneon for helping to fix this.)
1703
- Added a new "WAVAudioFileServerMediaSubsession" class to support on-demand
1704
streaming from WAV audio files. Also, updated the "testOnDemandRTSPServer"
1705
test program to illustrate this.
1706
1707
2004.02.05:
1708
- Updated the "WindowsAudioInputDevice" project to build two different versions
1709
of the library: One that uses Windows' built-in mixer; another that doesn't.
1710
1711
2004.02.04:
1712
- Fixed an obscure bug in "MPEG4ESVideoRTPSink" that could (very rarely)
1713
cause incorrect RTP timestamps to be set for the last fragmented packet
1714
of large MPEG-4 frames. This could cause QuickTime Player's video playback
1715
to freeze.
1716
1717
2004.02.03:
1718
- Added new "liveMedia" classes "MPEG1or2FileServerDemux" and
1719
"MPEG1or2DemuxedServerMediaSubsession" for supporting on-demand RTSP/RTP
1720
streaming of MPEG-1 or 2 Program Stream files. Also, updated the
1721
"testOnDemandRTSPServer" test program to support streaming of such
1722
a file.
1723
- We no longer set SO_REUSEPORT for stream (TCP) sockets, because it usually
1724
doesn't make sense to share TCP ports. (As a side effect, this means that it
1725
will no longer be possible to run more than one RTSP server (using the same
1726
TCP port) simultaneously on the same computer - something that should never have
1727
been possible in the first place.)
1728
- Fixed a minor RTSP server bug that was causing incorrect "destination"s to be set
1729
(for multicast streams) in the "SETUP" response "Transport:" header.
1730
1731
2004.01.28:
1732
- Yet another bug fix to "MPEG4VideoStreamFramer", to properly handle the
1733
case where MPEG-4 "GOV" headers don't occur on exact 'second' boundaries.
1734
(Thanks to Michael Niedermayer (via Michael Hess) for clarifying this.)
1735
1736
2004.01.27:
1737
- Fixed a bug in the previously added (but normally "#ifdef"d out)
1738
debugging code in "MultiFramedRTPSource.cpp".
1739
- Made a fix to the (normally "#ifdef"d out) debugging code in
1740
"AC3AudioStreamFramer.cpp". (Thanks to Yigal for noticing this.)
1741
1742
2004.01.24:
1743
- Changed "openRTSP" to use 20 kByte "FileSink" receive buffers by default,
1744
instead of 10 kBytes. (Some frames in MPEG-4 streams were exceeding the
1745
previous limit.)
1746
- Added code to "MultiFramedRTPSource.cpp" to easily let the developer
1747
simulate packet loss.
1748
1749
2004.01.23:
1750
- Changed "RTSPServer" to include a "Content-Base:" header in "DESCRIBE"
1751
responses. This overcomes a bug in QuickTime Player, which sends incorrect
1752
"SETUP" URLs otherwise.
1753
- Fixed a bug in "MPEG4VideoStreamFramer" that was causing some frames
1754
to erroneously be given a duration of 0.
1755
1756
2004.01.22:
1757
- Made another improvement to the "RTSPServer" implementation. It once again
1758
properly handles streams without a stream name (i.e., where the "streamName"
1759
parameter to "ServerMediaSession::createNew()" was NULL.
1760
- Updated the (little-used) "ByteStreamMultiFileSource" class to take
1761
"preferredFrameSize" and "playTimePerFrame" parameters, just like
1762
"ByteStreamFileSource". Also added a member function to ask whether
1763
a new file has just been read from.
1764
1765
2004.01.21:
1766
- Made several improvements/bugfixes to the "RTSPServer" implementation:
1767
- Worked around an apparent bug in QuickTime Player: It sometimes
1768
doesn't include a proper URL in RTSP "SETUP" requests.
1769
- Corrected the 'frame' (really tick) rate and frame duration that
1770
are computed for 'fixed_vop_rate' MPEG-4 video streams.
1771
- Compensated for some buggy MPEG-4 video streams that don't set
1772
timestamp information properly.
1773
- MPEG-4 video end codes will now be included in the outgoing RTP stream,
1774
and received properly by RTSP clients.
1775
- Fixed "RTSPClient" to be more tolerant of RTSP "Transport:" headers that
1776
contain more than one successive ';' character. (Darwin Streaming Server
1777
sometimes does this.)
1778
1779
2004.01.19:
1780
- Changed "RTSPServer" to not create per-session state when handling
1781
"DESCRIBE", but instead to wait until "SETUP". This fixes a problem
1782
that was causing the "VLC" media player to fail to work with our
1783
"RTSPServer" implementation, because VLC uses one RTSP TCP connection
1784
to do the "DESCRIBE", and then another to do "SETUP" and "PLAY".
1785
(Thanks to Emmanuel Dufour for pointing this out.)
1786
- Updated "MPEG4VideoStreamFramer" to include the VIDEO_SEQUENCE_END_CODE
1787
in the output stream if it sees it in the input.
1788
1789
2004.01.10:
1790
- Fixed the "RTSPServer" implementation to properly return a "server_port" field
1791
in the RTSP "SETUP" response for unicast streams. Also, the server ports
1792
(RTP and RTCP) are now chosen separately, and will no longer be the same
1793
as the client ports if the client and server are running on the same machine.
1794
(That did not work on some Linux systems.)
1795
- Fixed a bug in "MP3ADU" that was causing frame durations to not be set properly
1796
when translating between MP3 frames and ADU frames.
1797
1798
2004.01.09:
1799
- Modified "RTSPClient" to handle embedded NULL characters in a SDP
1800
description. (These are not legal, but they have been seen in some cases.)
1801
1802
2004.01.06:
1803
- Modified the FramedSource 'after getting' function signature to take two new
1804
parameters: (1) The number of bytes (if any) that were truncated from the
1805
delivered data, and (2) The duration (in microseconds) of the delivered frame.
1806
For backwards compatibility with old code, the old 'after getting' function
1807
signature is still supported, but will be removed in some future version of
1808
the code. (The "getPlayTime()" function was also removed.)
1809
1810
2003.12.26:
1811
- Made "FramedFilter" objects implement the "stopPlaying()" function by
1812
also calling "stopPlaying()" on their source object.
1813
- Fixed an obscure bug in "RTSPClient".
1814
1815
2003.12.20:
1816
- Made the "video/H263-2000" MIME type use the same RTP payload format as
1817
"video/H263-1998". (Thanks to Norbert Doneth for suggesting this.)
1818
1819
2003.12.19:
1820
- Fixed a minor bug in "RTSPServer" (some allocated memory wasn't being
1821
freed properly). (Thanks to Konstantin Lunin for finding this.)
1822
1823
2003.12.16:
1824
- Added "-DSOCKLEN_T=socklen_t" to the "COMPILE_OPTS =" line in
1825
the file "config.solaris", so that the code will compile
1826
correctly for 64-bit Solaris systems.
1827
1828
2003.11.25:
1829
- Put some error checks back into "WindowsAudioInputDevice".
1830
1831
2003.11.21:
1832
- Some case-insensitive string comparisons weren't working properly in Windows; fixed.
1833
1834
2003.11.19:
1835
- Added a global Boolean variable to flag when RTP I/O over a TCP connection fails.
1836
This hack allows higher-level code to check for this.
1837
1838
2003.11.16:
1839
- Fixed "RTPInterface" to not infinite loop when trying to read from a TCP
1840
connection that has closed.
1841
- Modified "BasicTaskScheduler" to overcome a bug in Windows that sometimes
1842
causes "select()" to fail.
1843
1844
2003.11.13:
1845
- Made "WindowsAudioInputDevice" a bit more robust against broken audio drivers.
1846
1847
2003.11.06:
1848
- Modified "groupsock/inet.c" to allow the system-supplied "random()" and "srandom()"
1849
functions to be used instead of our own "our_..." implementation.
1850
This is done if USE_SYSTEM_RANDOM is defined (e.g., in the "config.*" file).
1851
1852
2003.11.06:
1853
- Modified the "MPEGVideoStreamParser" constructor, in response to a complaint
1854
that some compilers would choke on the old code.
1855
1856
2003.10.30:
1857
- Added a warning output message to "MultiFramedRTPSink::afterGettingFrame1()"
1858
whenever the input frame appears to exceed the maximum buffer size. This
1859
maximum buffer size can be increased by changing
1860
"OutPacketBuffer::numPacketsLimit".
1861
1862
2003.10.27:
1863
- Changed the "MultiFramedRTPSource" error message (added in 2003.10.04) to apply
1864
only to frame sizes > 1000, so that (e.g.) QCELP RTP sources don't trigger it.
1865
1866
2003.10.24:
1867
- Fixed the RTSP server implementation to put SDP lines in the correct order
1868
(as defined by the SDP speecification). Also, added "Cseq:" lines that were
1869
missing from "404" error responses. (Thanks to Bill May for noting these bugs.)
1870
- Improved the implementation of MPEG-4 video framing and streaming.
1871
1872
2003.10.08:
1873
- Fixed a bug in the previous "FileSink" update that was causing "openRTSP"
1874
to crash when recording a MPEG-4 video stream (using the "-m" option).
1875
(Thanks to Jiangzhou Scu for noticing this bug.)
1876
1877
2003.10.07:
1878
- Updated the "FileSink" class to take an optional Boolean parameter
1879
"oneFilePerFrame". If set, a separate file will be output for each
1880
incoming frame. The frame's presentation time is used as a
1881
file name suffix, to distinguish the files.
1882
- Added a new option "-m" to "openRTSP" (and "playSIP"). This option
1883
causes a separate file to be written for each frame (using the
1884
above-mentioned new feature of "FileSink").
1885
1886
2003.10.05:
1887
- Renamed the new openRTSP/playSIP "-S" option to "-b".
1888
1889
2003.10.04:
1890
- Added an error message to "MultiFramedRTPSource" to report when
1891
the client's receive buffer is too small for an incoming frame.
1892
(This could happen with large JPEG frames, for example.)
1893
- Updated the signature to "FileSink" to take an optional 'buffer size'
1894
parameter as argument. (The default value is 10000.)
1895
- Added a "-S <file-sink-buffer-size>" option to "openRTSP" and "playSIP".
1896
1897
2003.09.30:
1898
Improved the default implementation of
1899
"RTPSink::hasBeenSynchronizedUsingRTCP()" to more accurately report
1900
whether or not the most recently-delivered packet's presentation time
1901
was synchronized using RTCP SRs. (Thanks to Luca Abeni for pointing
1902
out the possibility of a problem with the old implementation.)
1903
1904
2003.09.25:
1905
Improved the support for unicast RTSP/RTP streaming. Also, added a new
1906
test program "testOnDemandRTSPServer" that demonstrates how to use this.
1907
1908
2003.09.19:
1909
- Added support for unicast streaming from a "RTSPServer".
1910
(A test program that demonstrates this will be available shortly.)
1911
(Thanks to TNO Fysisch en Elektronisch Laboratorium (Netherlands)
1912
for funding this work.)
1913
- Modified the "strDup()" function to return NULL (instead of crashing)
1914
if passed a NULL parameter.
1915
1916
2003.09.11:
1917
- Another improvement/bugfix to the "MultiFramedRTPSink"
1918
implementation.
1919
- Changed the implementation of "RTSPServer" and "ServerMediaSession"
1920
in preparation for implementing unicast streaming from RTSP servers.
1921
(This is something that's not ready yet, but close...)
1922
1923
2003.09.05:
1924
Fixed the implementation of "JPEGVideoRTPSource" so that it prepends
1925
a proper JFIF JPEG header to the start of each incoming JPEG frame.
1926
This means that programs such as "openRTSP" and "MPlayer" will now
1927
receive/play JPEG/RTP streams correctly.
1928
1929
2003.09.03:
1930
Improved the implementation of "MultiFramedRTPSink" to more efficiently
1931
handle the case where input frames get broken up into multiple outgoing
1932
RTP packets. We now eliminate an uncessary "memmove()" for each
1933
fragment. In particular, this should make MPEG-1 or 2 and motion-JPEG
1934
video streaming more efficient.
1935
1936
2003.09.01:
1937
- Added support for reading and streaming AMR audio files (as defined in
1938
RFC 3267). Also added a new test program "testAMRAudioStreamer".
1939
(Thanks to TNO Fysisch en Elektronisch Laboratorium (Netherlands) for
1940
funding this work.)
1941
1942
2003.08.28a:
1943
- When "openRTSP" writes out a recorded MPEG-4 Elementary Stream video file,
1944
it now writes SDP 'config' information to the front of the file beforehand.
1945
This 'config' information contains VOL etc. headers that can be useful
1946
for playback.
1947
1948
2003.08.28:
1949
- Added 'framer' and RTP sink classes for MPEG-4 Elementary Stream video.
1950
(Thanks to TNO Fysisch en Elektronisch Laboratorium (Netherlands) for
1951
funding this work.)
1952
- Added a new test program "testMPEG4VideoStreamer".
1953
- Fixed a bug with RTP-over-TCP reading that could cause a crash if the
1954
same TCP socket number gets reused for a later stream. Also, made this
1955
code more thread-safe.
1956
1957
2003.08.21:
1958
Renamed all of the MPEG-1 or 2 class and program names from "MPEG*" to
1959
"MPEG1or2*". This is to distinguish these from the classes and programs
1960
that use MPEG-4.
1961
1962
2003.08.19:
1963
Made the maximum buffer size in "MediaSink.cpp" a parameter that can be
1964
set (changed) at runtime. (Reset the default back to 20* packet size)
1965
1966
2003.08.18:
1967
- Fixed "JPEGVideoRTPSink" to use the standard RTP payload format code
1968
(26) for JPEG RTP streams.
1969
- Updated "MediaSink.cpp" to increase the maximum buffer size for incoming
1970
data. This makes it possible to stream large JPEG frames (which are
1971
fragmented over multiple outgoing RTP packets).
1972
1973
2003.08.16:
1974
- Added new classes "AudioRTPSink" and "VideoRTPSink" as parent classes
1975
of the various audio and video RTP sink classes, respectively.
1976
- Added a new "JPEGVideoRTPSink" class, and a "JPEGVideoSource" class
1977
that can be used as an abstract base class for particular JPEG sources.
1978
1979
2003.08.07:
1980
Minor change to "MediaSink".
1981
1982
2003.07.29:
1983
Updated "RTSPClient" to include a "tearDownMediaSession()" operation,
1984
in addition to "tearDownMediaSubsession(). "openRTSP" now uses just
1985
the "tearDownMediaSession()" operation. (Darwin Streaming Server was
1986
barfing with "tearDownMediaSubsession()"). Thanks to Edward Estabrook
1987
for suggesting this.
1988
1989
2003.07.27:
1990
Added a new "-F <fileName-prefix>" option to "openRTSP" (and "playSIP").
1991
This can be useful if you are running "openRTSP" several times,
1992
in the same directory, to play several different RTSP streams
1993
(e.g., from a script). (Thanks to Norbert Donath for this suggestion.)
1994
1995
2003.07.14:
1996
Updated the "WAVAudioFileSource" implementation (and the
1997
"testWAVAudioStreamer" test program) to better report any reason for
1998
a WAV file to be invalid.
1999
2000
2003.07.13:
2001
- Added new filter classes for converting between 16-bit PCM and
2002
8-bit u-law audio, and between host and network order for 16-bit values.
2003
(See "liveMedia/include/uLawAudioFilter.hh" for details.)
2004
- Added a new class "WAVAudioFileSource" for reading/processing
2005
WAV audio files.
2006
- Added a new test program "testWAVAudioStreamer" that reads a WAV
2007
audio file - "test.wav" - and streams it via multicast (using a built-in
2008
RTSP server).
2009
- Updated "MediaSession" to recognize "L8" and "L16" RTP audio streams
2010
(to be handled by "SimpleRTPSource").
2011
2012
2003.07.07:
2013
- Fixed a bug that would cause "vobStreamer" to crash if (incorrectly)
2014
run with no arguments.
2015
- Updated the "test*Streamer" test programs to print out the "rtsp://"
2016
URL of the built-in RTSP server (if it's enabled).
2017
2018
2003.07.01a:
2019
Updated the "WindowsAudioInputDevice" subdirectory to:
2020
- Change the name of the library from "WindowsAudioInputDevice.lib" to
2021
"libWindowsAudioInputDevice.lib".
2022
- Added a console test program - "showAudioInputPorts" - that lists
2023
the audio input ports that are currently available.
2024
2025
2003.07.01:
2026
Added a new subdirectory "WindowsAudioInputDevice", which is a
2027
Windows-specific implementation of the "AudioInputDevice" class.
2028
This can be used by Windows applications to read PCM audio from
2029
a sound card.
2030
2031
2003.06.28:
2032
Added an optional parameter (default, True) to "SimpleRTPSource"
2033
that says whether to use the RTP "M" (marker) bit to indicate the
2034
last (or only) fragment of a video frame. (Suggested by
2035
Cezar Plesca.)
2036
2037
2003.06.27:
2038
Added a "AudioDeviceSource" class to the "liveMedia" library.
2039
This class is a generic audio input device (such as a microphone
2040
or a sound card) - to be subclassed for specific OS platforms.
2041
2042
2003.06.26:
2043
- Updated the "RTSPServer" implementation to respond to "PAUSE"
2044
requests. (It doesnt actually pause the stream; just returns "OK".
2045
This makes QuickTime Player happier.)
2046
- Added a "-o" option to "openRTSP" (and modified "RTSPClient"
2047
accordingly). This option causes openRTSP to send an "OPTIONS" command
2048
to the server, and prints out the response.
2049
2050
2003.06.17:
2051
Added support for MPEG-4 generic RTP sinks. (Currently, only the
2052
"AAC-hbr" audio mode is supported, and only one AAC frame is packed
2053
into each outgoing RTP packet.)
2054
2055
2003.06.13:
2056
- Fixed a bug in "ServerMediaSubsession" that could cause a memory leak.
2057
(Thanks to Frederik Bonte for finding this.)
2058
2059
2003.06.07:
2060
- Fixed a minor bug in "MPEGVideoRTPSink": The RTP "M" bit is now set
2061
only on the last fragment, if a frame is fragmented. (Thanks to
2062
Tym Altman for pointing this out.)
2063
- Improved support for AudioRTPSinks that have more than one audio channel.
2064
2065
2003.05.31:
2066
Fixed a bug in "SimpleRTPSink" that would cause it to not generate correct
2067
RTP timestamps on outgoing packets.
2068
2069
2003.05.29:
2070
Fixed a bug in "RTSPServer" that would cause it to get into an infinite
2071
loop if a client's connection was terminated unexpectedly.
2072
2073
2003.05.28:
2074
Fixed some typos in comments.
2075
2076
2003.05.23:
2077
Some minor changes to reduce the number of bogus warning messages
2078
displayed when compiling using Visual C++.
2079
2080
2003.05.22b:
2081
Fixed a bug in "SIPClient" (thanks to Reini Urban for helping track this
2082
down).
2083
2084
2003.05.22a:
2085
Fixed a couple more minor bugs that were causing "valgrind" to complain.
2086
2087
2003.05.22:
2088
Fixed a bug in "SIPClient" (a field was not getting initialized properly)
2089
2090
2003.05.21:
2091
- Because not all platforms define 'errno' the same way, 'errno' is now
2092
implemented as a pure virtual function "getErrno()" in
2093
"UsageEnvironment". "BasicUsageEnvironment" defines this function to
2094
just return "errno", but other subclasses could implement it in other
2095
ways.
2096
- Added support for setting and reading information in "RTP-Info:"
2097
headers in RTSP "PLAY" response. (Thanks to Romulus Grigoras for
2098
contributing this.)
2099
2100
2003.05.19:
2101
Fixed a bug in "SIPClient" that could cause a crash. (Thanks to
2102
Reini Urban for finding this.)
2103
2104
2003.05.16:
2105
- Removed all calls to "fprintf(stderr, ...)" and "cerr << ..." from
2106
the library code. Instead, we now use "operator<<" virtual functions
2107
that are defined on the "UsageEnvironment". "BasicUsageEnvironment"
2108
defines these by outputting to "cerr", but other subclasses of
2109
"UsageEnvironment" can define them to do console output whichever
2110
way they wish.
2111
2112
2003.05.15:
2113
- Moved the "select()" call in "readSocket()" (GroupsockHelper.cpp) into
2114
a separate function, to allow it to be easily reimplemented
2115
if desired.
2116
- More minor changes to "RTPSource" stats handling, and the "-Q" option
2117
to "openRTSP"/"playSIP".
2118
2119
2003.05.12:
2120
- Restructured "BasicTaskScheduler" as two hierarchical classes:
2121
"BasicTaskScheduler0" (an abstract base class), and
2122
"BasicTaskScheduler".
2123
This makes it easier to subclass (e.g., to reimplement "SingleStep").
2124
A subclass reimplementation would use "BasicTaskScheduler0".
2125
- Removed "our_bcopy()", and use "memmove()" instead, because everyone
2126
seems to implement that.
2127
- Fixed a bug in "RTPSource" that could cause packet loss stats to be
2128
reported incorrectly if the first RTP sequence number received was 0.
2129
2130
2003.05.06:
2131
Minor changes to the "openRTSP" QOS stats reports.
2132
2133
2003.05.05:
2134
Changed the "start" and "end" parameters to
2135
"RTSPClient::playMediaSubsession()" from int to float, for increased
2136
granularity. (Suggestion by Cezar Plesca.)
2137
2138
2003.05.03:
2139
- Added support for pausing/resuming to "RTSPClient".
2140
(Thanks to Romulus Grigoras for contributing this.)
2141
- Fixed a couple of bugs in "SIPClient".
2142
2143
2003.04.28:
2144
- Cleaned up and improved the "DelayQueue" implementation.
2145
(This time it works properly, I hope.)
2146
2147
2003.04.27:
2148
- Temporarily backed out the previous change to "DelayQueue", because it
2149
broke MPEG video streaming (causing it to play too slowly).
2150
2151
2003.04.26:
2152
- Made "DelayQueue" a little more accurate, by adjusting for the time
2153
that has elapsed since the last alarm, when adding a new entry to the queue.
2154
- Fixed a bug in "RTPSource" that could cause packet loss statistics to not
2155
be reported accurately (in RTCP) if incoming packets were misordered.
2156
- Updated "openRTSP" and "playSIP" to take a new "-Q" option, which
2157
prints out QOS data at the end of the session.
2158
2159
2003.04.24:
2160
- Added a mechanism for registering an optional, auxilliary read handler
2161
with a "RTPSource" or "RTCPInstance". Such a handler would get called
2162
after each new packet is read.
2163
- Changed "SimpleRTPSink" to (by default) set the RTP "M" bit on
2164
video streams iff the packet contains the last (or only) fragment of
2165
a frame.
2166
2167
2003.04.23:
2168
- More improvements/fixes to the handling of SSM sessions.
2169
- Fixed a bug in RTSPServer that could cause a crash if the client
2170
quit suddenly.
2171
2172
2003.04.20:
2173
- Updated "MediaSession" to recognize
2174
a=source-filter: incl ...
2175
lines in SDP descriptions (for SSM sessions), and to do the appropriate
2176
SSM-style multicast joins in this case (and also to send back RTCP via
2177
unicast).
2178
- Updated the RTCP implementation to reflect incoming unicast RTCP packets
2179
back to the multicast group in the case where we're a SSM source.
2180
- Update "vobStreamer" and the various "test*Streamer" test programs to
2181
properly behave as SSM sources, when we have specified this.
2182
2183
2003.04.18:
2184
- Updated the "*ServerMediaSession" classes to (optionally) output
2185
SSM-specific information in SDP descriptions.
2186
- Updated "vobStreamer" to choose a random multicast address in the SSM
2187
range.
2188
2189
2003.04.12:
2190
- Fixed "MPEGVideoStreamFramer" to allow for the possibility of
2191
the GOP "time_code" field remaining unchanged in the source stream.
2192
- Elimination of more unnecessary global variables.
2193
2194
2003.04.11:
2195
- Added support for an optional user name and password inside a RTSP
2196
or SIP URL.
2197
- The media lookup table (used in "Media.cpp") is now allocated
2198
dynamically, and stored in the "UsageEnvironment", rather than
2199
being a global variable.
2200
This makes it possible to have different threads, within the same
2201
address spaces, accessing the library code.
2202
(Each thread would need to have its own "UsageEnvironment" and
2203
"TaskScheduler", though.)
2204
2205
2003.04.09:
2206
Changed "BasicTaskScheduler::SingleStep()" to execute only one delay
2207
queue task (along with any data input events) during each iteration.
2208
This prevents a possible livelock if the delay queue always has events
2209
outstanding. (Thanks to Ruth Sadler for pointing this out.)
2210
2211
2003.04.04:
2212
- More improvements to "vobStreamer" (which has also been renamed
2213
from "VOBStreamer".
2214
2215
2003.04.02:
2216
- Made another change to the order that things are closed when exiting
2217
"openRTSP", to help avoid a potential race condition that can occur
2218
when using the "-t" option. (Thanks to Romulus Grigoras for reporting
2219
this.)
2220
- Updated "MPEGDemux" to properly handle the case where someone tries
2221
to read from it after its input source has already closed.
2222
- Several improvements to "VOBStreamer".
2223
- Added "ByteStreamMultiFileSource" to the "liveMedia" library.
2224
This generalizes "ByteStreamFileSource" to allow more than one input
2225
file to be read, in sequence.
2226
2227
2003.04.01:
2228
Fixed a bug in "openRTSP" that could cause it to crash when exiting
2229
(if the "-t" option was used).
2230
2231
2003.03.31:
2232
Added a new test program "VOBStreamer" to "testProgs".
2233
This program reads a "VOB" file (e.g., from a non-encrypted DVD),
2234
and streams the component video (MPEG) and audio (AC3) component streams
2235
using RTP multicast.
2236
(Online documentation to follow...)
2237
2238
2003.03.30:
2239
Added "AC3AudioRTPSource" and "AC3AudioRTPSink".
2240
2241
2003.03.28:
2242
- Fixed a bug in "MPEGVideoStreamFramer" that would cause it to generate
2243
incorrect presentation times if the MPEG video stream started out with
2244
a non-zero 'time_code'.
2245
- Updated "AC3AudioStreamFramer" to allow clients to get the stream's
2246
sampling rate before it reads the first frame.
2247
2248
2003.03.25:
2249
Began adding support for AC3 audio/RTP streaming.
2250
2251
2003.03.22:
2252
Added support for receiving H.261/RTP streams
2253
2254
2003.03.14:
2255
- Removed calls to "strdup()", because that's a C-library function whose
2256
result should not be deleted using "delete" (or "delete[]"). Instead,
2257
we now provide our own C++ equvalent, called "strDup()".
2258
- Also, changed several "delete"s to "delete[]".
2259
(Thanks to Bill Kain for noting the need for this fix.)
2260
2261
2003:03;11:
2262
Updated SIPClient to allow it to use an arbitrary source port number.
2263
This makes it possible to use it on the same host on which a SIP server
2264
is already running.
2265
2266
2003.03.09:
2267
- Made "MediaSession"s parsing of SDP descriptions more robust, to allow for
2268
blank lines in the SDP description. ("Be liberal in what you accept...")
2269
2270
2003.03.07:
2271
- Added an optional "MIME subtype" parameter to "SIPClient", to allow
2272
SIP "INVITE"s to use a dynamic RTP payload format. Updated "playSIP"
2273
accordingly, to add an optional "-D <mime-subtype-name>" argument.
2274
- Modified "FileSink" to close the source (and stop playing) if it gets
2275
an EOF when writing to the output file. (Thanks to Ruud Schramp.)
2276
2277
2003.03.03:
2278
Improved the implementation of "MPEG4GenericRTPSource".
2279
2280
2003.02.28:
2281
- Fixed a bug that would cause RTSP clients to not set the server port
2282
number (for RTCP) correctly in some situations. (Thanks to Alex Pollard.)
2283
- Fixed a bug in "RTSPServer" that would cause "Transport:" headers to not
2284
get generated correctly.
2285
2286
2003.02.27:
2287
- Improved the "MultiFramedRTPSource" implementation to more cleanly handle
2288
packet loss in the case where frames are split into multiple RTP packets.
2289
- Parsed the optional "/<num-channels>" parameter that can appear at the
2290
end of "a=rtpmap:" lines for audio sessions.
2291
2292
2003.02.17:
2293
More work on the experimental '-R <rtsp-url>' option to "playSIP"
2294
(and "openRTSP") that allows it to inject the incoming stream into
2295
a separate RTSP server. This code is now working, although
2296
currently only for a single PCMU or GSM audio stream. Also, RTCP
2297
packets are not yet relayed between the source and destination.
2298
2299
2003.02.16:
2300
Improved RTSPClient and SIPClient to check for (and discard)
2301
any '\r' or '\n' that appears at the start of a response message.
2302
(Some weirdo servers can do this.)
2303
2304
2003.02.10:
2305
Began adding a new option to "playSIP" (and "openRTSP") to allow the
2306
incoming media stream to be injected into a separate, destination
2307
RTSP server. This still needs lots of work...
2308
2309
2003.02.08:
2310
Fixed the "JPEGVideoRTPSource" implementation to properly prepend a
2311
synthesized JPEG header to each received frame of RTP data. This now
2312
makes it possible to receive and play motion-JPEG RTP streams.
2313
2314
2003.02.06a:
2315
- Fixed a bug in the SDP "config" attribute parsing. (This affected
2316
the use of "MPEG4LATMAudioRTPSource".
2317
- Cleaned up the "createNew()" routines in each of the *RTPSource classes.
2318
- Added two new RTPSource classes - "MPEG4ESVideoRTPSource" and
2319
"MPEG4GenericRTPSource", for MPEG-4. However, these have not been
2320
fully implemented yet.
2321
2322
2003.02.06:
2323
Fixed some code that was 64-bit-unsafe. (Thanks to Philipp Thomas for
2324
noticing this.)
2325
2326
2003.02.05:
2327
- Cleaned up "RTSPClient", and added a method for doing an aggregate
2328
"PLAY" operation (in addition to the existing method that does a
2329
"PLAY" on an individual subsession).
2330
- Modified the "openRTSP" test program so that it does a single
2331
aggregate "PLAY", rather than a series of non-aggregate "PLAY"s, one for
2332
each subsession. (RealNetworks' server doesn't support the latter.)
2333
- Added a new routine for parsing "AudioSpecificConfig" strings that
2334
can appear in SDP descriptions.
2335
- Added Morgan Multimedia's implementation of "JPEGVideoRTPSource"
2336
to the "liveMedia" library. (I haven't yet tested this.)
2337
2338
2003.02.04:
2339
Removed "-DUSE_OUR_BZERO=1" from "config.linux", because it no longer
2340
seems to be necessary, and it was breaking compilation for some people.
2341
2342
2003.02.03b:
2343
Added an #include to "BasicUsageEnvironment/Lock.cpp" to fix a problem
2344
that someone encountered with NULL not being defined.
2345
2346
2003.02.03a:
2347
Created a new header file "groupsock/include/NetCommon.h" that contains
2348
all networking-related #includes. This also does the correct #includes
2349
for Windows, allowing Windows code to use Winsock-2 rather than Winsock-1.
2350
Also, modified "win32config" to use a "TARGETOS" of WINNT rather than
2351
WIN95, to make this all work.
2352
2353
Thanks to Doug Kosovic for figuring out the magic incantations
2354
needed to get this all working.
2355
2356
2003.02.03:
2357
- Improved "SIPClient" (in the "liveMedia") library, so that "INVITE"
2358
requests are retransmitted, as necessary, for reliability.
2359
- Added a "-A <rtp-payload-format>" option to "playSIP". This allows the
2360
user to specify which audio RTP payload format should be received.
2361
(At present only static payload formats can be specified, and only
2362
audio codecs - not video.)
2363
2364
2003.01.28:
2365
- Added support (in the "liveMedia" library) for a basic SIP client
2366
- Added a new test program "playSIP", similar to "openRTSP". These two
2367
applications are now built from the same code base.
2368
2369
2003.01.17:
2370
Further improvements to the MPEG-4 audio support. We can now read
2371
(from the "MediaSubsession") the StreamMuxConfig "config" stream that
2372
was present in the SDP description. Also added a routine that parses
2373
such a string, producing binary "AudioSpecificConfig" data.
2374
(See "MPEG4LATMAudioRTPSource.cpp" for details.)
2375
2376
2003.01.16:
2377
Improved support for receiving MPEG-4 LATM audio. Note that currently,
2378
this works only for streams that do not have a StreamMuxConfig present
2379
in the stream.
2380
2381
2003.01.10:
2382
Added basic support for MPEG-4 LATM audio.
2383
2384
2002.12.21:
2385
Fixed a bug in the previous update to "QuickTimeFileSink"
2386
2387
2002.12.20:
2388
- Another change to "QuickTimeFileSink", again to change the way that track
2389
durations are computed for ".mov" files. Now, each track's duration is
2390
set to be the maximum of (i) the sum of the sample durations listed
2391
in the 'stts' atom, and (ii) the the sum of the durations listed in the
2392
track's 'edit list' (if any).
2393
- Updated the MP3 file parsing code to check for a 'Xing' VBR header in
2394
the first frame. ("liveCaster" can use this information to print more
2395
sensible information about each file that it streams.)
2396
2397
2002.12.10:
2398
Yet another change to "QuickTimeFileSink", this time to make sure that
2399
the duration of video tracks corresponds exactly to the sum of video
2400
sample durations listed in the 'stts' atom.
2401
2402
2002.11.30:
2403
Renamed "TaskScheduler::blockMyself()" to "doEventLoop()", to better
2404
describe what this member function actually does.
2405
2406
2002.11.25:
2407
Another change to "QuickTimeFileSink". Now, when synchronzed tracks
2408
are requested, the durations of video frame samples are adjusted so
2409
that they correspond to actual RTP presentation times. (This is not
2410
done for audio samples, however, because having audio samples vary
2411
in duration might break audio codecs.)
2412
2413
2002.11.22:
2414
Updated "QuickTimeFileSink" once again - this time to add more statistics
2415
to the 'udta'/'hinf' atom for each generated hint track.
2416
2417
2002.11.18:
2418
Modified the support for creating hint tracks in "QuickTimeFileSink" so
2419
that it it now works properly for H.263+ video sessions.
2420
2421
2002.11.15:
2422
- Made a small modification to "groupsock/GroupsockHelper.hh" to ensure that
2423
it compiles on all platforms.
2424
- Modified "MP3FileSource" so that it can handle layer I or layer II files,
2425
as well as layer III (MP3).
2426
2427
2002.11.14:
2428
Updated "QuickTimeFileSink" to support (optional) hint tracks in output
2429
QuickTime files. Also added a "-H" option to "openRTSP" that
2430
(when used with "-q") will add hint tracks to the output ".mov" file.
2431
(Note that the hint tracks currently don't work well for H.263+ video
2432
tracks, and currently don't work at all for QCELP.)
2433
2434
2002.11.04:
2435
Updated the expiration date in "openRTSP.cpp"
2436
2437
2002.10.22:
2438
- Undid the previous change. The top-level Unix Makefile now does
2439
cd <dir> ; make
2440
once again. Unfortunately "--directory" doesn't seem to work properly
2441
with the version of "make" that's installed with FreeBSD.
2442
- Changed the implementation of the "-n" option in "openRTSP". If "-y"
2443
is also specified, then the user will be notified only if (i) data has
2444
arrived for all subsessions, and (ii) all subsessions have been
2445
synchronized.
2446
2447
2002.10.21:
2448
Changed the top-level Unix Makefile to do
2449
make --directory=<dir>
2450
rather than
2451
cd <dir>; make
2452
as the latter apparently didn't work with cygwin.
2453
(Thanks to "Sycotic" Smith for the tip.)
2454
2455
2002.10.20:
2456
- Updated "QuickTimeFileSink" once again to improve the implementation of
2457
synchronized audio/video tracks in output QuickTime files.
2458
- Added a configuration file for "cygwin". (Thanks to "Sycotic" Smith
2459
for working on this.)
2460
2461
2002.10.19:
2462
Updated "QuickTimeFileSink" to use QuickTime Edit Lists to synchronize
2463
the media tracks. (It appears that this does not always produce playable
2464
QuickTime files, so this implementation may have to be changed later.)
2465
2466
2002.10.11:
2467
Fixed a bug in "MultiFramedRTPSource" that could cause a RTP receiver to
2468
hang if it received a malformed RTP packet with no data after a special,
2469
media-specific header.
2470
2471
2002.10.10:
2472
Fixed the "RTSPClient" implementation so that it now understands
2473
"Content-Length" as well as "Content-length". (This now allows it
2474
to work with our own RTSP server implementation once again!)
2475
2476
2002.10.07:
2477
Improved the implementation of RTP (and RTCP) reception to eliminate an
2478
unnecessary "memmove()" each time a packet is received.
2479
2480
2002.10.04:
2481
Updated the "liveMedia" library to support optionally sending and receiving
2482
RTP and RTCP packets over a TCP connection (e.g., the TCP connection used
2483
for a RTSP session). Also, updated the "openRTSP" test program to take
2484
an optional "-t" argument, meaning: stream over TCP.
2485
2486
2002.10.01:
2487
Fixed the modification to "MultiFramedRTPSource" that was made in the
2488
2002.08.29 release, and also made a corresponding change to
2489
"QuickTimeFileSink", so that it now correctly records H.263+/RTP streams
2490
once again.
2491
2492
2002.09.30:
2493
- Removed the "Media::addNew()" member function, because it was always
2494
called each time a new Media object was created. Instead, its
2495
function was just moved into the Media::Media() constructor.
2496
- Made another fix to "testMPEGAudioVideoStreamer".
2497
2498
2002.09.28:
2499
Fixed a bug in "testMPEGAudioVideoStreamer" that could cause a crash when
2500
its input file was being read for the 2nd or more time. (Also updated
2501
"liveMedia/FramedSource.cpp".)
2502
2503
2002.09.27:
2504
Updated "QCELPAudioRTPSource" so that "hasBeenSynchronizedUsingRTCP()"
2505
returns True only after a full interleave cycle of RTP packets has been
2506
received. This ensures that when it returns true, the receiver will
2507
be reading a frame that came from a synchronized RTP packet.
2508
2509
2002.09.26:
2510
- Fixed QCELPAudioRTPSource so that it now returns correct presentation
2511
timestamps on each frame that is read from it (even if the input data
2512
was interleaved).
2513
- Updated QuickTimeFileSink to correctly write ".mov" files for half-rate
2514
QCELP audio tracks.
2515
2516
2002.09.25:
2517
Added a new test program - "sapWatch" - that reads and prints SDP/SAP
2518
announcements (sent to the default SDP/SAP directory)
2519
2520
2002.09.24:
2521
- Fixed a bug in "QCELPAudioRTPSource"
2522
- The RTCP implementation now properly recognizes incoming RTCP
2523
reports from other processes on the same computer. (Previously, these
2524
would be rejected as being loop-back packets.)
2525
2526
2002.09.19:
2527
- Updated "RTPSource"s so that an accurate "presentationTime" variable
2528
is now returned whenever a client reads from such a source. These times
2529
are kept accurate by RTCP "Sender Report" packets sent by the sender.
2530
2531
2002.09.13:
2532
- Improved the "BasicHashTable" implementation so that it's
2533
no longer a quick-and-dirty hack.
2534
- Changed the parameter signature to "ByteStreamFileSource" so that the
2535
"playTimePerFrame" parameter is now an unsigned (microseconds) instead
2536
of a float. This eliminates a round-off problem.
2537
2538
2002.09.11:
2539
Modified "ByteStreamFileSource::doGetNextFrame()" so that - if the
2540
"playTimePerFrame" parameter was set - the presentation time gets set
2541
based on this, rather than the current 'wall clock' time.
2542
2543
2002.09.06:
2544
Updated "win32config.Borland" based on feedback by Vesselin Kostadinov.
2545
(Also updated an #ifdef in "liveMedia/include/Media.hh")
2546
2547
2002.09.05:
2548
Added code to ignore an "EAGAIN" error on a 'groupsock' read.
2549
(This can happen in Linux.)
2550
2551
2002.09.03:
2552
Fixed a bug in the RTSP server implementation that could
2553
have caused a memory smash.
2554
2555
2002.08.30:
2556
Added header files containing version strings (and corresponding integers)
2557
for each library. Client code can use these to print out version
2558
information, or check for version compatibility.
2559
2560
2002.08.29:
2561
Modified "MultiFramedRTPSource" and its subclasses to properly handle
2562
the case where a frame is fragmented over several successive incoming
2563
RTP packets. Each subclass's implementation of "processSpecialHeader()"
2564
can choose between having incomplete fragments returned immediately to
2565
the client (the default behavior), or waiting until all of the fragments
2566
have arrived. The implementation of "H263plusVideoRTPSource" was changed
2567
to do the latter (because the current "ffmpeg" H.263+ decoder relies upon
2568
getting complete frames for input).
2569
2570
Added an optional "applicationName" parameter to "RTSPClient::createNew()",
2571
and updated the RTSP client implementation to add a "User-Agent:" field,
2572
which will contain this "applicationName" string (if present).
2573
2574
2002.08.27:
2575
Added an optional Boolean parameter "iFramesOnly" to
2576
"MPEGVideoStreamFramer::createNew()". If this parameter is True,
2577
then the framer object will return only data from "I" frames.
2578
(By default, this parameter is False, meaning that all frames will
2579
be returned.) This parameter can be used to reduce the bandwidth
2580
of streamed MPEG (1 or 2) video.
2581
2582
2002.08.06:
2583
Changed "groupsock/GroupsockHelper.cpp" to do a "#include <errno.h>"
2584
rather than "extern int errno". The latter was apparently breaking in
2585
some versions of Linux.
2586
2587
2002.08.05:
2588
Added support for the video/MP2P MIME type (RFC 2250 MPEG Program Streams)
2589
2590
2002.06.25:
2591
Source file distribution copied from live.sourceforge.net
2592