Aegisub/OverLua
Niels Martin Hansen c68a782820 Fix really stupid parameter-related bug in box blur, and update documentation.
Originally committed to SVN as r1480.
2007-08-12 23:21:45 +00:00
..
docs Fix really stupid parameter-related bug in box blur, and update documentation. 2007-08-12 23:21:45 +00:00
avisynth.cpp Added VFR support. (Untested, as usual.) 2007-08-11 22:06:01 +00:00
avisynth.h Another project for the Aegisub repository... 2007-08-11 19:59:48 +00:00
cairo_wrap.cpp General cleaning up. 2007-08-12 23:14:45 +00:00
cairo_wrap.h General cleaning up. 2007-08-12 23:14:45 +00:00
CImg.h Another project for the Aegisub repository... 2007-08-11 19:59:48 +00:00
csri.cpp Another project for the Aegisub repository... 2007-08-11 19:59:48 +00:00
GPLv2.txt Another project for the Aegisub repository... 2007-08-11 19:59:48 +00:00
Licence_CeCILL-C_V1-en.txt Another project for the Aegisub repository... 2007-08-11 19:59:48 +00:00
overlua.cpp Support a free-form string argument passed from Avisynth to the Lua script. 2007-08-11 20:40:37 +00:00
overlua.h Support a free-form string argument passed from Avisynth to the Lua script. 2007-08-11 20:40:37 +00:00
raster_ops.cpp Fix really stupid parameter-related bug in box blur, and update documentation. 2007-08-12 23:21:45 +00:00
raster_ops.h Another project for the Aegisub repository... 2007-08-11 19:59:48 +00:00
readme.txt Another project for the Aegisub repository... 2007-08-11 19:59:48 +00:00
vfr.cpp Added VFR support. (Untested, as usual.) 2007-08-11 22:06:01 +00:00
vfr.h Added VFR support. (Untested, as usual.) 2007-08-11 22:06:01 +00:00
video_frame.h Another project for the Aegisub repository... 2007-08-11 19:59:48 +00:00

OverLua is a plugin library that runs a Lua script to process video frames,
primarily intended to produce advanced overlay graphics. The target audience
is currently primarily programmers.

The name is intended as a pun on Overlay and Lua.

To help produce overlay graphics, OverLua provides an interface to the
Cairo vector graphics library. A library of functions to do raster-based
graphics processing is also included.

Curerently the only known-working plugin interface to OverLua is the Avisynth
interface. A CSRI interface is also included but it's neither tested nor
actively maintained. Patches to make the CSRI interface work are most welcome.
Further interfaces would also be appreciated, eg. one for mencoder.

The most thorough documentation is still the source code but I'm working on
throwing together something more useful. See the other text files included
in the distribution.


Notes on the pre-built DLL file
-------------------------------

The included pre-built DLL is compiled with Microsoft Visual C++ 2005 SP1
and so will require the runtime library for that version of the compiler.
You can download the required runtime library at this location:

<http://www.microsoft.com/downloads/details.aspx?FamilyID=200b2fd9-ae1a-4a14-984d-389c36f85647&DisplayLang=en>

The DLL is built with SSE2 optimisations, meaning it will very likely crash
if you attempt to use it on a computer without SSE2 support.

Finally, the DLL is built with OpenMP optimisations enabled, which means it
will take advantage of multi-core and other SMP systems if available. The
OpenMP optimisations are only in the raster image filtering and the
Cairo surface/video frame interaction functions. If you do not use the raster
graphics operations much you won't see much gain from this SMP support either.


Licensing
---------

OverLua is licensed under version 2 of the GNU General Public License. This
means that you get no warranties of any kind.
See the file GPLv2.txt for details.