summaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: d4ca6fb35fa3514c75c7d1646a5875e0ea44c481 (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
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
mplayer (0.99)
  pre1:
  
    NOTE: the mplayer 'main' branch was forked at the time of 0.90-rc4, so
    0.90-rc5 (and later 0.90 releases) changes are independent!
    (it also means that there are main-only and 0_90-only changes too)

    DOCS:
    * DOCS/Language/ dirs renamed to DOCS/id, English files moved to DOCS/en
    * HTML --> XML format conversion (English, Russian and French for now)
    * new Spanish DOCS translation
    * man page restructured, options ordered
    * Finally merged libavc-option.txt into the man page.
    * traditional Chinese help file

    Big/Structural changes:
    * linux/ dir renamed to osdep/
    * postproc/postproc* files moved to libavcodec
    * old libmpeg2 replaced with patched version of the 0.3.1 release
    * docs priority & installation (--language=ab,cd,ef,all and so on)
    * yuv2rgb conversion removed from most vo drivers (like fbdev, gif89 etc)
    * -vop option obsoleted by reverse-order -vf, big config layer changes
    * stream layer "cleanup", -dvd -> dvd:// etc
    * autosub fuzziness, it tries to load all subs with similar filenames
    
    Ports:
    * HPUX fixes
    * Ported to Darwin / Mac OS X
    * Ported to Win32/MinGW (including network, timers, getch etc)
    * win32 codecs DLL support on Win32/Cygwin (and MinGW too!)
    * Lots of Altivec optimizations
    * Some ARM fixes
    
    Codecs/demuxers support:
    * realaudio win32 dlls support
    * various realaudio/realvideo fixes, including WxH bugs, Sipr etc
    * various realmedia a-v sync fixes
    * realaudio v4 demuxer
    * realaudio 14_4 and 28_8 codecs support (both binary dlls and native code)
    * realmedia rtsp:// support (independent from the live.com rtsp stuff!)
    * matroska demuxer
    * demuxer: enabling mpeg4-es autodetection, h264-es support
    * .wav extradata parsing (for truespeech, atrac3 etc)
    * DVB input driver, mpeg-TS demuxer
    * hwac3: DTS passthru support
    * new filters: down3dright, detc, telecine, tfields, ilpack, ivtc, dsize
    * vf layer: slices support (crop, expand, swscale only)
    * vf scale aspect fixes
    * swscaler: cleanup & API change, yv12 -> yuy2 in alpha asm, -fPIC compileable
    * swscaler: brightness/cont/sat. and different YUV matrices support
    * NUV encoding
    * SGI image files decoding (-mf)
    * Theora video (using libtheora/libogg) support
    * DivX.com 5.0.5 libs support
    * support for latest XviD en/decoder features
    * decoder for Hauppauge PVR 250/350 MB-YUV format (fourcc HM12)
    * support for Vanguard's win32 h264 etc codecs

    FFmpeg/libavcodec:
    * libavcodec: static,const,compiler warning cleanup, UINTX -> uintx_t
    * huffyuv v1 support
    * PAL 4:1:1 SMPTE 314M DV streams support, NTSC DV last MB column fix
    * fixing padding bug autodetection for some rare files
    * DspContext.(i)dct_* bitexact cleanup
    * user setable quantizer bias
    * mpeg1 slice encoding support
    * msmpeg4 2-pass support
    * H264 video decoding
    * Indeo 3 video decoding
    * buggy VP3 video decoder (no UMV and inaccurate idct)
    * Sorenson 3 (SVQ3) video decoder (it's actually a h264 variant)
    * 3IV1 (3ivx v1) decoding, ASV1 (ASUS Video v1) decoding
    * Improved SVQ1 decoding (using FFmpeg VLC functions)
    * truncated unary binerization, unary k-th order exp golomb binarization :)
    * FFV1: lossless YUV codec, compress a lot better than huffyuv, but slower
    * lossless MJPEG en/decoding, pegasus "pseudo yuv" (=RCT) decoding

    Others:
    * TOOLS/plotpsnr.pl: PSNR plotting tool using gnuplot 
    * DOCS/tech/mpcf.txt: MPCF/NUT draft/specification
    * vo/x11: fix detection of metacity
    * configure: enable vidix for ppc
    * spudec.c: Fix "invalid fragment" handling, Improved subtitle queueing
    * TVout/matroxtv: various improvements
    * tdfx_vid driver & vo support (3dfx cards overlay)
    * mga_vid: various fixes, 16MB G400 detection, support for multiple cards
    * new svgalib vo driver
    * v4l capturing: various bugfixes, video eq support
    * network streaming layer: IPv6 support
    * playtree parsing speedup :)
    * vo_directfb2: triple buffering support,configuration sys changed,fixes
    * various URL parsing fixes
    * GUI PPC (reverse byteorder) fixes
    * crashing on broken config files finally fixed!
    * OpenGL driver fixes


mplayer (0.90)

  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 permis