Avi2Flc by ssjx (http://ssjx.co.uk)
========================================

Avi2flc can convert AVI files into 256 colour FLC animations.

This was made using the D Programming Language (https://dlang.org/)

Usage
-----

avi2flc myfile.avi

This will result in a file called 'myfile.avi.flc'

Compatability
-------------

The files produced should work with anything that can play FLI/FLC files.

Getting your AVI in the correct format
--------------------------------------

The AVI file needs to:

* Have a resolution with a width divisible by 4.
* Be 24/32bit uncompressed or compressed using the MSVC codec.
* Have no audio.

VirtualDub (http://virtualdub.org/) is great for creating compatible AVI files.

Changes
-------
v0.5 (May 2023)
+ Ring frame creation fixed again (old code not removed)...
+ Disabled best mode as not working correctly

v0.4 (Feb 2023)
+ Better AVI parser
+ Incorrect/unnecessary size checks
+ Ring frame creation improved
+ Changed handler check/case change

v0.3 (Oct 2020)
+ Makes use of modules so easier to compile and better contained
+ MSVC decoder! (Best mode does not work with msvc avi files...)
+ Immutables
+ Some cast() removed due to more accurate shifts

v0.2
+ Name change as it creates FLC not FLI files...
+ Some loops changed to use foreach()
+ Can now handle 32bit AVI files 
+ Added switch '-best' for better colours, slow though...
+ RLE compression!

