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