summaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: d4701f71d6f936e626ccfff4c2a0cafd90fe0889 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157

mplayer (0.90)

  final:  "CounterCounter"

  rc4:  "FlameCounter"

    DOCS:
    * some clarification and updates in the English DOCS
    * massive translation and help-file updates

    Fixes:    
    * -ac hwac3 fixed (was broken in rc3)
    * vo_svga: 4bp & 8bpp fixes
    * various GUI fixes, including some critical bugs
    * rage128 VIDIX PPC fixes
    * libmenu: one crash fixed, some cleanup
    * fixed ./configure --cc="ccache gcc"
    * -loop fixes, now -loop 2 plays it twice :)
    * the volume symbol of OSD fixed (|\ -> /|)
    * 32bpp QT-RLE support
    * Altivec on non-Darwin systems support
    * QuickTime reference file support fixes
    * mp3lib: layer-2 decoding fixes
    * updates to extension->demuxer mapping table
    * libavcodec: DivX 5.03 decoding fix
    * ao_oss: limited channels handling fixed
    * fixed OGM subtitles and iconv
    * fixed -subcp option with unicode truetype fonts
    * -mf: type detection (based on extension), better defaults
    * vo_xv: -fixed-vo support fixed (fullscreen switching)
    * ogg-in-avi (audio format 0xFFFE) demuxing fixed
    * vorbis decoding fixed (outer loop cleanup)
    * swscaler: 4bpp depth 1 pixel/byte format support for -vo svga
    * missing error message in command line parser for missing parameters
    * swscaler: YVU9->YV12 fixes
    * -ao mpegpes + -ac hwac3 fixed
    * -ao pcm bogus wav header fixed
    * -vo x11 + -wid fixed
    * auto-insert the 'palette' filter if needed, support fixed in filters
    * the sig11 when playing second audio-only file fixed
    * configure: detection of cdda, nas, i18n, svgalib, faad2, lame fixed
    * -af/-af-adv support in mencoder fixed
    * libmpdvdkit2: upgraded to use libdvdcss 1.2.5
    
    Features:
    * raw video support (-rawvideo, similar to -rawaudio)
    * experimental mpeg4-ES support (enable with -demuxer 27 -fps xxx)
    * new video filter: field (cheap deinterlacer)
    * dvd/vobsub improvements: positioning, optional gaussian blur scaler
    * vf_bmovl: 400% speedup :)
    * libavcodec: native DV audio decoder
    * GIF demuxer (for animated GIFs)
    * new noise removal filter: -vop denoise3d
    * per-channel gamma and MMX-opt'ed bri/cont/saturation support in -vop eq2
    * live.com lib support cleanup, support for more stream types
    * importing the playtree into the Gui instead of gui's own playlist hack
    * support for the xvid and divx4/5linux libraries at the same time
    * -fstype option: override priority/layer of the fullscreen switch methods
    * libavcodec: some B-frames related encoding failures/crashes fixed

  rc3:  "BugfixCounter"
  
    DOCS:
    * English man page & HTML docs updates
    * audio filter documentation
    * help_diff.sh doesn't depend on BASH any more
    * Hungarian, French, Italian, German, Polish(?) docs synced
    
    Important fixes:
    * X11 fullscreen switching (yes, again...) rewritten, some x11 code cleanup
    * Voxware and QuickTime DLLs finally work (was broken in some contexts)
    * VIDIX Radeon support cleanup, should really solve the pink screen bugs
    * Cygwin: -vo directx crashes and garbled picture with some files fixed
    * OGM/Ogg seeking (broken frames) fixed, subtitle fixes, XCD support
    * libaf: big (audio filter layer) updates, floating point support, speedup
    * ffwma2 fixed (better error resilience)
    * SPU queueing - fixes missing or early disappearing DVD subtitles
    * the mysterious DVD audio delay (150-300ms) fixed
    * extension-based fileformat detection fixed the .mp3 vs. mpeg-ps conflict
    * cache2 keeps buffer for non-seekable media, fixes quicktime streaming

    Fixes:
    * mp3lib CPU detection part cleanup, 'decwin' linker problem fixed
    * various cddb:// fixes, support of netbsd-1.6
    * libmpdvdkit2: Fix DVD authentication on Solaris 9
    * libmpdvdkit2: libdvdcss upgraded to 1.2.4 (keeping the key cache patch)
    * libmpdvdkit2: fixed decryption from multiple VOB files (hdd or darwin)
    * -ao arts, -ao oss: Fix 8-bit sound support
    * -vop expand + ffmpeg codecs conflicts solved, some other -vop bugs fixed
    * -ac ffmp2 with MPEG files (sig11) fixed
    * QT Qclp audio codec initialization fixed
    * mplayer exit codes cleanup (0 for quit/eof, 1 for error)
    * -ao win32 sync problems solved, -autosync 100 is still recommended
    * -vo gif89a uninit sig11 fixed
    * the usual compiler warning fixes :)
    * use -pphelp instead of -vop pp=help
    * various bigendian fixes
    * 16bpp packed yuv fixes in crop, mirror, rotate filters
    * some -fixed-vo and vo_preinit fixes, -vo sdl,xmga,mga should work...
    * various Solaris compatibility fixes (should work out of the box)
    * mms:// port fixes, tries 1755 if 80 failed
    * libavcodec: various ME fixes, B frames fixes, WMV2 slice decoding fixes
    * -ao alsa9 audio-file playback high cpu usage fixed
    * libaf updates, 2-pass initialization to get better filter path
    * better detection of playlists, support for [Reference]-style format
    * handle quicktime reference media files as playlist
    * cddb:// & cdda:// cdrom device name fixes on linux and *BSD
    
    Features:
    * -ao esd: new EsounD audio driver
    * -vo dxr3: new NORM option
    * Xanim & RealPlayer binary Codecs working on PPC
    * Radeon 9000 support in VIDIX, colorkey restoring for all Radeons
    * Initial PPC (Big-Endian) support in VIDIX Rage128 driver
    * PNM:// streaming support (ported from xine)
    * Muxer layer: mencoder can now write MPEG-PS format, too (EXPERIMENTAL!)
    * libavcodec: wmv2 decoder (buggy/untested)
    * DVB "HEAD" (aka. NEWSTRUCT) drivers support
    * Subtitles background bounding-box support (optional grey-level & opacity)
    * libaf: 3 new filters: panning, compressor/limiter and a noise gate
    * per-mediafile config file support (for file-specific options)
    * iconv (codepage conversion) support for OGM (Ogg) subtitles
    * v4l: user friendly channel tuning
    * Freetype & old-style RAW font support usable (compilable) at the same time
    * vo_directfb2, vo_dfbmga: DirectFB 0.9.16 support
    * libavcodec: motion estimation pre pass, qpel encoding, trellis quantization
    * libavcodec, liba52, mp3lib: Altivec optimizations
    * keep window's aspect ratio at resizing (x11, xv), requires WM support
    * -geometry option, also accepts X11 syntax
    * real .bin+.cue (S)VCD images support (-vcd 2 -cuefile xxx.cue)
    * postprocess: YUV 411/422/444 support, stride fixes
    * jumping of overlapping subs fixed, sorting is automatical, iconv fixes
    * mpeg2 telecine detection and automatic inverse telecine (mplayer only)

    Gui:
    * correct GTK widget destroy event handler
    * fullscreen switching fixed (sync with x11_common)
    * fix gtk submenu
    * new font render engine
    * added persistant history patch
    * SDL Audio configure window
    * add overlapping to preferences
    * add play bar for subwindow
    * add vertical potmeter for skin
    * fixed 'single pixel bug'
    * fixed some possible crashes

  rc2:
    General:
    * DOCS/tech/encoding-tips.txt and tech/directfb.txt
    * Some DOCS corrections/updates/sync/html fixes
    * GUI: fixed three submenu bugs and several other problems
    * more compiler warning fixes
    * NetBSD: cpu sse/sse2 detection & VCD reading fixes
    * fixed possible v4l capturing crash
    * Merged the EDL 0.5 patch - using & creating Edit-Lists (runtime cut&skip)
    * Subtitle lines alignment changeable: top/bottom/middle (key 'i')
    * -slang support for VobSub files
    
    VO:
    * X11 fullscreen switching code changed again (esp. for gnome2/kde3.1)
    * VIDIX: svgalib kernelhelper support (as libdha alternative)
    * VIDIX driver for trident cyberblade card
    * VIDIX: 8 pixel shift & pink window bugs fixed in the RADEON driver
    * New, rewritten version of vo_svga (vidix support etc) and vo_gif89
    * yuv4mpeg vs. framedrop/frameskip fixed
    
    Codecs:
    * libavcodec: fixed possible 20% speedloss bug
    * support for the experimental (and buggy) dev-api-3 XViD CVS branch
    * fallback to built-in codecs.conf if no compatible external file found
    * experimental Sorenson 1/3 encoding (using quicktime DLLs)
    * More accurate video bitrate calculation for AVI files
    * Presets support for libmp3lame encoding
    * CDDA seeking fixed
    * Win32/RealPlayer codecs DLL & 64bit Alpha Linux RealPlayer codecs support
    * XMMS Input plugins (demuxer & codec) support
    * Fixed a bug in MMX optimized mp3lib (triggered by OpenBSD)

  rc1:  "CodecCounter"
    Docs:
    * new French translation
    * Irix section
    * varous updates (both English & Hungarian)

    Codecs:
    * New codec pack download page (there are several packs for various IFs)
    * Win32/Quicktime codec plugin DLL support -> SVQ3 + QDMC/QDM2/Qclp !!!
    * Win32/DMO codec DLL interface support -> Windows Media Audio/Video 9 !!!
    * MJPEG 2000 support (using Morgan & Imagepower VfW DLLs)
    * libavcodec: optimized HuffYUV en/decoder, with experimental YV12 support
    * libavcodec: mjpeg-b support (need more samples)
    * more xvidencopts
    * VorbisGain tag support, tremor (fast vorbis decoder lib) support
    * BIG libavcodec messups & codmetics & cleanups & API changes & fixes
    * dynamic plugin support for libmpcodecs (for future binary codec releases)

    Gui:
    * general code cleanup, more robust gtk code
    * preferences: Screensaver, Autosync settings
    * cache=4 fixed (caused jerky/lagging/slow playback with gmplayer)

    Others:
    * new config/cmdline parser code (optional)
    * OSD menu system (preferences, shell, file selector etc)
    * libaf: runtime cpudetection, volume, equalizer, better format conversion
    * subtitle overlapping can be disabled, added subtitle sorting
    * subtitle dump to JACOsub and SAMI formats
    * displays URLs from 'Reference Media' type .mov files, dump generic data
    * find best (longest) streams in .mov files (twotowers...)
    * get position/length function in demuxers - for slavemode & -indentify
    * -ao alsa9 surround fixes, 8-bit PCM fixed
    * -vo dfbmga: -dr support, fixed OSD flickering
    * -stop-xscreensaver fixed, support for KDE screensaver too
    * More compiler warning fixes
    * Altivec (G4) support

  pre10:  "BirthdayCounter"
    Docs:
    * dvd auth, vcd sections extended (DOCS/cd-dvd.html)
    * unified *BSD sections, extended cygwin
    
    Fixes:
    * LIRC error message (Error while reading cmd fd X : Success) fixed
    * playback of some (streamed?) divx files fixed, starting with non-I frames.
    * -vo png fixed (removed builtin YV12 support, removed OSD)
    * some .mp3 playback/seek segfaults fixed
    * vidix mach64 colorkey on PPC fixed
    * -ao sdl now handles "featureless" soundcards
    * -vo zr fixes
    * fixed sig11 if vo init failed
    * various dxr2 and dxr3 fixes
    * v4l buffering fixed
    * fixed multiple reads caused by byteswapping macro (mjpeg.c, mach64_vid.c)
    * cleanup of postprocessing code - now it's threadsafe and can be shared
    * ported to GNU/Hurd
    * cleanup of AVI pts (timestamp) handling - no more BPS hack in mplayer.c
    * small cleanup of A-V sync code - using relative timers instead of absolute
    * GUI code cleanup, obsolete files/dirs removed
    * various small bugfixes, endianess fixes
    * mencoder: -pass option removed, use -divx4opts pass=N / -lavcopts vpass=N
    * mencoder: "ff_rate_estimate_qscale: Assertion `q>0.0' failed" fixed!
    * mencoder: -ovc xvid fixes, cleanup, enhancements
    * screensaver/dpms re-enabling fixed
    * realvideo demuxer fixes - asf-style stream detection method
    
    Features:
    * -ao win32 (for windows port)
    * libavcodec: native WMA v1/v2 (aka. DivX audio) decoder
    * hw-accelerated video eq for -vo x11 and gl2, using DirectColor colormap
    * overlapping subtitles support, jacosub (*.js) format support
    * -vo dxr3 got a new syncengine, ':sync', also added native overlay support,
      activate with ':overlay', read the manual for more info on how to set up
    * QDMC/QDM2/MACE audio codec support, using quicktime 5 win32 DLLs (libwine!)
    * libavcodec: various MJPEG decoding fixes - now it decodes all sample files!
    * mencvcd updates, sox/toolame support etc
    * -vo dfbmga - play video on Matrox G400's second head using directfb 0.9.14
    * RealAudio ATRC (sony atrac3) audio support (using binary plugin)
    
    Filters:
    * -af/-af-adv options cleanup
    * now auto-inserting -vop lavc for mpeg-only vo's
    * video filter API documented :)
    * better deblocking filter (-vop pp), pp/npp syntax changed!
    * -vop 2xsai - 2x scaler for drawn images (low color cartoon anims)
    * -vop unsharp - an sharp/blur filter, nice, but very slow
    * -vop il - (de)interleave fields
    * -vop swapuv - guess what :)
    * -vop boxblur - box blur...
    * -vop perpective
    * -vop sab
    * -vop smartblur

  pre9:
    Docs:
    * man page rewritten again :)))
    * man page updated to latest options, including lavc options
    * Chinese docs translation added
    * Hungarian translation is (was? :)) up-to-date again
    
    Cleanup:
    * divx4_vbr.c is now really GPL - with the permission of the DivX.com guys!
    * cyuv decoder restructuring, now supports planar YUV formats, too
    * removed obsolete variables, like has_audio, has_video, allow_dshow, fifo
    * help_mp-XX.h files moved to help/ subdirectory, removed obsolete entries
    * the obsolete 0x1ff eof hack removed from mpeg-es demuxer and decoders
    * stheaders.h cleanup, removed unneeded wine includes from mplayer core
    * tons of compiler warning fixes, including some 10l ones
    * mga/xmga vo shared code, vesa and svga drivers cleanup
    * major vo drivers are now -fixed-vo compliant: x11, xv, xvidix, xmga, gl2
    * cleanup of libmpdemux option handling - now it's mplayer-independent again
    * removed fork() from LIRC input module
    * libfame removed from main tree/release - libavcodec is faster, better etc.
    
    Fixes:
    * Some fullscreen switching fixes, including Metacity vs KDE 3.1
    * Many GUI bug fixes
    * -vo DGA fixes, cleanup
    * -dvdkey sig11 fixed
    * k6-3's 3dnowex vs mmxext sigill fixed in mp3lib
    * -vo gif89, jpeg U-V swapping fixed
    * RTC setup fixes, more verbose messages, hints
    * mencoder: demuxer/codec uninit order fixed (solves some sig11)
    * various v4l and ALSA capturing fixes
    * demux_mov: fixed crash with MPEG4 on SPARC, decoding on big endian
    * various NAS ao fixes
    * libvo: optional stride support for packed YUV / RGB formats
    * mencoder: set keyframe flag on audio packets, fixes Windows seeking problems
    * loader: fixed 2 10l bugs, ATI VCR2 DLL now working. using new style CS code.
    * demux_avi: always use block counter, even if dwSampleSize!=0, fixes some files
    * SPU decoder (DVD/VOB subs): fixed 2 major bugs causing lost subtitles
    * various memory leak fixes (valgrind rulez :)
    * fixed RealAudio SIPR(O) codec (the wrapper didn't find the dspr.so.6)
    * mms:// audio (radio) streaming fixed
    * DVB: -vop lavc=bitrate is working again
    * various big endian fixes

    Features:
    * new audio filter layer (libaf) - automatic samplerate conversion
    * experimental -vo directx driver for cygwin build
    * unrarlib included for rar'ed vobsubs
    * native xvid encoding (-ovc xvid) interface for mencoder
    * new softeq filter with gamma support: -vop eq2
    * -ao/-vo accepts list of drivers and can fall back to one, just like -ac/-vc
    * audio/video codec selection (-ac/-afm) rewritten, now uses codec/fm list
    * get_delay() smoothing (-autosync) - should help buggy sound drivers
    * smb:// URL support (disabled by default, ./configure part not yet done!)
    * support for 1/4/8bpp raw video (requires -vop palette / -vop 1bpp)
    * support for quicktime alaw/agsm audio codecs, 3IV2, 3VID video codecs
    * swscale can now output to YUY2 format, upscaled (default) or unscaled (-sws 0)
    * Vidix with LinuxPPC support (mach64 is confirmed to work)
    * GUI: cache, autoq settings, start in fullscreen, toggle button in menu
    * New video filter to overlay images over video: -vop bmovl
    
    Libavcodec:
    * RV10 codec cleanup (2nd level demuxer moved to demuxer layer)
    * MPEG4 interlaced DCT _en_coding support
    * luma masking support (encoding)
    * runtime selectable IDCT algo
    * faster MPEG1/2 decoder
    * DV decoding (both PAL and NTSC)
    * MPEG1 2-pass encoding support
    * better/cleaner error resilience (done in a 2nd pass after decoding)
    * h263/MPEG4 out of order slice decoding
    * -lavdopts bug= reworked, now uses flags, autodetects most of them
    * complete MPEG4 GMC decoding support
    

  pre8:
    Docs:
    * manpage has been rewritten, now has better indenting, and convertable to html
    * AUTHORS, MAINTAINERS converted back to separate text files, and updated.
    * ChangeLog file is included again (was removed after 0.18)
    * some new tech docs on libmpcodecs, updates/fixes in others, manpage-howto
    * more updates in translation files (help_mp-XX.h)
    * removed obsolete/unused entries from help_mp-en.h

    Cleanup:
    * xanim interface merged & fixed, now uses mpi and supports direct rendering
    * cleanup of libmpdemux stream layer, especially of TV and MF parts
    * some more unused files removed: vo_fsdga, vo_odivx, vd_rle, timer.c, ttf_load

    Fixes:
    * the http:// infinite memleak bug has been fixed, some WMS9 mms:// fixes
    * various sparc/sun, hpux and netbsd/openbsd portability fixes
    * -vop palette fixes, CRAM and QPEG colors are OK now
    * demuxer fixed for >2GB nuppelvideo files
    * mencoder: -ss fixed for 3-pass encoding
    * gui.conf locale bug fixed (again... hope this time it's ok)
    * X11 fullscreen switching fixed, when d_width == screenwidth
    * MOV files edit-list handling fixed - solved 'short read' issue
    
    Features:
    * new demuxer for .PVA files (fileformat of TV/DVB apps on win32)
    * -mf now supports TGA (24/32bpp uncomp/rle) images
    * libavcodec: support for interlaced mpeg-4 _de_coding
    * libavcodec: aspect ratio encoding support (mpeg4, mjpeg, h263?)
    * win32 DLL loader merged/synced with avifile CVS
  
  pre7:
    Cleanup:
    * libvo2, old input code & sis_vid removed, other code cleanups
    * tons of compiler warning fixes, some configure/makefile improvements
    * more messages are translated, many translations updated
    * docs review continued, html cleanups
    * option -vfm/-afm now uses names instead of numbers, driver IDs removed
    
    Code:
    * vfw/vfwex cleanup, support for runtime csp queries, 8bpp support
    * new native mszh/zlib codec
    * libavcodec: 2-pass control code rewritten, now everything customizable
    * libavcodec: mpeg4/xvid en/decoding support improved, rv10 decoding fixes
    * various realvideo demuxer and video codec fixes, sipr audio support
    * new video filters: soft eq (brightness), halfpack (deinterlacer), film noise  
    * .ogm subtitles support
    * optional freetype 2.1+ support for runtime-scalable .ttf font rendering
    * various networking and mms:// fixes, live.com support improved
    * various v4l video capturing and audio capturing fixes, audio input layer
    * libmpdvdkit2 - based on libdvdcss 1.2.2 + libdvdread 0.9.3 + key cache
    * alsa: iec958-init completly rewritten - better SP/DIF AC3 support
    
    Gui:
    * gui.conf locale bug fixed (hopefully)
    * gui preferences menu extended, runtime subtitle loading support
    * gui: drag'n'drop support
  
  pre6:
    * WMV1, Sorenson v1 (SVQ1) and RealPlayer 8.0 (RV20/30, Cook) codecs support
    * libavcodec M1 direct rendering
    * IPB support with Xv
    * libavcodec improvements, bugfixes (encoder and decoder side)
    * Raw DV demuxer
    * libdv-based DV audio/video decoder
    * Various MOV/MP4, RM and ASF/WMV demuxer bugfixes, improvements
    * Detection of AVI files which needs -ni
    * workaround for some Nandub bugs
    * Support for live.com RTP/RTSP streaming libraries
    * Support to rip DVD subs in VobSub format
    * bugfixes of mpsub/srt converter
    * Closed Captioning (ascii subs on RC1 DVDs) support
    * Massive directfb updates
    * Vidix fixes/updates, including fixes of all known radeon bugs
    * dithered 1/4/8 bpp support with -vo svga (EGA rulez:))
    * alsa9 fixes/improvements
    * native ARTS driver
    * various endianess and 64-bit fixes (including mencoder and -ao pcm)
    * tons of small compatibility/portability fixes (better cygwin, darwin support)
    * GUI fixes (playlist, audio/video equalizer, preferences)
    * Skins (fixed many small glitches, few new skins)
    * 'mencvcd' script (creating VCD/SVCD with mencoder)
    * html DOCS updates
    * manpage & README restructured (again :))

  pre5:
    Documentation:
    * lot of fixes, updates, cleanups
    * new README containing quick in