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
|
*****************************************
AUTHORS
*****************************************
NOTE: NEVER send bug reports, help and feature requests directly to the
authors, but you're free to write mails about donating!
For donation requests visit http://www.mplayerhq.hu/homepage/donations.html.
___________________
The MPlayer project
~~~~~~~~~~~~~~~~~~~
MPlayer was originally written by Árpád Gereöffy (for a more complete history
see DOCS/HTML/en/history.html) and later extended by a bunch of other people,
some of which are listed here in alphabetical order. If you think you are
missing, feel free to send a patch.
Ackermann, Andreas (Acki) <asackerm@stud.informatik.uni-erlangen.de>
* LIRC support
* DGA support in libvo
adland <adland123@yahoo.com>
* support for various Windows DLL codecs (LCW2, ASLC)
* SMIL playlist parser
* many streaming bug fixes and improvements
* libfaad2 update
Anholt, Eric <eanholt@gladstone.uoregon.edu>
* CPU detection code
Ashberg, Folke <folke@ashberg.de>
* native AAlib driver (-vo aa)
Balatoni, Dénes <pnis@coder.hu>
* XMMS inputplugin support
* minor features & fixes mostly to make MPlayer work better on a PDA
Barat, Zsolt (joyping) <joy@streamminister.de>
* ao_alsa9 fixes, AC3 passthrough support
* ao_alsa unified ALSA audio output driver
Barbato, Luca (lu_zero) <lu_zero@gentoo.org>
* random AltiVec fixes
* other minor fixes
Baryshkov, Dmitry (lumag) <mitya@school.ioffe.ru>
* Russian documentation translation
* FLAC decoding support
* XML build system
Baudet, Bertrand <bertrand_baudet@yahoo.com>
* network streaming support author
* CDDB support
Bedel, Alban (albeu) <albeu@free.fr>
* MMS network streaming patches
* playtree and per-entry config
* playlist parsers
* new input layer, slave mode improvements
* audio only support
* MP3, WAV and Ogg demuxers, Ogg in AVI fixes
* support for audio from an external file
* DXR2 driver
* vo_aa improvements
* CDDA support
* OSD menu
* new modular config/command line parser code
Behrisch, Michael <list@behrisch.de>
* online audio stream switching for MPEG and Matroska files
Belev, Luchezar (lucho) <lucho@haemimont.bg>
* hw-accelerated video eq support into x11, gl2 (using DirectColor cmap)
Bérczi, Gábor (Gabucino) <gabucino@mplayerhq.hu>
* large parts the original HTML and TXT documentation
* original Hungarian documentation, homepage, console message translation
* second homepage design & gfx
* original homepage content
* testing, codecs quality & speed comparisons
* experimental MINIX port :) (what's funny about it?)
* MPsub subtitle format design
* AlienMind, BlueHeart, CubicPlayer, MidnightLove, netscape4,
WMP6, xanim, xine-lcd skins
Berecz, Szabolcs (Szabi) <szabi@inf.elte.hu>
* codecs.conf file parser
* config file and command line parser
* mga_vid fixes, module option, etc
* fbdev video output driver
* type #7 subtitle support
Beregszászi, Alex (al3x) <alex@fsn.hu>
* second project maintainer
* alsa5 and alsa9 audio output drivers in libao2
* ggi video output driver (www.ggi-project.org)
* XAnim codecs support
* VIVO files, codecs support
* TV grabbing support
* QuickTime hackings
* libavcodec support in MEncoder
* RM file format demuxer
* MEncoder framecopy
* yuv4mpeg1 support
* NuppelVideo demuxer changes
* subconfig
* VIDIX and libdha hackings
* Matrox driver port to VIDIX
* XVIDIX video output driver
* many other things (in libvo, libmad syncing, dec_audio/video and loader)
* libmpcodecs / libmpdemux hacking
* patch review
* dynamic a/v plugins (external shared ad/vd/.. objects)
* millions of bug fixes
Bitterberg, Tilmann <transcode@tibit.org>
* AVI OpenDML read support
Biurrun, Diego (DonDiego) <diego@biurrun.de>
* documentation all over the place
* command line option documentation completed
* README, wishlist, translations.txt
* random trivial fixes
* main tester and small fixes for the Cygwin and MinGW ports
* testing, bug reports
* homepage content improvements, design7, HTML fixed
* Hunglish to English translation everywhere
* head of the Ministry for English Composition
* ultrafina skin
* skin review part I
* patch review
Blomenkamp, Marcus <Marcus.Blomenkamp@epost.de>
* VIDIX patches (Rage128, Radeon 7000)
* OSS AC3 passthrough fix
Buehler, Andrew (The Wanderer) <inverseparadox@comcast.net>
* various documentation spelling and grammar corrections
* mp_msg transition on main source files
Bulgroz, Eviv <ebulgroz@yahoo.com>
* presets support for mp3lame encoding
* AVI demuxer time/bitrate calculation fixes
* various bug fixes
Bünemann, Felix (Atmos) <atmosfear@users.sourceforge.net>
* additional YUV formats fixes
* new font (mp_font2.zip)
* png video output driver
* flipping support (for Indeo 3/4, etc)
* SDL audio output driver in libao2
* RAW PCM/WAVE file writer for libao2
* Ogg Vorbis audio support
* aspect ratio code improvements, prescaling support
* Win32 (Cygwin) port
* DivX5Linux support
* AAC decoding support via libfaad2
* Darwin (Mac OS X) port
Bunkus, Moritz (Mosu) <moritz@bunkus.org>
* various OGM hacks/fixes
* OGMtools author
* Matroska demuxer
Christiansen, Dan Villiom Podlaski (danchr) <danchr@daimi.au.dk>
* timer-darwin.c
* ao_macosx
* build system cleanups for Darwin
Clagg, Jeff (snacky) <snacky@ikaruga.co.uk>
* minor updates and fixes for x264 support
* x264's encoding guide
* superficial clarity fixes for mpcf.txt
Compn <patriotact@gmail.com>
* #mplayer user wrangler (2003+)
* minor samples/bugs/win32 finder/tester
* small docs patches
Comstedt, Marcus <marcus@idonex.se>
* initial Solaris 8 x86 support
* configure fixes
Cook, Kees <mplayer@outflux.net>
* dvdnav hacks
* rawdv demuxer fixes
Davies, Stephen <steve@daviesfam.org>
* support for large video files (>2^32 bytes in size)
* surround sound aop plugin
Di Vita, Piero (Scognito) <scognito@libero.it>
* gnome, trium skins
* new GUI icons
* skin review part II
Diedrich, Tobias (ranma, ranmachan) <ranma+mplayer@tdiedrich.de>
* NAS audio output driver
* DXR2 driver
* softpulldown video filter
* ported Donald Graft's kerndeint video filter
* AVI OpenDML write support
Dietrich, Florian <flodt8@yahoo.de>
* MinGW networking support
Dobbelaere, Jeroen <jeroen.dobbelaere@acunia.com>
* original libmad support
Döffinger, Reimar (reimar) <reimar.doeffinger@stud.uni-karlsruhe.de>
* GL code fixes
* various fixes all over the place
* reworked live changing playback speed
* made MMS over HTTP stream selection work and modified ASF header parsing
* reimplemented ao_jack without bio2jack dependency
* musepack demuxer and decoder, based on Reza's patch
* speex decoder via libspeex
* MPEG-2 in GXF demuxer
* vo_gl ported to windows
* gl_commmon.[ch] to decrease code duplication
* OpenGL support for OSD, panscan, YUV->RGB conversion, texture buffers,
custom fragment programs and more
Dolbeau, Romain <romain@dolbeau.org>
* random AltiVec (PowerPC multimedia extensions) stuff
* vo_quartz YUV support & fixes
* endianness fixes
Dönmez, Ismail (cartman) <ismail.donmez@boun.edu.tr>
* compile fix for mga_vid to compile with Linux 2.5/2.6 kernels
* small fixes all around
Edele, Robert (yartrebo) <yartrebo@earthlink.net>
* remove_logo filter
Egger, Christoph <christoph_egger@gmx.de>
* vo_ggi updates
Elsinghorst, Paul Wilhelm <paul@uni-bonn.de>
* GUI: remote ESD support including software mixer
Ernesti, Bernd <mplayer@lists.veego.de>
* NetBSD support patches
Falco, Salvatore <sfalco@studenti.ing.uniroma1.it>
* jacosub parsing & dump support
* overlapping subtitles & sub sorting support
* SAMI subtitles dump support
Feigl, Johannes (jaf) <johannes.feigl@aon.at>
* original German docs translation (outdated)
* some improvements in configure, small patches
* found somebody (Thilo Wunderlich) who sent a DVB card
Felker, D Richard III (dalias) <dalias@aerifal.cx>
* lots of work on inverse telecine including initial support
* improved MEncoder (getting rid of DivX4 dependency, seeking, ...)
* antialiased DVD subtitles
* misc bug fixes and improvements, esp. in video filter/output system
* tech docs on encoding
* eq, halfpack, dint, detc, field, decimate, dsize, ilpack, ivtc,
tfields, pullup video filters
Ferguson, Tim <timf@mail.csse.monash.edu.au>
* open source Cinepak decoder
* open source CYUV decoder
Finlayson, Ross <finlayson@live555.com>
* LIVE555 Streaming Media library author
* RTP/RTSP streaming support
Forghieri, Daniele (xdanny) <guru@digitalfantasy.it>
* TGA output driver
* framestep & tile video filters
* initial Italian man page translation
* fixes and improvements to lavc audio encoding
Foth, Kilian A. <foth@informatik.uni-hamburg.de>
* slave mode
Franz, Fabian (Fabianx) <mplayer@fabian-franz.de>
* help with the libmpeg2 0.3.0 update
* playlist improvements
* KDE screensaver support
* mini skin
Gansser, Martin <mgansser@ngi.de>
* HP-UX port
Gereöffy, Árpád (A'rpi/ESP-team) <arpi@thot.banki.hu>
* project founder, first project maintainer
* MPlayer, MEncoder core, A-V sync
* libmpdemux, demultiplexer for MPEG, ASF, AVI, various fixes in others
* mp3lib, based on mpglib sources [MP3 audio decoder]
* getch2 [keyboard handler]
* some changes in libmpeg2 code (progressive frames, bitrate & fps support)
* libvo improvements: adding OpenGL support, bug fix in mga driver...
* triple buffering & YUY2 support (for DivX/MPEG-4) into mga_vid driver
* OSD & subtitle display code
* FFmpeg/libavcodec integration
* DivX4Linux (Project Mayo) support (see documentation)
* New DVD support using libdvdread
* MPEG PES output & DVB card support
* libmpcodecs design, porting video decoders, filters
Giani, Matteo <matgiani@ctonet.it>
* PVA demuxer
Goethel, Sven <sgoethel@jausoft.com>
* vo_gl2 video output driver
Gomez Garcia, German <german@piraos.com>
* SPDIF AC3 output for SBLive!
Gottwald, Alexander <Alexander.Gottwald@informatik.tu-chemnitz.de>
* various small bug fixes
Graffam, Michael <mgraffam@idsi.net>
* XF86VidMode support to vo_x11 and vo_dga
* video mode switching code to vo_dga
Gritsenko, Andriy N. (AG_LS) <andrej@lucky.net>
* drop-deinterlace (dint) video filter
* muxer layer, and new MPEG-PS muxer
Guyomarch, Rémi (rguyom) <rguyom@pobox.com>
* various fixes
* unsharp video filter
* XviD encoding support
Hammelmann, Jürgen <juergen.hammelmann@gmx.de>
* TOOLS/mencvcd author
Hertel, Christopher R. <crh@ubiqx.mn.org>
* md5sum code used by vo_md5sum. part of uCIFS library.
Hess, Andreas <jaska@gmx.net>
* upgrading libdvdcss in libmpdvdkit2
* various small bug fixes
Hickey, Corey <bugfood-ml@fatooh.org>
* telecine/interlacing HOWTO for the MEncoder documentation
* advanced audio usage guide for the MPlayer documentation
* muxer frame buffer for MEncoder
Hidvégi, Zoltán (Zoli) <mplayer@hzoli.com>
* filmdint video filter
Hoffmann, Jens <hoffmajs@gmx.de>
* additional YUV formats support
* found the big BITMAPINFOHEADER problem -> solved ASV2 pixelization
Holm, David (dholm, mswitch) <dholm@telia.com>
* DXR3 support
Horst, Bohdan (Nexus) <nexus@irc.pl>
* FreeBSD support
Hug, Hampa <hhug@student.ethz.ch>
* LUT-based soft eq video filter (vf_eq2)
* .ogm demuxer endianness fixes
Hurka, Tomas <tom@hukatronic.cz>
* Darwin DVD support (mpdvdkit2)
* various fixes
Isani, Sidik <lksi@cfht.hawaii.edu>
* get_delay() smoothing code (-autosync)
* RTC initialization fixes
* various small fixes
Issaris, Panagiotis (takis) <takis@lumumba.luc.ac.be>
* -playlist option
* NuppelVideo support
* various fixes
Jacobs, Aurelien <aurel@gnuage.org>
* standalone C Matroska demuxer
* DTS support
Jelveh, Reza (timebomb) <reza.jelveh@tu-harburg.de>
* NSV demuxer
* seeking in Real files without index
* savage_vid VIDIX driver
* miscellaneous small fixes and improvements
* first musepack decoding patch
Jermann, Jonas (g0th) <jjermann@gmx.net>
* manual page rewrite
* documentation
Johansson, Anders <ajh@atri.curtin.edu.au>
* old audio plugin system, some effect plugins
* new libaf interface design, implementation, plugins
Kain, Nicholas <njk@aerifal.cx>
* strl(cpy|cat) detection and conversion
* string handling cleanups
Kalinski, Filip (filon) <filon@pld.org.pl>
* X11 fulscreen switching fixes/cleanup
Kalvachev, Ivan (iive) <iive@yahoo.com>
* interlaced MPEG-2 support (libmpeg2)
* libvo2 draft
* configfile parser fixes
* SRT subtitle dump support
* Bulgarian console message translation (help_mp-bg.h)
* vo_svga rewrite
* various fixes and small improvements
* XvMC support (MPlayer & FFmpeg)
* XviD4 driver import (vd/ve_xvid4.c by GomGom)
Kaniewski, Wojtek <wojtekka@bydg.pdi.net>
* mouse wheel support
* made the FreeType + RAW font support work together
Kaplan, Kim Minh <kmkaplan@selfoffice.com>
* DVD and VOBsub subtitles display support
* DVD subtitles rip to VOBsub
Kärkkäinen, Samuli <skarkkai@woods.iki.fi>
* first DVD ripping guide
Keil, Jürgen <jk@tools.de>
* patched MPlayer to work on Solaris 8 x86
* various fixes (Win32, configure, etc)
* sun audio output driver in libao2
* mediaLib support in libavcodec
* esd audio output driver in libao2
Kesterson, Robert <robertk@robertk.com>
* yuv4mpeg video output driver
Kinali, Attila (KotH) <attila@kinali.ch>
* various small fixes in the X11 code
* xinerama support
* documentation
* patch application monkey, mailer daemon
Kovriga, Gregory <gkovriga@techunix.technion.ac.il>
* GUI drag & drop support
* GUI DVD fixes
* various small bug fixes in ASX/URL parser
Kühling, David <dvdkhlng@gmx.de>
* libtheora support, Ogg/Theora demuxing changes
Kuivinen, Fredrik (ksorim) <freku045@student.liu.se>
* OSD/subtitles outside a movie for SDL
* video filter layer draft, first implementation
* VirtualDub filter support (not yet finished/committed)
Kurshev, Nick <nickols_k@mail.ru>
* memcpy optimizations for AMD K7 and Intel Pentium III (fastmemcpy.h)
* CD-ROM tune info
* further 3DNow! optimizations into mp3lib and libac3 and FFmpeg
* first Russian documentation translation (outdated)
* radeon_vid, rage128_vid, radeonfb
* vesa video output driver
* VIDIX and libdha design, programming, Rage128/Radeon VIDIX drivers
Kuschak, Brian <bkuschak@yahoo.com>
* RTP streaming support (reading)
Kushnir, Vladimir <vkushnir@Alfacom.net>
* patched MPlayer to work on FreeBSD x86
Lambley, Dave <mplayer@davel.me.uk>
* HTTP cookie support
László, Gyula (Chass, Tégla) <chass-@freemail.hu>
* first fonts (mp_font1.zip)
* third and fourth homepage design & gfx
Le Gaillart, Nicolas <n@tourmentine.com>
* French documentation translation
* documentation updates and fixes
* 2nd half of the documentation HTML --> XML conversion
Lénárt, Gábor (LGB) <lgb@lgb.hu>
* configure script improvements
* Makefile improvements
* preliminary DVD support (libcss)
* various X11 cleanups and fixes
* HTMLization of the documentation
Leroy, Colin <colin@colino.net>
* GUI endianness fixes
* volume control with -ao sdl
* -ovc lavc endianness fixes
* -ao pcm endianness fixes
* libdha on PowerPC Linux
* mach64 VIDIX driver endianness fixes
Liljeblad, Oskar <oskar@osk.mine.nu>
* various OSD related patches
Lin, Sam <itrs@softwell.com.tw>
* -wid (plugger) patch
Lombard, Pierre (pl) <p_l@gmx.fr>
* new configure script
* general code maintaining, fixes, patch committing
Madick, Puk <pingy@swirvemail.com>
* KDE/GNOME2 fullscreen fix
* configparser fixes
Makovicka, Jindrich (henry, x0rph) <makovick@KMLinux.fjfi.cvut.cz>
* various bug fixes
* rewrote v4l video capturing, implemented audio capturing layer
* FreeType 2 font rendering support
Marek, Rudolf <MAREKR2@cs.felk.cvut.cz>
* gtf code for -vo vesa
* NeoMagic TV out support through VESA VBE
Megyer, László (Lez, Laaz) <lez@sch.bme.hu>
* subtitle reader
* screensaver + DPMS disable for libvo
Melanson, Mike (tmmm) <melanson@pcisys.net>
* MS Video1 codec open source implementation
* FLI demuxer, decoder
* unified ADPCM decoder (supports IMA/DVI, MS ADPCM, several others)
* FILM (.cpk) file demuxer
* RoQ file demuxer, audio/video decoder
* QT SMC decoder
* QT RLE decoder
* MS RLE decoder reimplementation
von Merkatz, Arwed <v.merkatz@gmx.net>
* fontconfig font lookup support
Merritt, Loren (pengvado) <lorenm@u.washington.edu>
* x264 encoding support
* x264 documentation
* some libavcodec documentation
Mierzejewski, Dominik (Rathann) <dominik@rangers.eu.org>
* compiler warning fixes
* official Red Hat RPM packages
* Polish documentation translation
Milushev, Mihail <lanzz@lanzz.org>
* GIMP font generator plugin (TOOLS/subfont-gimp)
Mistry, Nehal (Nehal) <nehalmistry@gmx.net>
* various audio driver fixes
Mohari, András <mayday@varoshaza.nagyatad.hu>
* skin documentation
* various docs updates and fixes
* 1st half of the documentation HTML --> XML conversion
Mueller, Steven <diffusor@ugcs.caltech.edu>
* first implementation of live changing playback speed
Neundorf, Alexander <neundorf@kde.org>
* raw DV demuxer
* demuxer packet refcounting
Niedermayer, Michael (michaelni) <michaelni@gmx.at>
* new, GPL postprocessing code (with deinterlacing etc...)
* software scaling with MMX/MMX2/3DNow! support (swscale.c)
* various RGB/YUV bpp converters
* new, better IDCT code for libavcodec, DivX decoder speedup
* runtime CPU detection
* liba52 SSE optimization
* various encoder/decoder fixes, improvements in libavcodec, DR support
* lrintf() bugs
* many bug fixes
* patch review
* boxblur, fil, hue, il, noise, perspective, qp, rgbtest, sab, smartblur,
spp, swapuv, test video filters
Noring, Fredrik <noring@nocrew.org>
* -vo DGA fixes
Ohm, Christian <chr.ohm@gmx.net>
* various small bug fixes
Parrish, Joey <joey@nicewarrior.org>
* various fixes
* -vo gif89a author
* GIF demuxer author
* Windows support improvements
* Cygwin installer package
Pietrzak, Dariusz (Eyck) <eyck@ghost.anime.pl>
* Debian packaging support (see debian/* and the documentation)
* support for vplayer subtitle format
* preliminary support for .RT subtitle format
Plourde, Nicolas <nicolas.plourde@sympatico.ca>
* quartz video output driver for Mac OS X
* macosx CoreVideo output driver for Mac OS X
* Darwin VCD/SVCD support
Poettering, Lennart <mzzcynlre@0pointer.de>
* audio driver for the Polypaudio sound server
Poirier, Guillaume (poirierg) <poirierg@gmail.com>
* French documentation translation and synchronization
* XviD documentation
* libavcodec turbo mode
* lots of updates of MEncoder's documentation
* code fixes to support GCC-4.0
* patch review
Ponekker, Zoltán (Pontscho/fresh!mindworkz) <pontscho@makacs.poliod.hu>
* the original configure script and Makefiles for easy compilation
* GUI system
* 3DNow! support into mp3lib and fastmemcpy.h
* various X11 driver changes, fixes (keyboard handling, fullscreen,
bpp detect, etc)
* xmga video output driver
* audio mixer (volume) support
van Poorten, Ivo (ivop) <ivop@euronet.nl>
* multiple directory support for vo_jpeg
* vo_jpeg suboptions parser
* vo_pnm video output driver
* vo_md5sum video output driver
* af_ladspa LADSPA plugin loader
Ran, Lu <hephooey@fastmail.fm>
* Chinese documentation translation
* various VOBsub related patches
* improved seeking in RealMedia format
Reder, Uwe <Uwe.Reder@3SOFT.de>
* various x11/vm/fs fixes
* subtitle/OSD control fixes
rgselk <rgselknospam@yahoo.com>
* Real RTSP range support
Rune Petersen <runner@mail.tele.dk>
* adapter selection support for vo_directx
Saari, Ville <vs@iki.fi>
* divtc & phase video filters
Sabbi, Nico <nsabbi@tiscali.it>
* DVB input support
* MPEG TS support
Sandell, Björn <biorn@dce.chalmers.se>
* various *BSD fixes
Sauerbeck, Tilman <tsauerbeck@users.sourceforge.net>
* TGA decoder (RLE/uncomp), -mf tga support
Scherthan, Frank <scherthan@uni-landau.de>
* added OSD handling for live changing playback speed
Schneider, Florian <flo-mplayer-dev@gmx.net>
* RealVideo codec libraries interface, .rm demuxer fixes
Schoenbrunner, Oliver <oliver.schoenbrunner@jku.at>
* SGI audio driver
* MIPS support
Shimon, Oded (ods15) <ods15@ods15.dyndns.org>
* multiple file support for MEncoder
* small cleanups, mostly to EDL
* -speed for MEncoder
* -edl and -hr-edl-seek for MEncoder
* -delay for MEncoder
* some changes to vf_dsize and vf_expand
Simon, Peter <simon.peter@linuxuser.hu>
* TOOLS/wma2ogg.pl author
Snel, Rik <rsnel@cube.dyndns.org>
* zr video output driver
Sommer, Sascha (Faust3) <saschasommer@freenet.de>
* DirectX VO driver
* Windows waveout AO driver
* QuickTime audio+video decoding, video encoding (using Win32 DLLs) support
* MinGW port, Cygwin fixes
* winvidix video output driver
* cvidix video output driver
* nvidia_vid VIDIX driver
* dhahelperwin for direct hardware access under Windows NT/2000/XP
Strasser, Alexander (beastd) <eclipse7@gmx.net>
* string handling security audit
* EWMH fullscreen
* suboption parser
Strzelecki, Kamil < esack at browarek.net >
* first version of ao_jack, using bio2jack
Svoboda, Jiri (zar) <Jiri.Svoboda@seznam.cz>
* AQT type subtitles support
* CRTC2 YUV support in mga_vid
* DirectFB video output driver
Swain, Robert <robert.swain@gmail.com>
* CQM support and turbo multipass mode in x264 interface
* Profile support in XviD interface
Syrjälä, Ville <syrjala@sci.fi>
* -vo dfbmga driver (G400 DVDMax-like feature using dfb 0.9.14)
Szecsi, Gabor <deje@miki.hu>
* directsound AO driver
Tackaberry, Jason <tack@sault.org>
* second DVD ripping guide
Tam, Howell (Pigeon) <pigeon@pigeond.net>
* native libcaca driver (-vo caca)
Tlalka, Adam (atlka) <atlka@pg.gda.pl>
* OSD/subtitle review, fixes, optimization, UTF-8 support
* various fixes
Tiesi, Gianluigi <sherpya@netfarm.it>
* AC3 passthrough support for ao_win32
* avisynth demuxer
Togni, Roberto (rxt) <r_togni@tiscali.it>
* open source QT RPZA decoder
* open source HuffYUV decoder
* open source MSZH/ZLIB decoder
* open source QT 8BPS decoder
* mp_help-it.h updates
* Realaudio (ra) demuxer, 14_4 and 28_8 codec support
* Misc bug fixes and enhancements
* documentation
Tropea, Salvador Eduardo <salvador@inti.gov.ar>
* subtitle parsing/displaying related patches
Vajna, Miklós (VMiklos) <mamajom@axelero.hu>
* TOOLS/divx2svcd author
* TOOLS/ directory documentation
Verdejo Pinochet, Reynaldo H. (reynaldo) <reynaldo@opendot.cl>
* improved EDL support
* mp_msg transition on unmaintained libao2 drivers
* translatables to help_mp on input/libmpdemux
* .wpl playlist support hack
Wigren, Per <wigren@home.se>
* bmovl - Bitmap Overlay video filter
Witt, Derek J <djw@flinthills.com>
* MMS network streaming patches
Young, Alan <ayoung@teleport.com>
* fixed support of RealMedia & XAnim binary plugins on Alpha
Zaprzala, Artur (zybi) <zybi@fanthom.irc.pl>
* complete font generator prog + OSD font (TOOLS/subfont-c)
Zealey, Mark <mark@zealos.org>
* -vo tdfxfb driver
* -geometry window positioning code
Ziv-Av, Matan <matan@svgalib.org>
* vo_svga fixes, improvements
* svgalib kernel helper support for VIDIX/libdha
Zoltán, Márk Vicián (Se7en) <se7en@sch.bme.hu>
* SVGAlib support in libvo
________________
The codecs, libs
~~~~~~~~~~~~~~~~
Bellard, Fabrice <fabrice.bellard@free.fr>
* FFmpeg/libavcodec author (open source MPEG, MJPEG,
DivX, WMA, DV etc audio/video en/decoder)
Chappelier, Vivien and Vincent, Damien
* libFAME authors [fast MPEG-1 encoder, used by -vo mpegpes/-vo dxr3]
Hipp, Michael
* mpglib author [not used directly but some parts are in mp3lib]
Holtzman, Aaron <aholtzma@engr.uvic.ca>
* ac3dec (and libac3) author [old AC3 audio decoder]
* the original mga_vid driver [Matrox G200/G400 YUV backend scaler]
* mpeg2dec [Fast MPEG-1/MPEG-2 video decoder, currently used in player]
Janovetz, Jake
* remez.c author [Used to calculate audio filter coefficients]
Kabelac, Zdenek (kabi) <kabi@informati
|