]> git.sesse.net Git - casparcg/blob - CHANGELOG
[CHANGELOG] Updated.
[casparcg] / CHANGELOG
1 C H A N G E S\r
2 \r
3 CasparCG 2.1.0 Next (w.r.t 2.1.0 Beta 1)\r
4 ========================================\r
5 \r
6 General\r
7 -------\r
8 \r
9   o Fail early with clear error message if configured paths are not\r
10     creatable/writable.\r
11   o Added backwards compatibility (with deprecation warning) for using\r
12     thumbnails-path instead of thumbnail-path in casparcg.config.\r
13   o Suppress the logging of full path names in stack traces so that only the\r
14     relative path within the source tree is visible.\r
15   o General stability improvements.\r
16   o Native thread id is now logged in Linux as well. Finally they are mappable\r
17     against INFO THREADS, ps and top.\r
18   o Created automatically generated build number, so that it is easier to see\r
19     whether a build is newer or older than an other.\r
20   o Changed configuration element mipmapping_default_on to mipmapping-default-on\r
21     for consistency with the rest of the configuration (Jesper Stærkær).\r
22   o Handle stdin EOF as EXIT.\r
23   o Added support for RESTART in Linux startup script run.sh.\r
24   o Copy casparcg_auto_restart.bat into Windows releases.\r
25   o Fixed bug with thumbnail generation when there are .-files in the media\r
26     folder.\r
27   o Removed CMake platform specification in Linux build script\r
28     (Krzysztof Pyrkosz).\r
29 \r
30 Consumers\r
31 ---------\r
32 \r
33   o FFmpeg consumer:\r
34     + Fixed long overdue bug where HD material was always recorded using the\r
35       BT.601 color matrix instead of the BT.709 color matrix. RGB codecs like\r
36       qtrle was never affected but all the YCbCr based codecs were.\r
37     + Fixed bug in parsing of paths containing -.\r
38   o DeckLink consumer:\r
39     + Fixed possible dead-lock in frame queue.\r
40 \r
41 Producers\r
42 ---------\r
43 \r
44   o FFmpeg producer:\r
45     + Increased the max number of frames that audio/video can be badly\r
46       interleaved with (Dimitry Ishenko).\r
47     + Fixed bug where decoders sometimes requires more than one video packet to\r
48       decode the first frame.\r
49     + Added support for IN and OUT parameters (Dimitry Ishenko).\r
50   o Framerate producer:\r
51     + Fixed bug when INFO was used on a not yet playing framerate producer.\r
52   o HTML producer:\r
53     + Fixed bug where only URL:s with . in them where recognized.\r
54   o Image producer:\r
55     + Added LENGTH parameter to allow for queueing with LOADBG AUTO.\r
56 \r
57 Mixer\r
58 -----\r
59 \r
60   o Fixed bug in the contrast/saturation/brightness code where the wrong luma\r
61     coefficients was used.\r
62   o Rewrote the chroma key code to support variable hue, instead of fixed green\r
63     or blue. Threshold setting was removed in favour of separate hue width,\r
64     minimum saturation and minimum brightness constraints.\r
65   o Fixed bug where glReadPixels() was done from the last drawn to texture\r
66     instead of always from the target texture. This means that for example a\r
67     MIXER KEYER layer without a layer above to key, as well as a separate alpha\r
68     file with MIXER OPACITY 0 now works as expected.\r
69 \r
70 AMCP\r
71 ----\r
72 \r
73   o INFO PATHS now adds all the path elements even if they are using the default\r
74     values.\r
75   o MIXER CHROMA syntax deprecated (still supported) in favour of the more\r
76     advanced syntax required by the rewritten chroma key code.\r
77   o Added special command REQ that can be prepended before any command to\r
78     identify the response with a client specified request id, allowing a client\r
79     to know exactly what asynchronous response matched a specific request.\r
80   o Added support for listing contents of a specific directory for CLS, TLS,\r
81     DATA LIST and THUMBNAIL LIST.\r
82   o Fixed bug where CINF only returned the first match.\r
83 \r
84 \r
85 \r
86 CasparCG 2.1.0 Beta 1 (w.r.t 2.0.7 Stable)\r
87 ==========================================\r
88 \r
89 General\r
90 -------\r
91 \r
92   o 64 bit!\r
93   o Linux support!\r
94     + Moved to CMake build system for better platform independence.\r
95       + Contributions before build system switch (not w.r.t 2.0.7 Stable):\r
96         + gitrev.bat adaptions for 2.1 (Thomas Kaltz III).\r
97     + Thanks to our already heavy use of the pimpl idiom, abstracting platform\r
98       specifics was easily done by having different versions of the .cpp files\r
99       included in the build depending on target platform. No #ifdef necessary,\r
100       except for in header only platform specific code.\r
101     + Flash, Bluefish and NewTek modules are not ported to the Linux build.\r
102     + Contributions during development (not w.r.t 2.0.7 Stable):\r
103       + Fixed compilation problems in Linux build (Dimitry Ishenko).\r
104       + Fixed compilation problem in GCC 5 (Krzysztof Pyrkosz).\r
105       + Fixed thumbnail image saving on Linux (Krzysztof Pyrkosz).\r
106       + Fixed compilation problem in PSD module (Krzysztof Pyrkosz).\r
107   o Major code refactoring:\r
108     + Mixer abstraction so different implementations can be created. Currently\r
109       CPU mixer and GPU mixer (previously the usage of the GPU was mandatory)\r
110       exists.\r
111     + Flattened folder structure for easier inclusion of header files.\r
112     + Many classes renamed to better describe the abstractions they provide.\r
113     + Sink parameters usually taken by value and moved into place instead of\r
114       taken by const reference as previously done.\r
115     + Old Windows specific AsyncEventServer class has been replaced by platform\r
116       independent implementation based on Boost.Asio.\r
117     + Pimpl classes are now stack allocated with internal shared_ptr to\r
118       implementation, instead of both handle and body being dynamically\r
119       allocated. This means that objects are now often passed by value instead\r
120       of via safe_ptr/shared_ptr, because they are internally reference counted.\r
121     + Protocol strategies are now easier to implement correctly, because of\r
122       separation of state between different client connections.\r
123     + Complete AMCP command refactoring.\r
124     + On-line help system that forces the developer to document AMCP commands,\r
125       producer syntaxes and consumer syntaxes making the documentation coupled\r
126       to the code, which is great.\r
127       + Added missing help for VERSION command (Jesper Stærkær).\r
128     + Upgraded Windows build to target Visual Studio 2015 making it possible to\r
129       use the C++11 features also supported by GCC 4.8 which is targeted on\r
130       Linux.\r
131       + Fixed compilation problems in Visual Studio 2015 Update 1\r
132         (Roman Tarasov)\r
133     + Created abstraction of the different forms of templates (flash, html, psd\r
134       and scene). Each module registers itself as a CG producer provides. All CG\r
135       commands transparently works with all of them.\r
136     + Audio mixer now uses double samples instead of float samples to fully\r
137       accommodate all int32 samples.\r
138     + Reduced coupling between core and modules (and modules and modules):\r
139       + Modules can register system info providers to contribute to INFO SYSTEM.\r
140       + XML configuration factories for adding support for new consumer elements\r
141         in casparcg.config.\r
142       + Server startup hooks can be registered (used by HTML producer to fork\r
143         its sub process).\r
144       + Version providers can contribute content to the VERSION command.\r
145   o Refactored multichannel audio support to use FFmpeg's PAN filter and\r
146     simplified the configuration a lot.\r
147   o Upgraded most third party libraries we depend on.\r
148   o Some unit tests have been created.\r
149   o Renamed README.txt to README, CHANGES.txt to CHANGELOG and LICENSE.txt to\r
150     LICENSE\r
151   o Created README.md for github front page in addition to README which is\r
152     distributed with builds.\r
153   o README file updates (Jonas Hummelstrand).\r
154   o Created BUILDING file describing how to build the server on Windows and\r
155     Linux.\r
156   o Diagnostics:\r
157     + Now also sent over OSC.\r
158     + Diag window is now scrollable and without squeezing of graphs.\r
159     + Contextual information such as video channel and video layer now included\r
160       in graphs.\r
161   o Logging:\r
162     + Implemented a TCP server, simply sending every log line to each connected\r
163       client. Default port is 3250.\r
164     + Changed default log level to info and moved debug statements that are\r
165       interesting in a production system to info.\r
166     + Try to not log full stack traces when user error is the cause. Stacktraces\r
167       should ideally only be logged when a system error or a programming error\r
168       has occurred.\r
169     + More contextual information about an error added to exceptions. An example\r
170       of this is that XML configuration errors now cause the XPath of the error\r
171       is logged.\r
172     + Improved the readability of the log format.\r
173     + Added optional calltrace.log for logging method calls. Allows for trace\r
174       logging to be enabled while calltracing is disabled etc.\r
175 \r
176 OSC\r
177 ---\r
178 \r
179   o Improved message formatting performance.\r
180   o Added possibility to disable sending OSC to connected AMCP clients.\r
181   o Fixed inconsistent element name predefined_client to predefined-client in\r
182     casparcg.config (Krzysztof Pyrkosz).\r
183 \r
184 Consumers\r
185 ---------\r
186 \r
187   o System audio consumer:\r
188     + Pushes data to openal instead of being callbacked by SFML when data is\r
189       needed.\r
190     + Added possibility to specify the expected delay in the sound card. Might\r
191       help get better consumer synchronization.\r
192   o Screen consumer:\r
193     + Added mouse interaction support, usable by the producers running on the\r
194       video channel.\r
195   o FFmpeg consumer:\r
196     + Replaced by Streaming Consumer after it was adapted to support everything\r
197       that FFmpeg Consumer did.\r
198     + Added support for recording all audio channels into separate mono audio\r
199       streams.\r
200     + Now sends recording progress via OSC.\r
201   o SyncTo consumer:\r
202     + New in 2.1.0.\r
203     + Allows the pace of a channel to follow another channel. This is useful for\r
204       virtual "precomp" channels without a DeckLink consumer to pace it.\r
205   o DeckLink consumer:\r
206     + Added workaround for timescale bug found in Decklink SDK 10.7.\r
207     + Now ScheduledFrameCompleted is no longer only used for video scheduling\r
208       but for audio as well, simplifying the code a lot.\r
209   o iVGA consumer:\r
210     + No longer provides sync to the video channel.\r
211     + Supports NewTek NDI out of the box just by upgrading the\r
212       Processing.AirSend library.\r
213   \r
214 Producers\r
215 ---------\r
216 \r
217   o Scene producer:\r
218     + New in 2.1.0.\r
219     + Utilizes CasparCG concepts such as producers, mixer transforms and uses\r
220       them in a nested way to form infinite number of sub layers. Think movie\r
221       clip in Flash.\r
222     + A scene consists of variables, layers, timelines and marks (intro and\r
223       outro for example).\r
224     + Mostly for use by other producers but comes with a XML based producer that\r
225       is a registered CG producer and shows up in TLS.\r
226     + Enables frame accurate compositions and animations.\r
227     + Has a powerful variable binding system (think expressions in After Effects\r
228       or JavaFX Bindings).\r
229   o PSD producer:\r
230     + New in 2.1.0.\r
231     + Parses PSD files and sets up a scene for the Scene producer to display.\r
232     + Text layers based on CG parameters.\r
233     + Supports Photoshop timeline.\r
234     + Uses Photoshop comment key-frames to describe where intro and outro (CG\r
235       PLAY and CG STOP) should be in the timeline.\r
236     + Shows up as regular templates in TLS.\r
237   o Text producer:\r
238     + New in 2.1.0.\r
239     + Renders text using FreeType library.\r
240     + Is used by the PSD producer for dynamic text layers.\r
241   o Image scroll producer:\r
242     + Speed can be changed while running using a CALL. The speed change can be\r
243       tweened.\r
244     + Added support for an absolute end time so that the duration is calculated\r
245       based on when PLAY is called for shows when an exact end time is\r
246       important.\r
247   o Image producer:\r
248     + Fixed bug where too large (OpenGL limit) images were accepted, causing\r
249       problems during thumbnail generation.\r
250   o Framerate producer:\r
251     + New in 2.1.0.\r
252     + Wraps a producer with one framerate and converts it to another. It is not\r
253       usable on its own but is utilized in the FFmpeg producer and the DeckLink\r
254       consumer.\r
255     + Supports different interpolation algorithms. Currently a no-op\r
256       drop-and-repeat mode and a two different frame blending modes.\r
257     + It also supports changing the speed on demand with tweening support.\r
258   o FFmpeg producer:\r
259     + Supports decoding all audio streams from a clip. Useful with .mxf files\r
260       which usually have separate mono streams for every audio channel.\r
261     + No longer do framerate conversion (half or double), but delegates that\r
262       task to the Framerate producer.\r
263     + Added support for v4l2 devices.\r
264     + Added relative and "from end" seeking (Dimitry Ishenko).\r
265     + Contributions during development (not w.r.t 2.0.7 Stable):\r
266       + Fixed 100% CPU problem on clip EOF (Peter Keuter, Robert Nagy).\r
267       + Constrained SEEK within the length of a clip (Dimitry Ishenko).\r
268       + Fixed a regular expression (Dimitry Ishenko).\r
269   o DeckLink producer:\r
270     + No longer do framerate conversion (half or double), but delegates that\r
271       task to the Framerate producer.\r
272   o Route producer:\r
273     + Added possibility to delay frames routed from a layer or a channel.\r
274   o HTML Producer:\r
275     + Disabled web security in HTML Producer (Robert Nagy).\r
276     + Reimplemented requestAnimationFrame handling in Javascript instead of C++.\r
277     + Implemented cancelAnimationFrame.\r
278     + Increased animation smoothness in HTML Producer with interlaced video\r
279       modes.\r
280     + Added remote debugging support.\r
281     + Added mouse interaction support by utilizing the Screen consumer's new\r
282       interaction support.\r
283   o Flash Producer:\r
284     + Contributions during development (not w.r.t 2.0.7 Stable):\r
285       + Workaround for flickering with high CPU usage and CPU accelerator\r
286         (Robert Nagy)\r
287 \r
288 AMCP\r
289 ----\r
290 \r
291   o TLS has a new column for "template type" for clients that want to\r
292     differentiate between html and flash for example.\r
293   o SET CHANNEL_LAYOUT added to be able to change the audio channel layout of a\r
294     video channel at runtime.\r
295   o HELP command added for accessing the new on-line help system.\r
296   o FLS added to list the fonts usable by the Text producer.\r
297   o LOCK command added for controlling/gaining exclusive access to a video\r
298     channel.\r
299   o LOG CATEGORY command added to enable/disable the new log categories.\r
300   o SWAP command now optionally supports swapping the transforms as well as the\r
301     layers.\r
302   o VERSION command can now provide CEF version.\r
303 \r
304 \r
305 \r
306 CasparCG Server 2.0.7 Stable (as compared to CasparCG Server 2.0.7 Beta 2)\r
307 ==========================================================================\r
308 \r
309 General\r
310 -------\r
311 \r
312   o Added support for using a different configuration file at startup than the\r
313     default casparcg.config by simply adding the name of the file to use as the\r
314     first command line argument to casparcg.exe.\r
315   o Upgraded FFmpeg to latest stable.\r
316   o Created build script.\r
317   o Fixed bug where both layer_producer and channel_producer display:s and\r
318     empty/late first frame when the producer is called before the consumer in\r
319     the other end has received the first frame.\r
320   o Added rudimentary support for audio for layer_producer and channel_producer.\r
321   o Upgraded DeckLink SDK to 10.1.4, bringing new 2K and 4K DCI video modes. New\r
322     template hosts also available for those modes.\r
323   o General bug fixes (mostly memory and resource leaks, some serious).\r
324   o Updated Boost to version 1.57\r
325   o Frontend no longer maintained and therefore not included in the release.\r
326 \r
327 Mixer\r
328 -----\r
329 \r
330   o Added support for rotation.\r
331   o Added support for changing the anchor point around which fill_translation,\r
332     fill_scale and rotation will be done from.\r
333   o Added support for perspective correct corner pinning.\r
334   o Added support for mipmapped textures with anisotropic filtering for\r
335     increased downscaling quality. Whether to enable by default can be\r
336     configured in casparcg.config.\r
337   o Added support for cropping a layer. Not the same as clipping.\r
338 \r
339 AMCP\r
340 ----\r
341 \r
342   o Added RESUME command to complement PAUSE. (Peter Keuter)\r
343   o To support the new mixer features the following commands has been added:\r
344 \r
345     + MIXER ANCHOR -- will return or modify the anchor point for a layer\r
346       (default is 0 0 for backwards compatibility). Example:\r
347       MIXER 1-10 ANCHOR 0.5 0.5\r
348       ...for changing the anchor to the middle of the layer\r
349       (a MIXER 1-10 FILL 0.5 0.5 1 1 will be necessary to place the layer at the\r
350       same place on screen as it was before).\r
351 \r
352     + MIXER ROTATION -- will return or modify the angle of which a layer is\r
353       rotated by (clockwise degrees) around the point specified by ANCHOR.\r
354 \r
355     + MIXER PERSPECTIVE -- will return or modify the corners of the perspective\r
356       transformation of a layer. One X Y pair for each corner (order upper left,\r
357       upper right, lower right and lower left). Example:\r
358       MIXER 1-10 PERSPECTIVE 0.4 0.4 0.6 0.4 1 1 0 1\r
359 \r
360     + MIXER MIPMAP -- will return or modify whether to enable mipmapping of\r
361       textures produced on a layer. Only frames produced after a change will be\r
362       affected. So for example image_producer will not be affected while the\r
363       image is displayed.\r
364 \r
365     + MIXER CROP -- will return or modify how textures on a layer will be\r
366       cropped. One X Y pair each for the upper left corner and for the lower\r
367       right corner.\r
368 \r
369   o Added INFO QUEUES command for debugging AMCP command queues. Useful for\r
370     debugging command queue overflows, where a command is deadlocked. Hopefully\r
371     always accessible via console, even though the TCP command queue may be\r
372     full.\r
373   o Added GL command:\r
374     - GL INFO prints information about device buffers and host buffers.\r
375     - GL GC garbage collects pooled but unused GL resources.\r
376   o Added INFO THREADS command listing the known threads and their descriptive\r
377     names. Can be matched against the thread id column of log entries.\r
378 \r
379 Consumers\r
380 ---------\r
381 \r
382   o Removed blocking_decklink_consumer. It was more like an experiment at best\r
383     and its usefulness was questionable.\r
384   o Added a 10 second time-out for consumer sends, to detect/recover from\r
385     blocked consumers.\r
386   o Some consumers which are usually added and removed during playout (for\r
387     example ffmpeg_consumer, streaming_consumer and channel_consumer) no longer\r
388     affect the presentation time on other consumers. Previously a lag on the SDI\r
389     output could be seen when adding such consumers.\r
390 \r
391 HTML producer\r
392 -------------\r
393 \r
394   o No longer tries to play all files with a . in their name.\r
395     (Georgi Chorbadzhiyski)\r
396   o Reimplemented using CEF3 instead of Berkelium, which enables use of WebGL\r
397     and more. CEF3 is actively maintained, which Berkelium is not. (Robert Nagy)\r
398   o Implements a custom version of window.requestAnimationFrame which will\r
399     follow the pace of the channel, for perfectly smooth animations.\r
400   o No longer manually interlaces frames, to allow for mixer fill transforms\r
401     without artifacts.\r
402   o Now uses CEF3 event loop to avoid 100% CPU core usage.\r
403 \r
404 \r
405 \r
406 CasparCG Server 2.0.7 Beta 2 (as compared to CasparCG Server 2.0.7 Beta 1)\r
407 ==========================================================================\r
408 \r
409 General\r
410 -------\r
411 \r
412   o Added sending of OSC messages for channel_grid channel in addition to\r
413     regular channels.\r
414 \r
415 Producers\r
416 ---------\r
417 \r
418   o FFmpeg: Reports correct nb_frames() when using SEEK (Thomas Kaltz III)\r
419   o Flash: Fixed bug where CG PLAY, CG INVOKE did not work.\r
420 \r
421 Consumers\r
422 ---------\r
423 \r
424   o channel_consumer: Added support for more than one channel_consumer per\r
425     channel.\r
426   o decklink_consumer: Added support for a single instance of the consumer to\r
427     manage a separate key output for use with DeckLink Duo/Quad cards:\r
428 \r
429     <decklink>\r
430       <device>1</device>\r
431       <key-device>2</key-device>\r
432       <keyer>external_separate_device</keyer>\r
433     </decklink>\r
434 \r
435     ...in the configuration will enable the feature. The value of <key-device />\r
436     defaults to the value of <device /> + 1.\r
437   o synchronizing_consumer: Removed in favour of a single decklink_consumer\r
438     managing both fill and key device.\r
439   o streaming_consumer: A new implementation of ffmpeg_consumer with added\r
440     support for streaming and other PTS dependent protocols. Examples:\r
441 \r
442     <stream>\r
443       <path>udp://localhost:5004</path>\r
444       <args>-vcodec libx264 -tune zerolatency -preset ultrafast -crf 25 -format mpegts -vf scale=240:180</args>\r
445     </stream>\r
446 \r
447     ...in configuration or:\r
448 \r
449     ADD 1 STREAM udp://localhost:5004 -vcodec libx264 -tune zerolatency -preset ultrafast -crf 25 -format mpegts -vf scale=240:180\r
450 \r
451     ...via AMCP. (Robert Nagy sponsored by Ericsson Broadcasting Services)\r
452   o newtek_ivga_consumer: Added support for iVGA consumer to not provide channel\r
453     sync even though connected. Useful for iVGA clients that downloads as fast\r
454     as possible instead of in frame-rate pace, like Wirecast. To enable:\r
455 \r
456     <newtek-ivga>\r
457       <provide-sync>false</provide-sync>\r
458     </newtek-ivga>\r
459 \r
460     ...in config to not provide channel sync when connected. The default is\r
461     true.\r
462 \r
463 AMCP\r
464 ----\r
465 \r
466   o Added support in ADD and REMOVE for a placeholder <CLIENT_IP_ADDRESS> which\r
467     will resolve to the connected AMCP client's IPV4 address.\r
468   o Fixed bug where AMCP commands split into multiple TCP packets where not\r
469     correctly parsed (http://casparcg.com/forum/viewtopic.php?f=3&t=2480)\r
470 \r
471 \r
472 \r
473 CasparCG Server 2.0.7 Beta 1 (as compared to 2.0.6 Stable)\r
474 ==========================================================\r
475 \r
476 General\r
477 -------\r
478   o FFmpeg: Upgraded to master and adapted CasparCG to FFmpeg API changes\r
479     (Robert Nagy sponsored by SVT)\r
480   o FFmpeg: Fixed problem with frame count calculation (Thomas Kaltz III)\r
481   o Fixed broken CG UPDATE.\r
482 \r
483 Producers\r
484 ---------\r
485 \r
486   o New HTML producer has been created (Robert Nagy sponsored by Flemish Radio\r
487     and Television Broadcasting Organization, VRT)\r
488 \r
489 \r
490 \r
491 CasparCG Server 2.0.6 Stable (as compared to 2.0.4 Stable)\r
492 ==========================================================\r
493 \r
494 General\r
495 -------\r
496   o iVGA: Allow for the server to work without Processing.AirSend.x86.dll to\r
497     prevent a possible GPL violation. It is available as a separate optional\r
498     download.\r
499   o iVGA: Only provide sync to channel while connected, to prevent channel\r
500     ticking too fast.\r
501   o FFmpeg: Fixed bug during deinterlace-bob-reinterlace where output fields\r
502     were offset by one field in relation to input fields.\r
503   o FFmpeg: Fixed bug in ffmpeg_consumer where an access violation occurred\r
504     during destruction.\r
505   o FFmpeg: Improved seeking. (Robert Nagy and Thomas Kaltz III)\r
506   o Frontend: Only writes elements to casparcg.config which overrides a default\r
507     value to keep the file as compact as possible.\r
508   o System audio: Patched sfml-audio to work better with oal-consumer and\r
509     therefore removed PortAudio as the system audio implementation and went back\r
510     to oal.\r
511   o Flash: Changed so that the initial buffer fill of frames is rendered at a\r
512     frame-duration pace instead of as fast as possible. Otherwise time based\r
513     animations render incorrectly. During buffer recovery, a higher paced\r
514     rendering takes place, but still not as fast as possible, which can cause\r
515     animations to be somewhat incorrectly rendered. This is the only way though\r
516     if we want the buffer to be able to recover after depletion.\r
517   o Fixed race condition during server shutdown.\r
518   o OSC: outgoing audio levels from the audio mixer for each audio channel is\r
519     now transmitted (pFS and dBFS). (Thomas Kaltz III)\r
520   o Stage: Fixed bug where tweened transforms were only ticked when a\r
521     corresponding layer existed.\r
522   o Screen consumer: Added borderless option and correct handling of name\r
523     option. (Thomas Kaltz III)\r
524   o AMCP: CLS now reports duration and framerate for MOVIE files were\r
525     information is possible to extract. (Robert Nagy)\r
526   o Version bump to keep up with CasparCG Client version.\r
527 \r
528 \r
529 \r
530 CasparCG Server 2.0.4 Stable (as compared to 2.0.4 Beta 1)\r
531 ==========================================================\r
532 \r
533 General\r
534 -------\r
535   o Can now open media with file names that only consist of digits.\r
536     (Cambell Prince)\r
537   o Miscellaneous stability and performance improvements.\r
538 \r
539 Video mixer\r
540 -----------\r
541   o Conditional compilation of chroma key support and straight alpha output\r
542     support in shader (just like with blend-modes) because of performance impact\r
543     even when not in use on a layer or on a channel. New <mixer /> element added\r
544     to configuration for turning on mixer features that not everybody would want\r
545     to pay for (performance-wise.) blend-modes also moved into this element.\r
546   o Fixed bug where MIXER LEVELS interpreted arguments in the wrong order, so \r
547     that gamma was interpreted as max_input and vice versa.\r
548 \r
549 Consumers\r
550 ---------\r
551   o Added support for NewTek iVGA, which enables the use of CasparCG Server \r
552     fill+key output(s) as input source(s) to a NewTek TriCaster without \r
553     requiring video card(s) in the CasparCG Server machine, or taking up inputs\r
554     in the TriCaster. <newtek-ivga /> element in config enables iVGA on a\r
555     channel. (Robert Nagy sponsored by NewTek)\r
556   o DeckLink: Created custom decklink allocator to reduce the memory footprint.\r
557   o Replaced usage of SFML for <system-audio /> with PortAudio, because of\r
558     problems with SFML since change to static linkage. Also PortAudio seems to\r
559     give lower latency.\r
560 \r
561 Producers\r
562 ---------\r
563   o FFmpeg: Added support for arbitrary FFmpeg options/parameters\r
564     in ffmpeg_producer. (Cambell Prince)\r
565   o Flash: Flash Player 11.8 now tested and fully supported.\r
566   o Flash: No longer starts a Flash Player to service CG commands that mean\r
567     nothing without an already running Flash Player.\r
568   o Flash: globally serialize initialization and destruction of Flash Players,\r
569     to avoid race conditions in Flash.\r
570   o Flash: changed so that the Flash buffer is filled with Flash Player\r
571     generated content at initialization instead of empty frames.\r
572 \r
573 OSC\r
574 ---\r
575   o Performance improvements. (Robert Nagy sponsored by Boffins Technologies)\r
576   o Never sends old values to OSC receivers. Collects the latest value of each\r
577     path logged since last UDP send, and sends the new UDP packet (to each\r
578     subscribing OSC receiver) with the values collected. (Robert Nagy sponsored\r
579     by Boffins Technologies)\r
580   o Batches as many OSC messages as possible in an OSC bundle to reduce the \r
581     number of UDP packets sent. Breakup into separate packages if necessary to \r
582     avoid fragmentation. (Robert Nagy sponsored by Boffins Technologies)\r
583   o Removed usage of Microsoft Agents library (Server ran out of memory after a\r
584     while) in favour of direct synchronous invocations.\r
585 \r
586 \r
587 \r
588 CasparCG Server 2.0.4 Beta 1 (as compared to 2.0.3 Stable)\r
589 ==========================================================\r
590 \r
591 General\r
592 -------\r
593   o Front-end GUI for simplified configuration and easy access to common tasks.\r
594     (Thomas Kaltz III and Jeff Lafforgue)\r
595   o Added support for video and images file thumbnail generation. By default the\r
596     media directory is scanned every 5 seconds for new/modified/removed files\r
597     and thumbnails are generated/regenerated/removed accordingly.\r
598   o Support for new video modes: 1556p2398, 1556p2400, 1556p2500, 2160p2398,\r
599     2160p2400, 2160p2500, 2160p2997 and 2160p3000.\r
600   o Experimental ATI graphics card support by using static linking against SFML\r
601     instead of dynamic. Should improve ATI GPU support, but needs testing.\r
602   o Added support for playback and pass-through of up to 16 audio channels. See\r
603     http://casparcg.com/forum/viewtopic.php?f=3&t=1453 for more information.\r
604   o Optimizations in AMCP protocol implementations for large incoming messages,\r
605     for example base64 encoded PNG images.\r
606   o Logging output now includes milliseconds and has modified format:\r
607     YYYY-MM-DD hh:mm:ss.zzz\r
608   o Improved audio playback with 720p5994 and 720p6000 channels.\r
609   o An attempt to improve output synchronization of consumers has been made. Use\r
610     for example:\r
611 \r
612     <consumers>\r
613       <synchronizing>\r
614         <decklink>\r
615           <device>1</device>\r
616           <embedded-audio>true</embedded-audio>\r
617         </decklink>\r
618         <decklink>\r
619           <device>2</device>\r
620           <key-only>true</key-only>\r
621         </decklink>\r
622       </synchronizing>\r
623     </consumers>\r
624 \r
625     ...to instruct the server to keep both DeckLink consumers in sync with each\r
626     other. Consider this experimental, so don't wrap everything in\r
627     <synchronizing /> unless synchronization of consumer outputs is needed. For\r
628     synchronization to be effective all synchronized cards must have genlock\r
629     reference signal connected.\r
630   o Transfer of source code and issue tracker to github. (Thomas Kaltz III)\r
631 \r
632 Layer\r
633 -----\r
634   o Fixed a problem where the first frame was not always shown on LOAD.\r
635     (Robert Nagy)\r
636 \r
637 Stage\r
638 -----\r
639 \r
640   o Support for layer consumers for listening to frames coming out of producers.\r
641     (Cambell Prince)\r
642 \r
643 Audio mixer\r
644 -----------\r
645   o Added support for a master volume mixer setting for each channel.\r
646 \r
647 Video mixer\r
648 -----------\r
649   o Added support for chroma keying. (Cambell Prince)\r
650   o Fixed bug where MIXER CONTRAST set to < 1 can cause transparency issues.\r
651   o Experimental support for straight alpha output.\r
652 \r
653 Consumers\r
654 ---------\r
655   o Avoid that the FFmpeg consumer blocks the channel output when it can't keep\r
656     up with the frame rate (drops frames instead).\r
657   o Added support for to create a separate key and fill file when recording with\r
658     the FFmpeg consumer. Add the SEPARATE_KEY parameter to the FFmpeg consumer\r
659     parameter list. The key file will get the _A file name suffix to be picked\r
660     up by the separated_producer when doing playback.\r
661   o The Image consumer now writes to the media folder instead of the data\r
662     folder.\r
663   o Fixed bug in DeckLink consumer where we submit too few audio samples to the\r
664     driver when the video format has a frame rate > 50.\r
665   o Added another experimental DeckLink consumer implementation where scheduled\r
666     playback is not used, but a similar approach as in the bluefish consumer\r
667     where we wait for a frame to be displayed and then display the next frame.\r
668     It is configured via a <blocking-decklink> consumer element. The benefits of\r
669     this consumer is lower latency and more deterministic synchronization\r
670     between multiple instances (should not need to be wrapped in a\r
671     <synchronizing> element when separated key/fill is used).\r
672 \r
673 Producers\r
674 ---------\r
675   o Added support for playing .swf files using the Flash producer. (Robert Nagy)\r
676   o Image producer premultiplies PNG images with their alpha.\r
677   o Image producer can load a PNG image encoded as base64 via:\r
678     PLAY 1-0 [PNG_BASE64] <base64 string>\r
679   o FFmpeg producer can now use a directshow input filters:\r
680     PLAY 1-10 "dshow://video=Some Camera"\r
681     (Cambell Prince, Julian Waller and Robert Nagy)\r
682   o New layer producer which directs the output of a layer to another layer via\r
683     a layer consumer. (Cambell Prince)\r
684 \r
685 AMCP\r
686 ----\r
687   o The master volume feature is controlled via the MASTERVOLUME MIXER\r
688     parameter. Example: MIXER 1 MASTERVOLUME 0.5\r
689   o THUMBNAIL LIST/RETRIEVE/GENERATE/GENERATE_ALL command was added to support\r
690     the thumbnail feature.\r
691   o ADD 1 FILE output.mov SEPARATE_KEY activates the separate key feature of the\r
692     FFmpeg consumer creating an additional output_a.mov containing only the key.\r
693   o Added KILL command for shutting down the server without console access.\r
694   o Added RESTART command for shutting down the server in the same way as KILL\r
695     except that the return code from CasparCG Server is 5 instead of 0, which\r
696     can be used by parent process to take other actions. The\r
697     'casparcg_auto_restart.bat' script restarts the server if the return code is\r
698     5.\r
699   o DATA RETRIEVE now returns linefeeds encoded as an actual linefeed (the\r
700     single character 0x0a) instead of the previous two characters:\r
701     \ followed by n.\r
702   o MIXER CHROMA command added to control the chroma keying. Example:\r
703     MIXER 1-1 CHROMA GREEN|BLUE 0.10 0.04\r
704     (Cambell Prince)\r
705   o Fixed bug where MIXER FILL overrides any previous MIXER CLIP on the same\r
706     layer. The bug-fix also has the side effect of supporting negative scale on\r
707     MIXER FILL, causing the image to be flipped.\r
708   o MIXER <ch> STRAIGHT_ALPHA_OUTPUT added to control whether to output straight\r
709     alpha or not.\r
710   o Added INFO <ch> DELAY and INFO <ch>-<layer> DELAY commands for showing some\r
711     delay measurements.\r
712   o PLAY 1-1 2-10 creates a layer producer on 1-1 redirecting the output of\r
713     2-10. (Cambell Prince)\r
714 \r
715 OSC\r
716 ---\r
717   o Support for sending OSC messages over UDP to either a predefined set of\r
718     clients (servers in the OSC sense) or dynamically to the ip addresses of the\r
719     currently connected AMCP clients.\r
720     (Robert Nagy sponsored by Boffins Technologies)\r
721   o /channel/[1-9]/stage/layer/[0-9]\r
722     + always             /paused           [paused or not]\r
723     + color producer     /color            [color string]\r
724     + ffmpeg producer    /profiler/time    [render time]     [frame duration]\r
725     + ffmpeg producer    /file/time        [elapsed seconds] [total seconds]\r
726     + ffmpeg producer    /file/frame       [frame]           [total frames]\r
727     + ffmpeg producer    /file/fps         [fps]\r
728     + ffmpeg producer    /file/path        [file path]\r
729     + ffmpeg producer    /loop             [looping or not]\r
730     + during transitions /transition/frame [current frame]   [total frames]\r
731     + during transitions /transition/type  [transition type]\r
732     + flash producer     /host/path        [filename]\r
733     + flash producer     /host/width       [width]\r
734     + flash producer     /host/height      [height]\r
735     + flash producer     /host/fps         [fps]\r
736     + flash producer     /buffer           [buffered]        [buffer size]\r
737     + image producer     /file/path        [file path]\r
738 \r
739 \r
740 \r
741 CasparCG Server 2.0.3 Stable (as compared to 2.0.3 Alpha)\r
742 =========================================================\r
743 \r
744 Stage\r
745 -----\r
746 \r
747   o Fixed dead-lock that can occur with multiple mixer tweens. (Robert Nagy)\r
748 \r
749 AMCP\r
750 ----\r
751 \r
752   o DATA STORE now supports creating folders of path specified if they does not\r
753     exist. (Jeff Lafforgue)\r
754   o DATA REMOVE command was added. (Jeff Lafforgue)\r
755 \r
756 \r
757 \r
758 CasparCG Server 2.0.3 Alpha (as compared to 2.0 Stable)\r
759 =======================================================\r
760 \r
761 General\r
762 -------\r
763 \r
764   o Data files are now stored in UTF-8 with BOM. Latin1 files are still\r
765     supported for backwards compatibility.\r
766   o Commands written in UTF-8 to log file but only ASCII characters to console.\r
767   o Added supported video formats:\r
768     + 720p2398 (not supported by DeckLink)\r
769     + 720p2400 (not supported by DeckLink)\r
770     + 1080p5994\r
771     + 1080p6000\r
772     + 720p30 (not supported by DeckLink)\r
773     + 720p29.976 (not supported by DeckLink)\r
774 \r
775 CLK\r
776 ---\r
777 \r
778   o CLK protocol implementation can now serve more than one connection at a time\r
779     safely.\r
780   o Added timeline support to the CLK protocol.\r
781   o Refactored parts of the CLK parser implementation.\r
782 \r
783 Consumers\r
784 ---------\r
785 \r
786   o Consumers on same channel now invoked asynchronously to allow for proper\r
787     sync of multiple consumers.\r
788   o System audio consumer:\r
789     + no longer provides sync to the video channel.\r
790   o Screen consumer:\r
791     + Support for multiple screen consumers on the same channel\r
792     + No longer spin-waits for vsync.\r
793     + Now deinterlaces to two separate frames so for example 50i will no longer\r
794       be converted to 25p but instead to 50p for smooth playback of interlaced\r
795       content.\r
796   o DeckLink consumer now logs whether a reference signal is detected or not.\r
797 \r
798 Producers\r
799 ---------\r
800 \r
801   o Image scroll producer:\r
802     + Field-rate motion instead of frame-rate motion with interlaced video\r
803       formats. This can be overridden by giving the PROGRESSIVE parameter.\r
804     + SPEED parameter now defines pixels per frame/field instead of half pixels\r
805       per frame. The scrolling direction is also reversed so SPEED 0.5 is the\r
806       previous equivalent of SPEED -1. Movements are done with sub-pixel\r
807       accuracy.\r
808     + Fixed incorrect starting position of image.\r
809     + Rounding error fixes to allow for more exact scrolling.\r
810     + Added support for motion blur via a new BLUR parameter\r
811     + Added PREMULTIPLY parameter to support images stored with straight alpha.\r
812 \r
813 \r
814 \r
815 CasparCG Server 2.0 Stable (as compared to Beta 3)\r
816 ==================================================\r
817 \r
818 General\r
819 -------\r
820 \r
821   o Misc stability and performance fixes.\r
822 \r
823 Consumers\r
824 ---------\r
825 \r
826   o File Consumer\r
827     + Changed semantics to more closely follow FFmpeg (see forums).\r
828     + Added options, -r, -acodec, -s, -pix_fmt, -f and more.\r
829   o Screen Consumer\r
830     + Added vsync support.\r
831 \r
832 \r
833 \r
834 CasparCG Server 2.0 Beta 3 (as compared to Beta 1)\r
835 ==================================================\r
836 \r
837 Formats\r
838 -------\r
839 \r
840   o ProRes Support\r
841     + Both encoding and decoding.\r
842   o NTSC Support\r
843     + Updated audio-pipeline for native NTSC support. Previous implementation\r
844       did not fully support NTSC audio and could cause incorrect behaviour or\r
845       even crashes.\r
846 \r
847 Consumers\r
848 ---------\r
849 \r
850   o File Consumer added\r
851     + See updated wiki or ask in forum for more information.\r
852     + Should support anything FFmpeg supports. However, we will work mainly with\r
853       DNxHD, PRORES and H264.\r
854     - Key-only is not supported.\r
855   o Bluefish Consumer\r
856     + 24 bit audio support.\r
857     - Embedded-audio does not work with Epoch cards.\r
858   o DeckLink Consumer\r
859     + Low latency enabled by default.\r
860     + Added graphs for driver buffers.\r
861   o Screen Consumer\r
862     + Changed screen consumer square PAL to the more common wide-square PAL.\r
863     + Can now be closed.\r
864     + Fixed interpolation artifacts when running non-square video-modes.\r
865     + Automatically deinterlace interlaced input.\r
866 \r
867 Producers\r
868 ---------\r
869 \r
870   o DeckLink Producer\r
871     + Improved color quality be avoiding unnecessary conversion to BGRA.\r
872   o FFMPEG Producer\r
873     + Fixed missing alpha for (RGB)A formats when deinterlacing.\r
874     + Updated buffering to work better with files with long audio/video\r
875       interleaving.\r
876     + Seekable while running and after reaching EOF. CALL 1-1 SEEK 200.\r
877     + Enable/disable/query looping while running. CALL 1-1 LOOP 1.\r
878     + Fixed bug with duration calculation.\r
879     + Fixed bug with fps calculation.\r
880     + Improved auto-transcode accuracy.\r
881     + Improved seeking accuracy.\r
882     + Fixed bug with looping and LENGTH.\r
883     + Updated to newer FFmpeg version.\r
884     + Fixed incorrect scaling of NTSC DV files.\r
885     + Optimized color conversion when using YADIF filters.\r
886   o Flash Producer\r
887     + Release Flash Player when empty.\r
888     + Use native resolution TemplateHost.\r
889     + TemplateHosts are now chosen automatically if not configured. The\r
890       TemplateHost with the corresponding video-mode name is now chosen.\r
891     + Use square pixel dimensions.\r
892 \r
893 AMCP\r
894 ----\r
895 \r
896   o When possible, commands will no longer wait for rendering pipeline. This\r
897     reduces command execution latencies, especially when sending a lot of\r
898     commands in a short timespan.\r
899   o Fixed CINF command.\r
900   o ADD/REMOVE no longer require subindex,\r
901     e.g. "ADD 1 SCREEN" / "REMOVE 1 SCREEN" instead of "ADD 1-1 SCREEN" / ...\r
902   o PARAM is renamed to CALL.\r
903   o STATUS command is replaced by INFO.\r
904   o INFO command has been extended:\r
905     + INFO (lists channels).\r
906     + INFO 1 (channel info).\r
907     + INFO 1-1 (layer info).\r
908     + INFO 1-1 F (foreground producer info).\r
909     + INFO 1-1 B (background producer info).\r
910     + INFO TEMPLATE mytemplate (template meta-data info, e.g. field names).\r
911   o CG INFO command has been extended.\r
912     + CG INFO 1 (template-host information, e.g. what layers are occupied).\r
913 \r
914 Mixer\r
915 -----\r
916 \r
917   o Fixed alpha with blend modes.\r
918   o Automatically deinterlace for MIXER FILL commands.\r
919 \r
920 Channel\r
921 -------\r
922 \r
923   o SET MODE now reverts back to old video-mode on failure.\r
924 \r
925 Diagnostics\r
926 -----------\r
927 \r
928   o Improved graphs and added more status information.\r
929   o Print configuration into log at startup.\r
930   o Use the same log file for the entire day, instead of one per startup as\r
931     previously.\r
932   o Diagnostics window is now closable.\r
933 \r
934 \r
935 \r
936 CasparCG Server 2.0 Beta 1 (as compared to Alpha)\r
937 =================================================\r
938 \r
939   o Blending Modes (needs to be explicitly enabled)\r
940     + overlay\r
941     + screen\r
942     + multiply\r
943     + and many more.\r
944   o Added additive keyer in addition to linear keyer.\r
945   o Image adjustments\r
946     + saturation\r
947     + brightness\r
948     + contrast\r
949     + min input-level\r
950     + max input-level\r
951     + min output-level\r
952     + max output-level\r
953     + gamma\r
954   o Support for FFmpeg-filters such as (ee http://ffmpeg.org/libavfilter.html)\r
955     + yadif deinterlacer (optimized in CasparCG for full multi-core support)\r
956     + de-noising\r
957     + dithering\r
958     + box blur\r
959     + and many more\r
960   o 32-bit SSE optimized audio pipeline.\r
961   o DeckLink-Consumer uses external-key by default.\r
962   o DeckLink-Consumer has 24 bit embedded-audio support.\r
963   o DeckLink-Producer has 24 bit embedded-audio support.\r
964   o LOADBG with AUTO feature which automatically plays queued clip when\r
965     foreground clip has ended.\r
966   o STATUS command for layers.\r
967   o LOG LEVEL command for log filtering.\r
968   o MIX transition works with transparent clips.\r
969   o Freeze on last frame.\r
970   o Producer buffering is now configurable.\r
971   o Consumer buffering is now configurable.\r
972   o Now possible to configure template-hosts for different video-modes.\r
973   o Added auto transcoder for FFmpeg producer which automatically transcodes\r
974     input video into compatible video format for the channel.\r
975     + interlacing (50p -> 50i)\r
976     + deinterlacing (50i -> 25p)\r
977     + bob-deinterlacing (50i -> 50p)\r
978     + bob-deinterlacing and reinterlacing (w1xh150i -> w2xh250i)\r
979     + doubling (25p -> 50p)\r
980     + halfing (50p -> 25p)\r
981     + field-order swap (upper <-> lower)\r
982   o Screen consumer now automatically deinterlaces when receiving interlaced\r
983     content.\r
984   o Optimized renderer.\r
985   o Renderer can now be run asynchronously with producer by using a\r
986     producer-buffer size greater than 0.\r
987   o Improved error and crash recovery.\r
988   o Improved logging.\r
989   o Added Image-Scroll-Producer.\r
990   o Key-only has now near zero performance overhead.\r
991   o Reduced memory requirements.\r
992   o Removed "warm up lag" which occurred when playing the first media clip after\r
993     the server has started.\r
994   o Added read-back fence for OpenGL device for improved multi-channel\r
995     performance.\r
996   o Memory support increased from standard 2 GB to 4 GB on 64 bit Win 7 OS.\r
997   o Added support for 2* DeckLink cards in Full HD.\r
998   o Misc bugs fixes and performance improvements.\r
999   o Color producer now support some color codes in addition to color codes, e.g.\r
1000     EMPTY, BLACK, RED etc...\r
1001   o Alpha value in color codes is now optional.\r
1002   o More than 2 DeckLink cards might be possible but have not yet been tested.\r
1003 \r
1004 \r
1005 \r
1006 CasparCG Server 2.0 Alpha (as compared to 1.8)\r
1007 ==============================================\r
1008 \r
1009 General\r
1010 -------\r
1011 \r
1012   o Mayor refactoring for improved readability and maintainability.\r
1013   o Some work towards platform-independence. Currently the greatest challenge\r
1014     for full platform-independence is flash-producer.\r
1015   o Misc improved scalability.\r
1016   o XML-configuration.\r
1017   o DeckLink\r
1018     + Support for multiple DeckLink cards.\r
1019 \r
1020 Core\r
1021 ----\r
1022 \r
1023   o Multiple producers per video_channel.\r
1024   o Multiple consumers per video_channel.\r
1025   o Swap producers between layers and channels during run-time.\r
1026   o Support for upper-field and lower-field interlacing.\r
1027   o Add and remove consumers during run-time.\r
1028   o Preliminary support for NTSC.\r
1029 \r
1030 AMCP\r
1031 ----\r
1032 \r
1033   o Query flash and template-host version.\r
1034   o Recursive media-folder listing.\r
1035   o Misc changes.\r
1036 \r
1037 Mixer\r
1038 -----\r
1039 \r
1040   o Animated tween transforms.\r
1041   o Image-Mixer\r
1042     + Fully GPU accelerated (all features listed below are done on the GPU),\r
1043     + Layer composition.\r
1044     + Color spaces (rgba, bgra, argb, yuv, yuva, yuv-hd, yuva-hd).\r
1045     + Interlacing.\r
1046     + Per-layer image transforms:\r
1047       + Opacity\r
1048       + Gain\r
1049       + Scaling\r
1050       + Clipping\r
1051       + Translation\r
1052   o Audio Mixer\r
1053     + Per-layer and per-sample audio transforms:\r
1054         + Gain\r
1055     + Fully internal audio mixing. Single output video_channel.\r
1056 \r
1057 Consumers\r
1058 ---------\r
1059 \r
1060   o DeckLink Consumer\r
1061     + Embedded audio.\r
1062     + HD support.\r
1063     + Hardware clock.\r
1064   o Bluefish Consumer\r
1065     + Drivers are loaded on-demand (server now runs on computers without\r
1066       installed Bluefish drivers).\r
1067     + Embedded audio.\r
1068     + Allocated frames are no longer leaked.\r
1069 \r
1070 Producers\r
1071 ---------\r
1072 \r
1073   o Decklink Producer\r
1074     + Embedded audio.\r
1075     + HD support.\r
1076   o Color Producer\r
1077     + GPU accelerated.\r
1078   o FFMPEG Producer\r
1079     + Asynchronous file IO.\r
1080     + Parallel decoding of audio and video.\r
1081     + Color space transform are moved to GPU.\r
1082   o Transition Producer\r
1083     + Fully interlaced transition (previously only progressive, even when\r
1084       running in interlaced mode).\r
1085     + Per-sample mixing between source and destination clips.\r
1086     + Tween transitions.\r
1087   o Flash Producer\r
1088     + DirectDraw access (slightly improved performance).\r
1089     + Improved time-sync. Smoother animations and proper interlacing.\r
1090   o Image Producer\r
1091     + Support for various image formats through FreeImage library.\r
1092 \r
1093 Diagnostics\r
1094 -----------\r
1095 \r
1096   o Graphs for monitoring performance and events.\r
1097   o Misc logging improvements.\r
1098   o Separate log file for every run of the server.\r
1099   o Error logging provides full exception details, instead of only printing that\r
1100     an error has occurred.\r
1101   o Console with real-time logging output.\r
1102   o Console with AMCP input.\r
1103 \r
1104 Removed\r
1105 -------\r
1106 \r
1107   o Registry configuration (replaced by XML Configuration).\r
1108   o TGA Producer (replaced by Image Producer).\r
1109   o TGA Scroll Producer\r