]> git.sesse.net Git - casparcg/log
casparcg
7 years ago[scene_producer] Added scene_width and scene_height variables that can be used from...
Helge Norberg [Mon, 13 Feb 2017 15:16:18 +0000 (16:16 +0100)]
[scene_producer] Added scene_width and scene_height variables that can be used from expressions

7 years agoBuffer Depth stuff:
James Wise [Mon, 13 Feb 2017 03:27:27 +0000 (14:27 +1100)]
Buffer Depth stuff:
new defined values:
BLUEFISH_HW_BUFFER_DEPTH 1
BLUEFISH_SOFTWARE_BUFFERS 4
To easily set the HW buffer depth, and number of software buffers used.
Previous setting of 3 for the HW buffer depth has been reduced to 1,
since almost all hardware tested shows that 1 is sufficient.
( very old machines with poor PCI performance may struggle with a buffer of just 1)

bluefish_consumer_proxy::buffer_depth now returns the correct value,
ie. BLUEFISH_HW_BUFFER_DEPTH
( i have tested this via taking a pic of both screen and SDI display, and confirming that they both display the same frame,
I hope this is the correct use/interpretation of this value)

Queue, Mutex and thread stuff:
Changed the std::queue and std::mutex to use tbb:concurrent_counded_queue, as suggested.
This has greatly simplified the code by removing the mutex's and associated lock/unlock calls.
made the end_dma_thread bool, tbb::atomeic too - should have always been marked as such, or at least volatile.
also added code to specifically set the maximum size for the tbb concurrent queue
Mofified the way we allocate the std::thread for the DMA and present.
thread is now a class member which makes things a bit cleaner too.
removed the mutex and lock stuff from this too.
Startup uses the Dfeined buffer value from top of file.

Routing and card config:
Minor change to the way we woncfigure routing on neutron cards when using the hw keyer, 2nd link ie. the fill only now gets routed correctly.

Hardware Keyer:
Now using the correct Macro to setup the hw Keyer,
Be aware the terminology can be confusing as the the macro refers to the source data, not the process to be applied.
This has been tested with the casper 1080_test.tga file and produces the correct output.
Ie. we see the following text in white.
"Alpha / Key correct: Premultipled
 Linear / Additive"

7 years agoFix spelling mistake, refine text describing the use of various params in the bluefis...
James Wise [Mon, 13 Feb 2017 02:21:43 +0000 (13:21 +1100)]
Fix spelling mistake, refine text describing the use of various params in the bluefish block

7 years ago[scene] More documentation with auto completion for example values/expressions.
Helge Norberg [Fri, 10 Feb 2017 18:11:04 +0000 (19:11 +0100)]
[scene] More documentation with auto completion for example values/expressions.

7 years agoWhat the? somehow one of the mutex's got removed. - fixing
James Wise [Fri, 10 Feb 2017 02:34:04 +0000 (13:34 +1100)]
What the?  somehow one of the mutex's got removed. - fixing

7 years agofix spl v std typo
James Wise [Fri, 10 Feb 2017 02:27:45 +0000 (13:27 +1100)]
fix spl v std typo

7 years agoImplmented a new system to manage to DMA and presenting of frames when using the...
James Wise [Fri, 10 Feb 2017 00:40:33 +0000 (11:40 +1100)]
Implmented a new system to manage to DMA and presenting of frames when using the bluefish hadrware.
This system uses FIFO mode on the hadware which allows for some degree of buffering on the card.

Frames are copied from caspar to a internal Q, a seperate thread then extracts frames from the Q, and does the DMA and present calls.
This system removes our DMA from the core loop of Caspar, and allows up to a full frames time to be used for the DMA.
- Important when using multiple channels.

Moved the Wait for Sync caLl to happen after the Memcopy, this should create a more stable sync time.

No longer need to set the executor thread to high priority, but setting the std::thread that i am using for the DMA to highest priority.

This change results in much better performance when doing multiple streams.

This change required some additional functions to be added to the blue_velvet.h/cpp files too,
to properly support the FIFO playback mode.

Also minor change to tell the Keyer that data is pre-multiplied when we receive it.

7 years agoMerge remote-tracking branch 'CasparCG/2.1.0' into 2.1.0
James Wise [Wed, 8 Feb 2017 23:23:30 +0000 (10:23 +1100)]
Merge remote-tracking branch 'CasparCG/2.1.0' into 2.1.0

7 years agoMerge commit '008e8dd2152b97abaf2b6c4f9ac385eb1e1d1d6e' into 2.1.0
James Wise [Wed, 8 Feb 2017 23:23:08 +0000 (10:23 +1100)]
Merge commit '008e8dd2152b97abaf2b6c4f9ac385eb1e1d1d6e' into 2.1.0

7 years agoRemove unneccasary casts
James Wise [Wed, 8 Feb 2017 23:17:11 +0000 (10:17 +1100)]
Remove unneccasary casts

7 years ago[scene] Continued documentation of the scene producer.
Helge Norberg [Wed, 8 Feb 2017 19:35:06 +0000 (20:35 +0100)]
[scene] Continued documentation of the scene producer.

7 years ago[scene_producer] Added possibility to specify the width and height of a layer instead...
Helge Norberg [Wed, 8 Feb 2017 19:33:25 +0000 (20:33 +0100)]
[scene_producer] Added possibility to specify the width and height of a layer instead of letting the producer on the layer decide.

7 years agoChanges to support the new way of setting bluefish properties.
James Wise [Wed, 8 Feb 2017 05:53:00 +0000 (16:53 +1100)]
Changes to support the new way of setting bluefish properties.
now using a,b,c,d for channel selectiong and the keyer property to determine 422, v 4224v interna hardware keyer usage and configuration.

Changes to the casparcg.config file reflect this and provide limited documentation of usage.
aslo changed the executor priority to be highest possible, as this is required for the thread that the DMA happens on.
(building of scatter gather table and actual DMA should never yield to a less important thread)

7 years ago[scene] Initial work in progress XML Schema for creating Scene producer XML files...
Helge Norberg [Tue, 7 Feb 2017 18:32:02 +0000 (19:32 +0100)]
[scene] Initial work in progress XML Schema for creating Scene producer XML files. Allows for auto completion/validation/online documentation with a good XML editor

7 years agomore refinements to code due to move to RAII
James Wise [Tue, 7 Feb 2017 02:48:48 +0000 (13:48 +1100)]
more refinements to code due to move to RAII

7 years agoRevert to original code as per master branch. I should have never made changes to...
James Wise [Mon, 6 Feb 2017 22:37:56 +0000 (09:37 +1100)]
Revert to original code as per master branch.  I should have never made changes to this file, not sure how they slipped in.

7 years agoModify the init of the function ptrs to be in the header instead of in the init_funti...
James Wise [Mon, 6 Feb 2017 22:33:58 +0000 (09:33 +1100)]
Modify the init of the function ptrs to be in the header instead of in the init_funtion_pointers func.
(stupid, dont know why i didn't do this in the first place...)

7 years agogardening and improving code to be more inline with CasparCG style
James Wise [Mon, 6 Feb 2017 22:26:54 +0000 (09:26 +1100)]
gardening and improving code to be more inline with CasparCG style

7 years ago[build] removed hard coded linkage to reroute. Is implicitly done via included module...
Helge Norberg [Mon, 6 Feb 2017 17:33:47 +0000 (18:33 +0100)]
[build] removed hard coded linkage to reroute. Is implicitly done via included modules in modules/CMakeLists.txt

7 years agoDisable audio output when closing a bf device after playback.
James Wise [Mon, 6 Feb 2017 03:29:33 +0000 (14:29 +1100)]
Disable audio output when closing a bf device after playback.

7 years agoMerge branch '2.1.0' of https://github.com/CasparCG/Server into 2.1.0
James Wise [Fri, 3 Feb 2017 05:22:19 +0000 (16:22 +1100)]
Merge branch '2.1.0' of https://github.com/CasparCG/Server into 2.1.0

7 years agoUpdate previous files to be more in line with CasparCG coding styles.
James Wise [Fri, 3 Feb 2017 04:54:11 +0000 (15:54 +1100)]
Update previous files to be more in line with CasparCG coding styles.
removed almost all sue of CamelCase, now using all smalls and underscores where possible.
Many fixes according to suggestions from @HellGore,
Including but not limited to:
Better use of RAII and shared ptr objects.
Removal of unrequired functions
Removal of system that checks if a driver is present before adding a bluefish consumer to registry.
Removal of static get/set card property funcs
Init'ing all functions ptr to nullptr.

NOT done yet:
possible modification of argument name

7 years agoMove the Required header files from Bluefish/interop dir. back to the dependencies64...
James Wise [Fri, 3 Feb 2017 04:45:27 +0000 (15:45 +1100)]
Move the Required header files from Bluefish/interop dir. back to the dependencies64/bluefish/include dir. which is where they should be stored.

7 years ago[CHANGELOG] Updated and recompiled FFmpeg for Linux with new build parameter.
Helge Norberg [Wed, 1 Feb 2017 17:15:40 +0000 (18:15 +0100)]
[CHANGELOG] Updated and recompiled FFmpeg for Linux with new build parameter.

7 years agoMerge pull request #546 from walterav1984/patch-1
HellGore [Wed, 1 Feb 2017 16:37:55 +0000 (17:37 +0100)]
Merge pull request #546 from walterav1984/patch-1

linux DV/HDV video device support

7 years ago[CHANGELOG] Updated
Helge Norberg [Wed, 1 Feb 2017 16:25:23 +0000 (17:25 +0100)]
[CHANGELOG] Updated

7 years agoMerge pull request #545 from aruanoc/2.1.0
HellGore [Wed, 1 Feb 2017 16:05:01 +0000 (17:05 +0100)]
Merge pull request #545 from aruanoc/2.1.0

Adds support to CasparCG 2.1.x for 2160p5000, 2160p5994 and 2160p6000 video modes

7 years agoffmpeg producer linux DV/HDV firewire support
Walter Sonius [Wed, 1 Feb 2017 13:42:22 +0000 (14:42 +0100)]
ffmpeg producer linux DV/HDV firewire support

7 years agoffmpeg linux DV/HDV firewire device use iec61883
Walter Sonius [Wed, 1 Feb 2017 13:38:15 +0000 (14:38 +0100)]
ffmpeg linux DV/HDV firewire device use iec61883

7 years agoffmpeg build flag linux enable DV/HDV 1394FW
Walter Sonius [Wed, 1 Feb 2017 13:34:40 +0000 (14:34 +0100)]
ffmpeg build flag linux enable DV/HDV 1394FW

7 years agoffmpeg build dependencies for linux DV/HDV support
Walter Sonius [Wed, 1 Feb 2017 13:28:35 +0000 (14:28 +0100)]
ffmpeg build dependencies for linux DV/HDV support

7 years ago[CHANGELOG] Updated
Helge Norberg [Wed, 1 Feb 2017 12:20:48 +0000 (13:20 +0100)]
[CHANGELOG] Updated

7 years agoMerge pull request #543 from walterav1984/patch-1
HellGore [Wed, 1 Feb 2017 12:11:05 +0000 (13:11 +0100)]
Merge pull request #543 from walterav1984/patch-1

Fix ffmpeg build dependencies on clean ubuntu desktop amd64 14.04.3 or higher

7 years agoUpdate build.sh
walterav1984 [Tue, 31 Jan 2017 20:53:38 +0000 (21:53 +0100)]
Update build.sh

7 years agoUpdate build-ubuntu.sh
walterav1984 [Tue, 31 Jan 2017 20:48:03 +0000 (21:48 +0100)]
Update build-ubuntu.sh

7 years agoRevert changes to project files to compile
Antonio Ruano Cuesta [Tue, 31 Jan 2017 18:41:42 +0000 (13:41 -0500)]
Revert changes to project files to compile

7 years ago[win32] Give the server a tiny hope of recovering from a stack overflow bug. Still...
Helge Norberg [Tue, 31 Jan 2017 15:34:21 +0000 (16:34 +0100)]
[win32] Give the server a tiny hope of recovering from a stack overflow bug. Still unlikely that the server will not crash.

7 years ago[scene_producer] Added abs() function to expression language
Helge Norberg [Tue, 31 Jan 2017 12:50:41 +0000 (13:50 +0100)]
[scene_producer] Added abs() function to expression language

7 years agoMerge branch '2.1.0' of https://github.com/CasparCG/Server into 2.1.0
Helge Norberg [Tue, 31 Jan 2017 09:11:50 +0000 (10:11 +0100)]
Merge branch '2.1.0' of https://github.com/CasparCG/Server into 2.1.0

7 years ago[layer_producer] Fixed serious bug where a circular reference of layer producers...
Helge Norberg [Tue, 31 Jan 2017 09:11:23 +0000 (10:11 +0100)]
[layer_producer] Fixed serious bug where a circular reference of layer producers caused a stack overflow and server crash

7 years agoAdd updates to the basic casparcg.config illustrating the possible options for use...
James Wise [Mon, 30 Jan 2017 23:02:21 +0000 (10:02 +1100)]
Add updates to the basic casparcg.config  illustrating the possible options for use of the new blufish features, in the sample XML

7 years ago[CHANGELOG] Updated.
Helge Norberg [Mon, 30 Jan 2017 15:36:14 +0000 (16:36 +0100)]
[CHANGELOG] Updated.

7 years agoMerge pull request #519 from krzyc/patch-1
HellGore [Mon, 30 Jan 2017 15:32:27 +0000 (16:32 +0100)]
Merge pull request #519 from krzyc/patch-1

Remove platform name from linux build script

7 years agoAdd new files to the Bluefish module.
James Wise [Sun, 29 Jan 2017 18:02:32 +0000 (05:02 +1100)]
Add new files to the Bluefish module.
New Dir - interop, contains all the headers required to build the bluefish module.
Also updated to use latest version of these header file, and now using the BlueVelvetC and BlueVelvetCUtils interface, instead of older depreceated one.

7 years agoRemove all Bluefish444.
James Wise [Sun, 29 Jan 2017 18:00:45 +0000 (05:00 +1100)]
Remove all Bluefish444.
Bluefish module now gets loaded via looking up function pointers.

7 years agoModifications to the files within the Bluefish module.
James Wise [Sun, 29 Jan 2017 17:59:08 +0000 (04:59 +1100)]
Modifications  to the files within the Bluefish module.
Changed the Bluefish internal stuff to use the BlueVelvetC API.
Now using an internal class ( BVCWrapper)  that contains function pointers, so module will only get loaded if BF hardware and driver is present.
Updated inner workings to better support latest and different version of bluefish hardware.
Added support for using multiple channels
Added support multiple cards.
Added support for using the onboard keyer
Improved routing and configuration.

7 years agodirty hack replace shipped ffmpeg linux libs with compiled ones!
walterav1984 [Sun, 29 Jan 2017 13:10:42 +0000 (14:10 +0100)]
dirty hack replace shipped ffmpeg linux libs with compiled ones!

If this is done prior to building CasparCG Server with "/build-scripts/set-variables-and-build-linux.sh" building will include the custom ffmpeg version!

7 years agofix compiling ffmpeg dependencies on ubuntu 14.04.3 & 16.04.1 amd64
walterav1984 [Sun, 29 Jan 2017 12:45:27 +0000 (13:45 +0100)]
fix compiling ffmpeg dependencies on ubuntu 14.04.3 & 16.04.1 amd64

7 years agofix download of zlib by updating URL
walterav1984 [Sun, 29 Jan 2017 12:25:07 +0000 (13:25 +0100)]
fix download of zlib by updating URL

7 years ago[build] Added the modified build script based on an old version of https://github...
Helge Norberg [Fri, 27 Jan 2017 18:43:29 +0000 (19:43 +0100)]
[build] Added the modified build script based on an old version of https://github.com/zimbatm/ffmpeg-static that has been used to build the Linux ffmpeg binaries

7 years ago[image_mixer] #486 Fixed bug where glReadPixels() was done from the last drawn to...
Helge Norberg [Fri, 27 Jan 2017 16:26:36 +0000 (17:26 +0100)]
[image_mixer] #486 Fixed bug where glReadPixels() was done from the last drawn to texture instead of always from the target texture. This means that for example a MIXER KEYER layer without a layer above to key, as well as a separate alpha file with MIXER OPACITY 0 now works as expected

7 years ago[ffmpeg_producer] Remove unused flags variable in queued_seek
Dimitry Ishenko [Tue, 22 Nov 2016 19:52:07 +0000 (14:52 -0500)]
[ffmpeg_producer] Remove unused flags variable in queued_seek

7 years ago[CHANGELOG] Updated
Helge Norberg [Fri, 27 Jan 2017 13:37:17 +0000 (14:37 +0100)]
[CHANGELOG] Updated

7 years agoMerge pull request #501 from dimitry-ishenko-casparcg/next
HellGore [Fri, 27 Jan 2017 13:21:04 +0000 (14:21 +0100)]
Merge pull request #501 from dimitry-ishenko-casparcg/next

Add support for IN and OUT parameters in PLAY, CALL and SEEK commands

7 years ago[image_producer] Added LENGTH parameter to allow for queueing with LOADBG AUTO.
Helge Norberg [Thu, 26 Jan 2017 16:27:31 +0000 (17:27 +0100)]
[image_producer] Added LENGTH parameter to allow for queueing with LOADBG AUTO.

7 years ago#516 Fixed bug with thumbnail generation when there are .-files in the media folder
Helge Norberg [Wed, 25 Jan 2017 16:52:17 +0000 (17:52 +0100)]
#516 Fixed bug with thumbnail generation when there are .-files in the media folder

7 years ago#541 Fixed regression in html producer
Helge Norberg [Wed, 25 Jan 2017 16:39:47 +0000 (17:39 +0100)]
#541 Fixed regression in html producer

7 years ago[AMCP] #517 Fixed bug where CINF only returned the first match
Helge Norberg [Wed, 25 Jan 2017 10:31:57 +0000 (11:31 +0100)]
[AMCP] #517 Fixed bug where CINF only returned the first match

7 years ago[AMCP] #524 Added support for listing contents of a specific directory for CLS, TLS...
Helge Norberg [Tue, 24 Jan 2017 17:22:53 +0000 (18:22 +0100)]
[AMCP] #524 Added support for listing contents of a specific directory for CLS, TLS, DATA LIST and THUMBNAIL LIST

7 years agoFixed build script error on Windows
Helge Norberg [Tue, 24 Jan 2017 17:18:22 +0000 (18:18 +0100)]
Fixed build script error on Windows

7 years ago[general] Copy casparcg_auto_restart.bat into Windows releases
Helge Norberg [Tue, 24 Jan 2017 16:20:44 +0000 (17:20 +0100)]
[general] Copy casparcg_auto_restart.bat into Windows releases

7 years ago[general] Added support for RESTART in Linux startup script run.sh
Helge Norberg [Tue, 24 Jan 2017 16:14:09 +0000 (17:14 +0100)]
[general] Added support for RESTART in Linux startup script run.sh

7 years ago[general] #529 Handle stdin EOF as EXIT.
Helge Norberg [Tue, 24 Jan 2017 15:12:28 +0000 (16:12 +0100)]
[general] #529 Handle stdin EOF as EXIT.

7 years ago[html_producer] #525 Fixed bug where only URL:s with . in them where recognized.
Helge Norberg [Tue, 24 Jan 2017 13:45:50 +0000 (14:45 +0100)]
[html_producer] #525 Fixed bug where only URL:s with . in them where recognized.

7 years ago[ffmpeg_producer] #518 Fixed bug where decoders sometimes requires more than one...
Helge Norberg [Mon, 23 Jan 2017 17:26:44 +0000 (18:26 +0100)]
[ffmpeg_producer] #518 Fixed bug where decoders sometimes requires more than one video packet to decode the first frame

7 years ago[AMCP] Fixed access violation
Helge Norberg [Thu, 19 Jan 2017 13:59:21 +0000 (14:59 +0100)]
[AMCP] Fixed access violation

7 years ago[AMCP] #475 Added special command REQ that can be prepended before any command to...
Helge Norberg [Tue, 17 Jan 2017 16:45:54 +0000 (17:45 +0100)]
[AMCP] #475 Added special command REQ that can be prepended before any command to identify the response with a client specified request id, allowing a client to know exactly what asynchronous response matched a specific request.

7 years ago[framerate_producer] Fixed bug when INFO was used on a not yet playing framerate...
Helge Norberg [Tue, 17 Jan 2017 15:36:51 +0000 (16:36 +0100)]
[framerate_producer] Fixed bug when INFO was used on a not yet playing framerate producer

7 years ago[ffmpeg_consumer] #534 Fixed bug in parsing of paths containing -
Helge Norberg [Tue, 17 Jan 2017 14:39:31 +0000 (15:39 +0100)]
[ffmpeg_consumer] #534 Fixed bug in parsing of paths containing -

7 years ago[CHANGELOG] Updated CHANGELOG
Helge Norberg [Tue, 17 Jan 2017 14:36:40 +0000 (15:36 +0100)]
[CHANGELOG] Updated CHANGELOG

7 years ago[CHANGELOG] Updated CHANGELOG
Helge Norberg [Fri, 13 Jan 2017 16:02:50 +0000 (17:02 +0100)]
[CHANGELOG] Updated CHANGELOG

7 years ago[decklink_consumer] Fixed possible dead-lock in frame queue
Helge Norberg [Fri, 13 Jan 2017 16:02:00 +0000 (17:02 +0100)]
[decklink_consumer] Fixed possible dead-lock in frame queue

7 years ago[mixer] Rewrote the chroma key code to support variable hue, instead of fixed green...
Helge Norberg [Thu, 12 Jan 2017 16:54:13 +0000 (17:54 +0100)]
[mixer] Rewrote the chroma key code to support variable hue, instead of fixed green or blue. Threshold setting was removed in favour of separate hue width, minimum saturation and minimum brightness constraints.

7 years agoMerge branch '2.1.0' of https://github.com/aruanoc/Server into 2.1.0
Antonio Ruano Cuesta [Wed, 11 Jan 2017 17:20:36 +0000 (12:20 -0500)]
Merge branch '2.1.0' of https://github.com/aruanoc/Server into 2.1.0

7 years agoAdd video modes 2160p5000, 2160p5994 and 2160p6000
Antonio Ruano Cuesta [Thu, 26 May 2016 21:09:58 +0000 (17:09 -0400)]
Add video modes 2160p5000, 2160p5994 and 2160p6000

7 years agoRemove platform name from linux build script
krzyc [Thu, 8 Dec 2016 15:23:47 +0000 (16:23 +0100)]
Remove platform name from linux build script

7 years ago#516 Provided better logging to be able to see the problem.
Helge Norberg [Mon, 5 Dec 2016 10:14:50 +0000 (11:14 +0100)]
#516 Provided better logging to be able to see the problem.

7 years ago#508 Updated CHANGELOG
Helge Norberg [Mon, 28 Nov 2016 11:07:08 +0000 (12:07 +0100)]
#508 Updated CHANGELOG

7 years agoMerge pull request #509 from SuperFlyTV/2.1.0
HellGore [Mon, 28 Nov 2016 11:03:01 +0000 (12:03 +0100)]
Merge pull request #509 from SuperFlyTV/2.1.0

changed the casing of the config-parameter mipmapping_default_on to m…

7 years agochanged the casing of the config-parameter mipmapping_default_on to mipmapping-defaul...
Jesper Stærkær [Fri, 25 Nov 2016 17:30:30 +0000 (18:30 +0100)]
changed the casing of the config-parameter mipmapping_default_on to mipmapping-default-on, fixing CasparCG/Server#508

7 years ago#174 Fixed bug in the contrast/saturation/brightness code where the wrong luma coeffi...
Helge Norberg [Thu, 24 Nov 2016 21:27:18 +0000 (22:27 +0100)]
#174 Fixed bug in the contrast/saturation/brightness code where the wrong luma coefficients was used.

7 years ago#488 Fixed bug where HD material was always recorded using the BT.601 color matrix...
Helge Norberg [Thu, 24 Nov 2016 17:49:41 +0000 (18:49 +0100)]
#488 Fixed bug where HD material was always recorded using the BT.601 color matrix instead of the BT.709 color matrix.

7 years ago[ffmpeg_producer] Add support for IN and OUT parameters in PLAY, CALL and SEEK commands
Dimitry Ishenko [Thu, 17 Nov 2016 20:45:15 +0000 (15:45 -0500)]
[ffmpeg_producer] Add support for IN and OUT parameters in PLAY, CALL and SEEK commands

7 years ago[build] Created automatically generated build number, so that it is easier to see...
Helge Norberg [Wed, 23 Nov 2016 12:15:19 +0000 (13:15 +0100)]
[build] Created automatically generated build number, so that it is easier to see whether a build is newer or older than an other.

7 years ago[System Audio] Cache aligned vector usage.
Helge Norberg [Wed, 23 Nov 2016 11:19:23 +0000 (12:19 +0100)]
[System Audio] Cache aligned vector usage.

7 years ago[CHANGELOG] Updated changelog.
Helge Norberg [Wed, 23 Nov 2016 10:19:37 +0000 (11:19 +0100)]
[CHANGELOG] Updated changelog.

7 years agoMerge pull request #500 from dimitry-ishenko-casparcg/fixes
HellGore [Wed, 23 Nov 2016 10:16:10 +0000 (11:16 +0100)]
Merge pull request #500 from dimitry-ishenko-casparcg/fixes

Increase stream buffer size limit to 120

7 years ago[ffmpeg_producer] Increase stream buffer size limit to 120
Dimitry Ishenko [Thu, 17 Nov 2016 14:36:04 +0000 (09:36 -0500)]
[ffmpeg_producer] Increase stream buffer size limit to 120

7 years ago[CHANGELOG] Updated changelog.
Helge Norberg [Tue, 22 Nov 2016 21:26:55 +0000 (22:26 +0100)]
[CHANGELOG] Updated changelog.

7 years ago[uptime] Installed previously forgotten General Protection Fault handler in the Conso...
Helge Norberg [Tue, 22 Nov 2016 21:23:07 +0000 (22:23 +0100)]
[uptime] Installed previously forgotten General Protection Fault handler in the Console Thread.

7 years ago[logging] Simplified code for setting kernel thread name in Linux.
Helge Norberg [Tue, 22 Nov 2016 21:17:33 +0000 (22:17 +0100)]
[logging] Simplified code for setting kernel thread name in Linux.

7 years ago[logging] Suppress the logging of full path names in stack traces for Linux as well.
Helge Norberg [Tue, 22 Nov 2016 21:16:16 +0000 (22:16 +0100)]
[logging] Suppress the logging of full path names in stack traces for Linux as well.

7 years ago[logging] Made the Linux ThreadId be the actual thread id in the log.
Helge Norberg [Tue, 22 Nov 2016 21:14:42 +0000 (22:14 +0100)]
[logging] Made the Linux ThreadId be the actual thread id in the log.

7 years ago[logging] Suppress the logging of full path names in stack traces so that only the...
Helge Norberg [Tue, 22 Nov 2016 19:39:52 +0000 (20:39 +0100)]
[logging] Suppress the logging of full path names in stack traces so that only the relative path within the source tree is visible.

7 years ago[env] Changed name of identifiers in code from thumbnails to thumbnail for consistency.
Helge Norberg [Tue, 22 Nov 2016 19:17:48 +0000 (20:17 +0100)]
[env] Changed name of identifiers in code from thumbnails to thumbnail for consistency.

7 years ago[AMCP] INFO PATHS now adds all the path elements even if they are using the default...
Helge Norberg [Tue, 22 Nov 2016 14:14:37 +0000 (15:14 +0100)]
[AMCP] INFO PATHS now adds all the path elements even if they are using the default values.

7 years ago[env] Added backwards compatibility (with deprecation warning) for using thumbnails...
Helge Norberg [Tue, 22 Nov 2016 14:08:20 +0000 (15:08 +0100)]
[env] Added backwards compatibility (with deprecation warning) for using thumbnails-path instead of thumbnail-path in casparcg.config.

7 years ago[env] Fail early with clear error message if any of the configured paths are not...
Helge Norberg [Tue, 22 Nov 2016 13:40:20 +0000 (14:40 +0100)]
[env] Fail early with clear error message if any of the configured paths are not creatable/writable.

7 years ago[version.tmpl] Changed tag to Beta 1 2.1.0_Beta1
Helge Norberg [Tue, 15 Nov 2016 20:23:27 +0000 (21:23 +0100)]
[version.tmpl] Changed tag to Beta 1

7 years ago[CEF] excluded libcef.pdb from Windows build to be able to change back to .zip format...
Helge Norberg [Tue, 15 Nov 2016 20:22:15 +0000 (21:22 +0100)]
[CEF] excluded libcef.pdb from Windows build to be able to change back to .zip format which is more supported out of the box on most systems.