]> git.sesse.net Git - casparcg/blob - CHANGES.txt
Updated CHANGES.txt
[casparcg] / CHANGES.txt
1 C H A N G E S\r
2 \r
3 CasparCG 2.0.6 Stable (as compared to 2.0.4 Stable)\r
4 ===================================================\r
5 \r
6 General\r
7 -------\r
8   o iVGA: Allow for the server to work without Processing.AirSend.x86.dll to\r
9     prevent a possible GPL violation. It is available as a separate optional\r
10     download.\r
11   o iVGA: Only provide sync to channel while connected, to prevent channel\r
12     ticking too fast.\r
13   o FFmpeg: Fixed bug during deinterlace-bob-reinterlace where output fields\r
14     were offset by one field in relation to input fields.\r
15   o FFmpeg: Fixed bug in ffmpeg_consumer where an access violation occurred\r
16     during destruction.\r
17   o FFmpeg: Improved seeking.\r
18   o Frontend: Only writes elements to casparcg.config which overrides a default\r
19     value to keep the file as compact as possible.\r
20   o System audio: Patched sfml-audio to work better with oal-consumer and\r
21     therefore removed portaudio as the system audio implementation and went back\r
22     to oal.\r
23   o Flash: Changed so that the initial buffer fill of frames is rendered at a\r
24     frame-duration pace instead of as fast as possible. Otherwise time based\r
25     animations render incorrectly. During buffer recovery, a higher paced\r
26     rendering takes place, but still not as fast as possible, which can cause\r
27     animations to be somewhat incorrectly rendered. This is the only way though\r
28     if we want the buffer to be able to recover after depletion.\r
29   o Fixed race condition during server shutdown.\r
30   o OSC: outgoing audio levels from the audio mixer for each audio channel is\r
31     now transmitted (pFS and dBFS).\r
32   o Stage: Fixed bug where tweened transforms were only ticked when a\r
33     corresponding layer existed.\r
34   o Screen consumer: Added borderless option and correct handling of name\r
35     option.\r
36   o AMCP: CLS now reports duration and framerate for MOVIE files were\r
37     information is possible to extract.\r
38   o Version bump to keep up with CasparCG Client version.\r
39 \r
40 \r
41 \r
42 CasparCG 2.0.4 Stable (as compared to 2.0.4 Beta 1)\r
43 ===================================================\r
44 \r
45 General\r
46 -------\r
47   o Can now open media with file names that only consist of digits.\r
48   o Miscellaneous stability and performance improvements.\r
49 \r
50 Video mixer\r
51 -----------\r
52   o Conditional compilation of chroma key support and straight alpha output\r
53     support in shader (just like with blend-modes) because of performance impact\r
54     even when not in use on a layer or on a channel. New <mixer /> element added\r
55     to configuration for turning on mixer features that not everybody would want\r
56     to pay for (performance-wise.) blend-modes also moved into this element.\r
57   o Fixed bug where MIXER LEVELS interpreted arguments in the wrong order, so \r
58     that gamma was interpreted as max_input and vice versa.\r
59 \r
60 Consumers\r
61 ---------\r
62   o Added support for NewTek iVGA, which enables the use of CasparCG Server \r
63     fill+key output(s) as input source(s) to a NewTek TriCaster without \r
64     requiring video card(s) in the CasparCG Server machine, or taking up inputs\r
65     in the TriCaster. <newtek-ivga /> element in config enables iVGA on a\r
66     channel.\r
67   o Decklink: Created custom decklink allocator to reduce the memory footprint.\r
68   o Replaced usage of SFML for <system-audio /> with PortAudio, because of\r
69     problems with SFML since change to static linkage. Also PortAudio seems to\r
70     give lower latency.\r
71 \r
72 Producers\r
73 ---------\r
74   o FFmpeg: Added support for arbitrary FFmpeg options/parameters\r
75     in ffmpeg_producer.\r
76   o Flash: Flash Player 11.8 now tested and fully supported.\r
77   o Flash: No longer starts a Flash Player to service CG commands that mean\r
78     nothing without an already running Flash Player.\r
79   o Flash: globally serialize initialization and destruction of Flash Players,\r
80     to avoid race conditions in Flash.\r
81   o Flash: changed so that the Flash buffer is filled with Flash Player\r
82     generated content at initialization instead of empty frames.\r
83 \r
84 OSC\r
85 ---\r
86   o Performance improvements.\r
87   o Never sends old values to OSC reveivers. Collects the latest value of each\r
88     path logged since last UDP send, and sends the new UDP packet (to each\r
89     subscribing OSC receiver) with the values collected.\r
90   o Batches as many OSC messages as possible in an OSC bundle to reduce the \r
91     number of UDP packets sent. Breakup into separate packages if necessary to \r
92     avoid fragmentation.\r
93   o Removed usage of Microsoft Agents library (Server ran out of memory after a\r
94     while) in favour of direct synchronous invocations.\r
95 \r
96 \r
97 \r
98 CasparCG 2.0.4 Beta 1 (as compared to 2.0.3 Stable)\r
99 ===================================================\r
100 \r
101 General\r
102 -------\r
103   o Front-end GUI for simplified configuration and easy access to common tasks.\r
104   o Added support for video and images file thumbnail generation. By default the\r
105     media directory is scanned every 5 seconds for new/modified/removed files\r
106     and thumbnails are generated/regenerated/removed accordingly.\r
107   o Support for new video modes: 1556p2398, 1556p2400, 1556p2500, 2160p2398,\r
108     2160p2400, 2160p2500, 2160p2997 and 2160p3000.\r
109   o Experimental ATI graphics card support by using static linking against SFML\r
110     instead of dynamic. Should improve ATI GPU support, but needs testing.\r
111   o Added support for playback and pass-through of up to 16 audio channels. See\r
112     http://casparcg.com/forum/viewtopic.php?f=3&t=1453 for more information.\r
113   o Optimizations in AMCP protocol implementations for large incoming messages,\r
114     for example base64 encoded PNG images.\r
115   o Logging output now includes milliseconds and has modified format:\r
116     YYYY-MM-DD hh:mm:ss.zzz\r
117   o Improved audio playback with 720p5994 and 720p6000 channels.\r
118   o An attempt to improve output synchronization of consumers has been made. Use\r
119     for example:\r
120 \r
121     <consumers>\r
122       <synchronizing>\r
123         <decklink>\r
124           <device>1</device>\r
125           <embedded-audio>true</embedded-audio>\r
126         </decklink>\r
127         <decklink>\r
128           <device>2</device>\r
129           <key-only>true</key-only>\r
130         </decklink>\r
131       </synchronizing>\r
132     </consumers>\r
133 \r
134     ...to instruct the server to keep both DeckLink consumers in sync with each\r
135     other. Consider this experimental, so don't wrap everything in\r
136     <synchronizing /> unless synchronization of consumer outputs is needed. For\r
137     synchronization to be effective all synchronized cards must have genlock\r
138     reference signal connected.\r
139 \r
140 Layer\r
141 -----\r
142   o Fixed a problem where the first frame was not always shown on LOAD.\r
143 \r
144 Audio mixer\r
145 -----------\r
146   o Added support for a master volume mixer setting for each channel.\r
147 \r
148 Video mixer\r
149 -----------\r
150   o Added support for chroma keying.\r
151   o Fixed bug where MIXER CONTRAST set to < 1 can cause transparency issues.\r
152   o Experimental support for straight alpha output.\r
153 \r
154 Consumers\r
155 ---------\r
156   o Avoid that the FFmpeg consumer blocks the channel output when it can't keep\r
157     up with the frame rate (drops frames instead).\r
158   o Added support for to create a separate key and fill file when recording with\r
159     the FFmpeg consumer. Add the SEPARATE_KEY parameter to the FFmpeg consumer\r
160     parameter list. The key file will get the _A file name suffix to be picked\r
161     up by the separated_producer when doing playback.\r
162   o The Image consumer now writes to the media folder instead of the data\r
163     folder.\r
164   o Fixed bug in DeckLink consumer where we submit too few audio samples to the\r
165     driver when the video format has a frame rate > 50.\r
166   o Added another experimental DeckLink consumer implementation where scheduled\r
167     playback is not used, but a similar approach as in the bluefish consumer\r
168     where we wait for a frame to be displayed and then display the next frame.\r
169     It is configured via a <blocking-decklink> consumer element. The benefits of\r
170     this consumer is lower latency and more deterministic synchronization\r
171     between multiple instances (should not need to be wrapped in a\r
172     <synchronizing> element when separated key/fill is used).\r
173 \r
174 Producers\r
175 ---------\r
176   o Added support for playing .swf files using the Flash producer.\r
177   o Image producer premultiplies PNG images with their alpha.\r
178   o Image producer can load a PNG image encoded as base64 via:\r
179     PLAY 1-0 [PNG_BASE64] <base64 string>\r
180   o FFmpeg producer can now use a directshow input filters:\r
181     PLAY 1-10 "dshow://video=Some Camera"\r
182 \r
183 AMCP\r
184 ----\r
185   o The master volume feature is controlled via the MASTERVOLUME MIXER\r
186     parameter. Example: MIXER 1 MASTERVOLUME 0.5\r
187   o THUMBNAIL LIST/RETRIEVE/GENERATE/GENERATE_ALL command was added to support\r
188     the thumbnail feature.\r
189   o ADD 1 FILE output.mov SEPARATE_KEY activates the separate key feature of the\r
190     FFmpeg consumer creating an additional output_a.mov containing only the key.\r
191   o Added KILL command for shutting down the server without console access.\r
192   o Added RESTART command for shutting down the server in the same way as KILL\r
193     except that the return code from CasparCG Server is 5 instead of 0, which\r
194     can be used by parent process to take other actions. The\r
195     'casparcg_auto_restart.bat' script restarts the server if the return code is\r
196     5.\r
197   o DATA RETRIEVE now returns linefeeds encoded as an actual linefeed (the\r
198     single character 0x0a) instead of the previous two characters:\r
199     \ followed by n.\r
200   o MIXER CHROMA command added to control the chroma keying. Example:\r
201     MIXER 1-1 CHROMA GREEN|BLUE 0.10 0.04\r
202   o Fixed bug where MIXER FILL overrides any previous MIXER CLIP on the same\r
203     layer. The bugfix also has the side effect of supporting negative scale on\r
204     MIXER FILL, causing the image to be flipped.\r
205   o MIXER <ch> STRAIGHT_ALPHA_OUTPUT added to control whether to output straight\r
206     alpha or not.\r
207   o Added INFO <ch> DELAY and INFO <ch>-<layer> DELAY commands for showing some\r
208     delay measurements.\r
209 \r
210 \r
211 OSC\r
212 ---\r
213   o Support for sending OSC messages over UDP to either a predefined set of\r
214     clients (servers in the OSC sense) or dynamically to the ip addresses of the\r
215     currently connected AMCP clients.\r
216   o /channel/[1-9]/stage/layer/[0-9]\r
217     + always             /paused           [paused or not]\r
218     + color producer     /color            [color string]\r
219     + ffmpeg producer    /profiler/time    [render time]     [frame duration]\r
220     + ffmpeg producer    /file/time        [elapsed seconds] [total seconds]\r
221     + ffmpeg producer    /file/frame       [frame]           [total frames]\r
222     + ffmpeg producer    /file/fps         [fps]\r
223     + ffmpeg producer    /file/path        [file path]\r
224     + ffmpeg producer    /loop             [looping or not]\r
225     + during transitions /transition/frame [current frame]   [total frames]\r
226     + during transitions /transition/type  [transition type]\r
227     + flash producer     /host/path        [filename]\r
228     + flash producer     /host/width       [width]\r
229     + flash producer     /host/height      [height]\r
230     + flash producer     /host/fps         [fps]\r
231     + flash producer     /buffer           [buffered]        [buffer size]\r
232     + image producer     /file/path        [file path]\r
233 \r
234 \r
235 \r
236 CasparCG 2.0.3 Stable (as compared to 2.0.3 Alpha)\r
237 ==================================================\r
238 \r
239 Stage\r
240 -----\r
241 \r
242   o Fixed dead-lock that can occur with multiple mixer tweens.\r
243 \r
244 AMCP\r
245 ----\r
246 \r
247   o DATA STORE now supports creating folders of path specified if they does not\r
248     exist.\r
249   o DATA REMOVE command was added.\r
250 \r
251 \r
252 \r
253 CasparCG 2.0.3 Alpha (as compared to 2.0 Stable)\r
254 ================================================\r
255 \r
256 General\r
257 -------\r
258 \r
259   o Data files are now stored in UTF-8 with BOM. Latin1 files are still\r
260     supported for backwards compatibility\r
261   o Commands written in UTF-8 to log file but only ascii characters to console.\r
262   o Added supported video formats:\r
263     + 720p2398 (not supported by DeckLink)\r
264     + 720p2400 (not supported by DeckLink)\r
265     + 1080p5994\r
266     + 1080p6000\r
267     + 720p30 (not supported by DeckLink)\r
268     + 720p29.976 (not supported by DeckLink)\r
269 \r
270 CLK\r
271 ---\r
272 \r
273   o CLK protocol implementation can now serve more than one connection at a time\r
274     safely.\r
275   o Added timeline support to the CLK protocol.\r
276   o Refactored parts of the CLK parser implementation.\r
277 \r
278 Consumers\r
279 ---------\r
280 \r
281   o Consumers on same channel now invoked asynchronously to allow for proper\r
282     sync of multiple consumers.\r
283   o System audio consumer:\r
284     + no longer provides sync to caspar.\r
285   o Screen consumer:\r
286     + Support for multiple screen consumers on the same channel\r
287     + No longer spin-waits for vsync\r
288     + Now deinterlaces to two separate frames so for example 50i will no longer\r
289       be converted to 25p but instead to 50p for smooth playback of interlaced\r
290       content.\r
291   o Decklink consumer now logs whether a reference signal is detected or not.\r
292 \r
293 Producers\r
294 ---------\r
295 \r
296   o Image scroll producer:\r
297     + Field-rate motion instead of frame-rate motion with interlaced video\r
298       formats. This can be overridden by giving the PROGRESSIVE parameter.\r
299     + SPEED parameter now defines pixels per frame/field instead of half pixels\r
300       per frame. The scrolling direction is also reversed so SPEED 0.5 is the\r
301       previous equivalent of SPEED -1. Movements are done with subpixel accuracy\r
302     + Fixed incorrect starting position of image.\r
303     + Rounding error fixes to allow for more exact scrolling.\r
304     + Added support for motion blur via a new BLUR parameter\r
305     + Added PREMULTIPLY parameter to support images stored with straight alpha.\r
306 \r
307 \r
308 \r
309 CasparCG 2.0 Stable (as compared to Beta 3)\r
310 ===========================================\r
311 \r
312 General\r
313 -------\r
314 \r
315   o Misc stability and performance fixes.\r
316 \r
317 Consumers\r
318 ---------\r
319 \r
320   o File Consumer\r
321     + Changed semantics to more closely follow FFmpeg (see forums).\r
322     + Added options, -r, -acodec, -s, -pix_fmt, -f and more.\r
323   o Screen Consumer\r
324     + Added vsync support.\r
325 \r
326 \r
327 \r
328 CasparCG 2.0 Beta 3 (as compared to Beta 1)\r
329 ===========================================\r
330 \r
331 Formats\r
332 -------\r
333 \r
334   o ProRes Support\r
335     + Both encoding and decoding.\r
336   o NTSC Support\r
337     + Updated audio-pipeline for native NTSC support. Previous implementation\r
338       did not fully support NTSC audio and could cause incorrect behaviour or\r
339       even crashes.\r
340 \r
341 Consumers\r
342 ---------\r
343 \r
344   o File Consumer added\r
345     + See updated wiki or ask in forum for more information.\r
346     + Should support anything FFmpeg supports. However, we will work mainly with\r
347       DNXHD, PRORES and H264.\r
348     - Key-only is not supported.\r
349   o Bluefish Consumer\r
350     + 24 bit audio support.\r
351     - Embedded-audio does not work with Epoch cards.\r
352   o Decklink Consumer\r
353     + Low latency enabled by default.\r
354     + Added graphs for driver buffers.\r
355   o Screen Consumer\r
356     + Changed screen consumer square PAL to the more common wide-square PAL.\r
357     + Can now be closed.\r
358     + Fixed interpolation artifacts when running non-square video-modes.\r
359     + Automatically deinterlace interlaced input.\r
360 \r
361 Producers\r
362 ---------\r
363 \r
364   o Decklink Producer\r
365     + Improved color quality be avoiding uneccessary conversion to BGRA.\r
366   o FFMPEG Producer\r
367     + Fixed missing alpha for (RGB)A formats when deinterlacing.\r
368     + Updated buffering to work better with files with long audio/video\r
369       interleaving.\r
370     + Seekable while running and after reaching EOF. CALL 1-1 SEEK 200.\r
371     + Enable/disable/query looping while running. CALL 1-1 LOOP 1.\r
372     + Fixed bug with duration calculation.\r
373     + Fixed bug with fps calculation.\r
374     + Improved auto-transcode accuracy.\r
375     + Improved seeking accuracy.\r
376     + Fixed bug with looping and LENGTH.\r
377     + Updated to newer FFmpeg version.\r
378     + Fixed incorrect scaling of NTSC DV files.\r
379     + Optimized color conversion when using YADIF filters.\r
380   o Flash Producer\r
381     + Release Flash Player when empty.\r
382     + Use native resolution TemplateHost.\r
383     + TemplateHosts are now choosen automatically if not configured. The\r
384       TemplateHost with the corresponding video-mode name is now chosen.\r
385     + Use square pixel dimensions.\r
386 \r
387 AMCP\r
388 ----\r
389 \r
390   o When possible, commands will no longer wait for rendering pipeline. This\r
391     reduces command execution latencies, especially when sending a lot of\r
392     commands in a short timespan.\r
393   o Fixed CINF command.\r
394   o ADD/REMOVE no longer require subindex,\r
395     e.g. "ADD 1 SCREEN" / "REMOVE 1 SCREEN" instead of "ADD 1-1 SCREEN" / ...\r
396   o PARAM is renamed to CALL.\r
397   o STATUS command is replaced by INFO.\r
398   o INFO command has been extended:\r
399     + INFO (lists channels).\r
400     + INFO 1 (channel info).\r
401     + INFO 1-1 (layer info).\r
402     + INFO 1-1 F (foreground producer info).\r
403     + INFO 1-1 B (background producer info).\r
404     + INFO TEMPLATE mytemplate (template meta-data info, e.g. field names).\r
405   o CG INFO command has been extended.\r
406     + CG INFO 1 (template-host information, e.g. what layers are occupied).\r
407 \r
408 Mixer\r
409 -----\r
410 \r
411   o Fixed alpha with blend modes.\r
412   o Automatically deinterlace for MIXER FILL commands.\r
413 \r
414 Channel\r
415 -------\r
416 \r
417   o SET MODE now reverts back to old video-mode on failure.\r
418 \r
419 Diagnostics\r
420 -----------\r
421 \r
422   o Improved graphs and added more status information.\r
423   o Print configuration into log at startup.\r
424   o Use the same log file for the entire day, instead of one per startup as\r
425     previously.\r
426   o Diagnostics window is now closable.\r
427 \r
428 \r
429 \r
430 CasparCG 2.0 Beta 1 (as compared to Alpha)\r
431 ==========================================\r
432 \r
433   o Blending Modes (needs to be explicitly enabled)\r
434     + overlay\r
435     + screen\r
436     + multiply\r
437     + and many more.\r
438   o Added additive keyer in addition to linear keyer.\r
439   o Image adjustements\r
440     + saturation\r
441     + brightness\r
442     + contrast\r
443     + min input-level\r
444     + max input-level\r
445     + min output-level\r
446     + max output-level\r
447     + gamma\r
448   o Support for FFmpeg-filters such as (ee http://ffmpeg.org/libavfilter.html)\r
449     + yadif deinterlacer (optimized in CasparCG for full multi-core support)\r
450     + de-noising\r
451     + dithering\r
452     + box blur\r
453     + and many more\r
454   o 32-bit SSE optimized audio pipeline.\r
455   o Decklink-Consumer uses external-key by default.\r
456   o Decklink-Consumer has 32 bit embedded-audio support.\r
457   o Decklink-Producer has 32 bit embedded-audio support.\r
458   o LOADBG with AUTO feature which automatically playes queued clip when\r
459     foreground clip has ended.\r
460   o STATUS command for layers.\r
461   o LOG LEVEL command for log filtering.\r
462   o MIX transitation work with transparent clips.\r
463   o Freeze on last frame.\r
464   o Producer buffering is now configurable.\r
465   o Consumer buffering is now configurable.\r
466   o Now possible to configure template-hosts for different video-modes.\r
467   o Added auto transcoder for FFmpeg producer which automatically transcodes\r
468     input video into compatible video format for the channel.\r
469     + interlacing (50p -> 50i)\r
470     + deinterlacing (50i -> 25p)\r
471     + bob-deinterlacing (50i -> 50p)\r
472     + bob-deinterlacing and reinterlacing (w1xh150i -> w2xh250i)\r
473     + doubling (25p -> 50p)\r
474     + halfing (50p -> 25p)\r
475     + field-order swap (upper <-> lower)\r
476   o Screen consumer now automatically deinterlaces when receiveing interlaced\r
477     content.\r
478   o Optimized renderer.\r
479   o Renderer can now be run asynchronously with producer by using a\r
480     producer-buffer size greater than 0.\r
481   o Improved error and crash recovery.\r
482   o Improved logging.\r
483   o Added Image-Scroll-Producer\r
484   o Key-only has now near zery performance overhead.\r
485   o Reduced memory requirements\r
486   o Removed "warm up lag" which occured when playing the first media clip after\r
487     the server has started.\r
488   o Added read-back fence for OpenGL device for improved multi-channel\r
489     performance.\r
490   o Memory support increased from standard 2 GB to 4 GB on 64 bit Win 7 OS.\r
491   o Added support for 2* Decklink cards in FullHD.\r
492   o Misc bugs fixes and performance improvements.\r
493   o Color producer now support some color codes in addition to color codes, e.g.\r
494     EMPTY, BLACK, RED etc...\r
495   o Alpha value in color codes is now optional.\r
496   o More than 2 Decklink cards might be possible but have not yet been tested.\r
497 \r
498 \r
499 \r
500 CasparCG 2.0 Alpha (as compared to 1.8)\r
501 =======================================\r
502 \r
503 General\r
504 -------\r
505 \r
506   o Mayor refactoring for improved readability and mainainability.\r
507   o Some work towards platorm-independence. Currently the greatest challenge for\r
508     full platform-independence is flash-producer.\r
509   o Misc improved scalability.\r
510   o XML-configuration.\r
511   o Decklink\r
512     + Support for multiple DeckLink cards.\r
513 \r
514 Core\r
515 ----\r
516 \r
517   o Multiple producers per video_channel.\r
518   o Multiple consumers per video_channel.\r
519   o Swap producers between layers and channels during run-time.\r
520   o Support for upper-field and lower-field interlacing.\r
521   o Add and remove consumers during run-time.\r
522   o Preliminary support for NTSC.\r
523 \r
524 AMCP\r
525 ----\r
526 \r
527   o Query flash and template-host version.\r
528   o Recursive media-folder listing.\r
529   o Misc changes.\r
530 \r
531 Mixer\r
532 -----\r
533 \r
534   o Animated tween transforms.\r
535   o Image-Mixer\r
536     + Fully GPU accelerated (all features listed below are done on the gpu),\r
537     + Layer composition.\r
538     + Colorspaces (rgba, bgra, argb, yuv, yuva, yuv-hd, yuva-hd).\r
539     + Interlacing.\r
540     + Per-layer image-transforms:\r
541       + Opacity\r
542       + Gain\r
543       + Scaling\r
544       + Clipping\r
545       + Translation\r
546   o Audio-Mixer\r
547     + Per-layer and per-sample audio-transforms:\r
548         + Gain\r
549     + Fully internal audio-mixing. Single output-video_channel.\r
550 \r
551 Consumers\r
552 ---------\r
553 \r
554   o Decklink-Consumer\r
555     + Embedded audio.\r
556     + HD support.\r
557     + Hardware clock.\r
558   o Bluefish-Consumer\r
559     + Drivers are loaded on-demand (server now runs on computers without\r
560       installed bluefish-drivers).\r
561     + Embedded-audio.\r
562     + Allocated frames are no longer leaked.\r
563 \r
564 Producers\r
565 ---------\r
566 \r
567   o Decklink-Producer\r
568     + Embedded audio.\r
569     + HD support.\r
570   o Color-Producer\r
571     + GPU accelerated.\r
572   o FFMPEG-Producer\r
573     + Asynchronous file IO.\r
574     + Parallel decoding of audio and video.\r
575     + Colorspace transform are moved to gpu.\r
576   o Transition-Producer\r
577     + Fully interlaced transition (previsously only progressive, even when\r
578       running in interlaced mode).\r
579     + Per-sample mixing between source and destination clips.\r
580     + Tween transitions.\r
581   o Flash-Producer\r
582     + DirectDraw access (sligthly improved performance).\r
583     + Improved time-sync. Smoother animations and proper interlacing.\r
584   o Image-Producer\r
585     + Support for various imageformats through FreeImage library.\r
586 \r
587 Diagnostics\r
588 -----------\r
589 \r
590   o Graphs for monitoring performance and events.\r
591   o Misc logging improvements.\r
592   o Seperate log-file for every run of the server.\r
593   o Error logging provides full exception details, instead of only printing that\r
594     an error has occured.\r
595   o Console with real-time logging output.\r
596   o Console with AMCP input.\r
597 \r
598 Removed\r
599 -------\r
600 \r
601   o Registry-configuration (replaced by XML-Configuration).\r
602   o TGA-Producer (replaced by Image-Producer).\r
603   o TGA-Scroll-Producer\r