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