AVI Player (FreeBasic)
by ssjx (http://ssjx.co.uk)

This program can play AVI files created using VirtualDub and possibly other applications (untested).

The AVI needs to:
	* Have a resolutions of less than 320x240
	* Have a width that is a multiple of 4
	* Be either Uncompressed or compressed using the MSVC codec.
	* Have no audio

If the AVI is uncompressed and has a resolution <= 160x120, it will be doubled.

Compile using FreeBasic with:
	fbc *.bas

For additonal checks/safety, compile with: 
	fbc -exx *.bas


Version 0.2 (01/06/2026)
 + General tidy
 + Uses the better AVI parser (from Viewer)
 + Included exe compiled with fbc 1.10.1 (32bit)