0.1
This is the first release.

0.2
Applied patch by Dan Scholnik for video files > 2 GB.

Some other change that may affect scripts you have made:
In the 0.1 release I set video_delay_ms to zero (from 180) in params.c
for DVD.
This because if you did enter delay in the command line it would
start at zero!

Now the video delay specified in the command line is ADDED to the
180 ms.
The 180 ms seems to be the value that causes zero delay between picture
and sound in the DVD players.

So: -D 180,0 now creates a 360 ms delay for video, and the audio will
be 180 ms early in the picture.
Not sure this is the best way, but for consistency, if one adds a delay of
say -D 90, you would expect video to be 90 ms late, not early :-)

This will break old scripts you may have, in those cases simply substract
180 for -D x, or , if x becomes negative because of that, set it to zero
and add the difference.
Example:
Version 0.1:
-D 170,33

Version 0.2:
-D 0,43

If you do not want this, uncomment the following line in main.h:
#define VIDEO_DELAY_MOD
and then do a make;make install

If you are a 'first time user' this does not apply to you.

Version 0.3:
Fix for AC3 in more then 2 channels by Dan Scholnik.
Dropped -D_LARGEFILE64_SOURCE from Makefile.


Version 0.4:
Added define NO_CLOCK_TICKS_500MS in main.h
In VBR in multplex.c this removes the CLOCK_TICKS_500MS subtraction in
extra_clock_ticks.
Not sure, but this solves a SCR / PTS to early underflow problem in sab.mvp
multi language.
BUT not using this.....
Applied fix by Andrew Church as in tcmplex for transcode, see:
http://zebra.fh-weingarten.de/~maxi/html/transcode-devel/2004-01/msg00063.html
This should fix 'pts moving backward' problem with dvdauthor 0.6.1


Version 0.4.1:
In multplex.c line 1624 changed  audio1_underflows = 0; to audio7_underflows = 0;
This should get rid of messages like:
INFO: !tcfound    audio PTS underflow at pack 30333 by 357.04ms
The alert was incorrect!


0.4.2:
In systems.c line 79, added i -= 3 for audio channels 2 through 7.
In multplex.c:
 line 1954 changed (buffer_space(&audio1_buffer) to (buffer_space(&audio2_buffer)
 line 2495 added audio2_au.length through audio7_au.length = 0.
 line 2787 added audio2_underflows through audio7_underflows.
 line 2842 added audio2_underflows through audio7_underflows.
Commented out some very verbose reports.
Changed ID to tcmplex-panteltje.
Commented out calls DisplayProgress("", 0); in domplex.c for all
audio channels so it does no longer print '***  (0)%'.
Changed a lot in reporting during scanning.


0.4.3:
Fixed delays, introduced -E command line flag to allow negative values for
video delay (up to 180 ms).
Rewrote that code, removed some old defines.

0.4.4:
Removed -E and negative delay options, because that asked for problems as users
could go below the required 180ms delay decoding time.
Extra error reports, cleaned up usage message.

0.4.5:
Added '\' at end of line 37 because gcc-3 reports an error if it is not there.

0.4.6:
Changed test mux_stop <= 0 to mux_stop < 0, else error message if -c flag not specified.

0.4.7:
Aplied patch by Skytt ville to make the command line option compatible with
the old tcmplex.


