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