-
Notifications
You must be signed in to change notification settings - Fork 1
/
AUTHORS
1117 lines (860 loc) · 32.5 KB
/
AUTHORS
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
*****************************************
AUTHORS
*****************************************
NOTE: This list is outdated and incomplete.
___________________
The MPlayer project
~~~~~~~~~~~~~~~~~~~
MPlayer was originally written by Árpád Gereöffy and later extended by
a bunch of other people, some of whom are listed here in alphabetical
order. If you think you are missing, feel free to send a patch.
Ackermann, Andreas (Acki) <[email protected]>
* LIRC support
* DGA support in libvo
adland <[email protected]>
* support for various Windows DLL codecs (LCW2, ASLC)
* SMIL playlist parser
* many streaming bug fixes and improvements
* libfaad2 update
Anholt, Eric <[email protected]>
* CPU detection code
Ashberg, Folke <[email protected]>
* native AAlib driver (-vo aa)
Balatoni, Dénes <[email protected]>
* XMMS inputplugin support
* minor features & fixes
* Sun XVR-100 VO driver port from xine
Barat, Zsolt (joyping) <[email protected]>
* ao_alsa9 fixes, AC3 passthrough support
* ao_alsa unified ALSA audio output driver
Barbato, Luca (lu_zero) <[email protected]>
* random AltiVec fixes
* other minor fixes
Baryshkov, Dmitry (lumag) <[email protected]>
* Russian documentation translation
* FLAC decoding support
* XML build system
Baudet, Bertrand <[email protected]>
* network streaming support author
* CDDB support
Bedel, Alban (albeu) <[email protected]>
* 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 <[email protected]>
* online audio stream switching for MPEG and Matroska files
Belev, Luchezar (lucho) <[email protected]>
* hw-accelerated video eq support into x11, gl2 (using DirectColor cmap)
Bérczi, Gábor (Gabucino) <[email protected]>
* 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) <[email protected]>
* 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) <[email protected]>
* 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 <[email protected]>
* AVI OpenDML read support
Biurrun, Diego (DonDiego) <[email protected]>
* 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
* build system overhaul
* shiny new non-recursive build
Blomenkamp, Marcus <[email protected]>
* VIDIX patches (Rage128, Radeon 7000)
* OSS AC3 passthrough fix
Buehler, Andrew (The Wanderer) <[email protected]>
* various documentation spelling and grammar corrections
* mp_msg transition on main source files
Bulgroz, Eviv <[email protected]>
* presets support for mp3lame encoding
* AVI demuxer time/bitrate calculation fixes
* various bug fixes
Bünemann, Felix (Atmos) <[email protected]>
* 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) <[email protected]>
* various OGM hacks/fixes
* OGMtools author
* Matroska demuxer
Christiansen, Dan Villiom Podlaski (danchr) <[email protected]>
* timer-darwin.c
* CoreAudio audio output driver for Mac OS X
* build system cleanups for Darwin
Clagg, Jeff (snacky) <[email protected]>
* minor updates and fixes for x264 support
* x264's encoding guide
* superficial clarity fixes for mpcf.txt
Comstedt, Marcus <[email protected]>
* initial Solaris 8 x86 support
* configure fixes
Cook, Kees <[email protected]>
* dvdnav hacks
* rawdv demuxer fixes
Curry, Alan (pacman, tcsetattr) <[email protected]>
* swscale AltiVec/big-endian fixes
* misc vo_fbdev fixes
Davies, Stephen <[email protected]>
* support for large video files (>2^32 bytes in size)
* surround sound aop plugin
Di Vita, Piero (Scognito) <[email protected]>
* gnome, trium skins
* new GUI icons
* skin review part II
Diedrich, Tobias (ranma, ranmachan) <[email protected]>
* NAS audio output driver
* DXR2 driver
* softpulldown video filter
* ported Donald Graft's kerndeint video filter
* AVI OpenDML write support
Dietrich, Florian <[email protected]>
* MinGW networking support
Dobbelaere, Jeroen <[email protected]>
* original libmad support
Döffinger, Reimar (reimar) <[email protected]>
* 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 <[email protected]>
* random AltiVec (PowerPC multimedia extensions) stuff
* vo_quartz YUV support & fixes
* endianness fixes
Dönmez, İsmail (cartman) <[email protected]>
* compile fix for mga_vid to compile with Linux 2.5/2.6 kernels
* small fixes all around
Edele, Robert (yartrebo) <[email protected]>
* remove_logo filter
Egger, Christoph <[email protected]>
* vo_ggi updates
Elsinghorst, Paul Wilhelm <[email protected]>
* GUI: remote ESD support including software mixer
Ernesti, Bernd <[email protected]>
* NetBSD support patches
Falco, Salvatore <[email protected]>
* jacosub parsing & dump support
* overlapping subtitles & sub sorting support
* SAMI subtitles dump support
Feigl, Johannes (jaf) <[email protected]>
* 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) <[email protected]>
* 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 <[email protected]>
* open source Cinepak decoder
* open source CYUV decoder
Finlayson, Ross <[email protected]>
* LIVE555 Streaming Media library author
* RTP/RTSP streaming support
Forghieri, Daniele (xdanny) <[email protected]>
* TGA output driver
* framestep & tile video filters
* initial Italian man page translation
* fixes and improvements to lavc audio encoding
Foth, Kilian A. <[email protected]>
* slave mode
Franz, Fabian (Fabianx) <[email protected]>
* help with the libmpeg2 0.3.0 update
* playlist improvements
* KDE screensaver support
* mini skin
Gansser, Martin <[email protected]>
* HP-UX port
Gereöffy, Árpád (A'rpi/ESP-team) <[email protected]>
* 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 <[email protected]>
* PVA demuxer
Giaquinta, Emanuele (exg) <[email protected]>
* Darwin/ppc fixes
* libfaad2 update
Goethel, Sven <[email protected]>
* vo_gl2 video output driver
* PVR Channel Navigation
Gomez Garcia, German <[email protected]>
* SPDIF AC3 output for SBLive!
Gottwald, Alexander <[email protected]>
* various small bug fixes
Graffam, Michael <[email protected]>
* XF86VidMode support to vo_x11 and vo_dga
* video mode switching code to vo_dga
Gritsenko, Andriy N. (AG_LS) <[email protected]>
* drop-deinterlace (dint) video filter
* muxer layer, and new MPEG-PS muxer
Guyomarch, Rémi (rguyom) <[email protected]>
* various fixes
* unsharp video filter
* Xvid encoding support
Hall, Julian <[email protected]>
* black frame detection filter (vf_blackframe)
Hammelmann, Jürgen <[email protected]>
* TOOLS/mencvcd author
Hertel, Christopher R. <[email protected]>
* md5sum code used by vo_md5sum. part of uCIFS library.
Hess, Andreas <[email protected]>
* upgrading libdvdcss in libmpdvdkit2
* various small bug fixes
Hickey, Corey <[email protected]>
* 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) <[email protected]>
* filmdint video filter
Hoffmann, Jens <[email protected]>
* additional YUV formats support
* found the big BITMAPINFOHEADER problem -> solved ASV2 pixelization
Hoffman, Marc <[email protected]>
* AltiVec, color space converter
* Blackfin, DSP optimizations
Holm, David (dholm, mswitch) <[email protected]>
* DXR3 support
Horst, Bohdan (Nexus) <[email protected]>
* FreeBSD support
Hoyos, Carl Eugen (cehoyos) <[email protected]>
* improvements to LIVE555 demuxer
Huehner, Stefan (huehner) <[email protected]>
* Major code cleanup patches
Hug, Hampa <[email protected]>
* LUT-based soft eq video filter (vf_eq2)
* .ogm demuxer endianness fixes
Hůrka, Tomáš <[email protected]>
* Darwin DVD support (mpdvdkit2)
* various fixes
Hysseo, Jehan <[email protected]>
* af_add, af_switch, af_del, af_clr commands.
Isani, Sidik <[email protected]>
* get_delay() smoothing code (-autosync)
* RTC initialization fixes
* various small fixes
Issaris, Panagiotis (takis) <[email protected]>
* -playlist option
* NuppelVideo support
* various fixes
Jacobs, Aurelien <[email protected]>
* standalone C Matroska demuxer
* DTS support
Jelveh, Reza (timebomb) <[email protected]>
* NSV demuxer
* seeking in Real files without index
* savage_vid VIDIX driver
* miscellaneous small fixes and improvements
* first musepack decoding patch
* swscale AltiVec fixes
Jermann, Jonas (g0th) <[email protected]>
* manual page rewrite
* documentation
Johansson, Anders <[email protected]>
* old audio plugin system, some effect plugins
* new libaf interface design, implementation, plugins
Kain, Nicholas <[email protected]>
* strl(cpy|cat) detection and conversion
* string handling cleanups
Kalinski, Filip (filon) <[email protected]>
* X11 fulscreen switching fixes/cleanup
Иван Кълвачев [Ivan Kalvachev] (iive) <[email protected]>
* interlaced MPEG-2 support (libmpeg2)
* configfile parser fixes
* SRT subtitle dump support
* vo_svga rewrite
* various fixes and small improvements
* XvMC support (MPlayer & FFmpeg)
Kaniewski, Wojtek <[email protected]>
* mouse wheel support
* made the FreeType + RAW font support work together
Kaplan, Kim Minh <[email protected]>
* DVD and VOBsub subtitles display support
* DVD subtitles rip to VOBsub
Kärkkäinen, Samuli <[email protected]>
* first DVD ripping guide
Keil, Jürgen <[email protected]>
* 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 <[email protected]>
* yuv4mpeg video output driver
Kinali, Attila (KotH) <[email protected]>
* various small fixes in the X11 code
* xinerama support
* documentation
* patch application monkey, mailer daemon
Kovriga, Gregory <[email protected]>
* GUI drag & drop support
* GUI DVD fixes
* various small bug fixes in ASX/URL parser
Kühling, David <[email protected]>
* libtheora support, Ogg/Theora demuxing changes
Küçük, Onur <[email protected]>
* GTK2 port of the GUI
* Fix compilation in locales like TR, AZ etc.
Kuivinen, Fredrik (ksorim) <[email protected]>
* OSD/subtitles outside a movie for SDL
* video filter layer draft, first implementation
* VirtualDub filter support (not yet finished/committed)
Kurshev, Nick <[email protected]>
* 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 <[email protected]>
* RTP streaming support (reading)
Kushnir, Vladimir <[email protected]>
* patched MPlayer to work on FreeBSD x86
Lambley, Dave <[email protected]>
* HTTP cookie support
László, Gyula (Chass, Tégla) <[email protected]>
* first fonts (mp_font1.zip)
* third and fourth homepage design & gfx
Le Gaillart, Nicolas <[email protected]>
* French documentation translation
* documentation updates and fixes
* 2nd half of the documentation HTML --> XML conversion
Lénárt, Gábor (LGB) <[email protected]>
* configure script improvements
* Makefile improvements
* preliminary DVD support (libcss)
* various X11 cleanups and fixes
* HTMLization of the documentation
Leroy, Colin <[email protected]>
* 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
Lewis, Derek (delewis) <[email protected]>
* AIX port
* Solaris-related configure fixes
Liljeblad, Oskar <[email protected]>
* various OSD related patches
Lin, Sam <[email protected]>
* -wid (plugger) patch
Littler, Ben (compn) <[email protected]>
* #mplayer user wrangler (2003+)
* minor samples/bugs/win32 finder/tester
* small docs patches
Lombard, Pierre (pl) <[email protected]>
* new configure script
* general code maintaining, fixes, patch committing
Madick, Puk <[email protected]>
* KDE/GNOME2 fullscreen fix
* configparser fixes
Makovička, Jindřich (henry, x0rph) <[email protected]>
* various bug fixes
* rewrote v4l video capturing, implemented audio capturing layer
* FreeType 2 font rendering support
Marek, Rudolf <[email protected]>
* gtf code for -vo vesa
* NeoMagic TV out support through VESA VBE
Megyer, László (Lez, Laaz) <[email protected]>
* subtitle reader
* screensaver + DPMS disable for libvo
Melanson, Mike (tmmm) <[email protected]>
* 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 <[email protected]>
* fontconfig font lookup support
Merritt, Loren (pengvado) <[email protected]>
* x264 encoding support
* x264 documentation
* some libavcodec documentation
Mierzejewski, Dominik (Rathann) <[email protected]>
* compiler warning fixes
* official Red Hat RPM packages
* Polish documentation translation
Milushev, Mihail <[email protected]>
* GIMP font generator plugin (TOOLS/subfont-gimp)
Mistry, Nehal (Nehal) <[email protected]>
* various audio driver fixes
Mohari, András <[email protected]>
* skin documentation
* various docs updates and fixes
* 1st half of the documentation HTML --> XML conversion
Mueller, Steven <[email protected]>
* first implementation of live changing playback speed
Murrell, Brian J. <[email protected]>
* black frame detection filter (vf_blackframe)
Neundorf, Alexander <[email protected]>
* raw DV demuxer
* demuxer packet refcounting
Niedermayer, Michael (michaelni) <[email protected]>
* 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 <[email protected]>
* -vo DGA fixes
Ohm, Christian <[email protected]>
* various small bug fixes
Ötvös, Attila <[email protected]>
* A huge pile of printf to mp_msg patches
* Various patches for Teletext
Parrish, Joey <[email protected]>
* various fixes
* -vo gif89a author
* GIF demuxer author
* Windows support improvements
* Cygwin installer package
Petrov, Georgi (gogothebee) <[email protected]>
* Direct3D VO driver
Pietrzak, Dariusz (Eyck) <[email protected]>
* Debian packaging support (see debian/* and the documentation)
* support for vplayer subtitle format
* preliminary support for .RT subtitle format
Plourde, Nicolas <[email protected]>
* quartz video output driver for Mac OS X
* CoreVideo video output driver for Mac OS X
* Darwin VCD/SVCD support
Poettering, Lennart <[email protected]>
* audio driver for the PulseAudio sound server
Poirier, Guillaume (poirierg) <[email protected]>
* 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) <[email protected]>
* 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) <[email protected]>
* 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
* vf_blackframe cleanup and simplification
Ran, Lu <[email protected]>
* Chinese documentation translation
* various VOBsub related patches
* improved seeking in RealMedia format
Reder, Uwe <[email protected]>
* various x11/vm/fs fixes
* subtitle/OSD control fixes
rgselk <[email protected]>
* Real RTSP range support
Rune Petersen <[email protected]>
* adapter selection support for vo_directx
Saari, Ville <[email protected]>
* divtc & phase video filters
Sabbi, Nico <[email protected]>
* DVB input support
* MPEG TS support
Sandell, Björn <[email protected]>
* various *BSD fixes
Sanderson, Mark <[email protected]>
* -vo s3fb driver
Sauerbeck, Tilman <[email protected]>
* TGA decoder (RLE/uncomp), -mf tga support
Savchenko, Andrew <[email protected]>
* build system enhancements
* improvements in config/command line parser
* Russian documentation translation
* various bug fixes, testing
Scherthan, Frank <[email protected]>
* added OSD handling for live changing playback speed
Schneider, Florian <[email protected]>
* RealVideo codec libraries interface, .rm demuxer fixes
Schoenbrunner, Oliver <[email protected]>
* SGI audio driver
* MIPS support
Shimon, Oded (ods15) <[email protected]>
* 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 <[email protected]>
* TOOLS/wma2ogg.pl author
Snel, Rik (rik) <[email protected]>
* zr video output driver
* zr2 video output driver
* zrmjpeg video filter
Sommer, Sascha (Faust3) <[email protected]>
* 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
Stepanov, Evgeniy (eugeni, Azzy) <[email protected]>
* SSA/ASS subtitle renderer
* Matroska chapter seeking
Strasser, Alexander (beastd) <[email protected]>
* string handling security audit
* EWMH fullscreen
* suboption parser
Strzelecki, Kamil < esack at browarek.net >
* first version of ao_jack, using bio2jack
Svoboda, Jiří (zar) <[email protected]>
* AQT type subtitles support
* CRTC2 YUV support in mga_vid
* DirectFB video output driver
Swain, Robert <[email protected]>
* CQM support and turbo multipass mode in x264 interface
* Profile support in Xvid interface
Syrjälä, Ville <[email protected]>
* -vo dfbmga driver (G400 DVDMax-like feature using dfb 0.9.14)
Szecsi, Gabor <[email protected]>
* directsound AO driver
Tartler, Reinhard <[email protected]>
* release assistance
* various backports from trunk
* official Debian and Ubuntu packages
Tackaberry, Jason <[email protected]>
* second DVD ripping guide
* multichannel audio fixes
* support for 8 channel audio
* various minor features and bug fixes
Tam, Howell (Pigeon) <[email protected]>
* native libcaca driver (-vo caca)
Tlalka, Adam (atlka) <[email protected]>
* OSD/subtitle review, fixes, optimization, UTF-8 support
* various fixes
Tiesi, Gianluigi (Sherpya) <[email protected]>
* AC3 passthrough support for ao_win32
* avisynth demuxer
Togni, Roberto (rxt) <[email protected]>
* 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
Tresoldi, Paolo "PaulTT" (ptt) <[email protected]>
* mplayer -endpos option
* -name, -title and -use-filename-title options
* Italian man page and console messages translations
* Italian documentation translation
Tropea, Salvador Eduardo <[email protected]>
* subtitle parsing/displaying related patches
Ulion <ulion2002 gmail.com>
* ad_hwac3 passthrough improvement
* osd menu improvement
* mac osx port improvement
Urpala, Uoti (uau) <[email protected]>
* A/V sync fixes
Vajna, Miklós (VMiklos) <[email protected]>
* TOOLS/divx2svcd author
* TOOLS/ directory documentation
Verdejo Pinochet, Reynaldo H. (reynaldo) <[email protected]>
* improved EDL support
* mp_msg transition / translatables to help_mp helper
* .wpl playlist support hack
* karaoke audio filter
* major code cleanups
* TOOLS/qepdvcd.sh
Voroshilov, Vladimir <[email protected]>
* Radio support
* Russian documentation translation
* Russian man page translation
* TV support for win32 (dshow driver)
Wigren, Per <[email protected]>
* bmovl - Bitmap Overlay video filter
Witt, Derek J <[email protected]>
* MMS network streaming patches
Young, Alan <[email protected]>
* fixed support of RealMedia & XAnim binary plugins on Alpha
Zaprzała, Artur (zybi) <[email protected]>
* complete font generator prog + OSD font (TOOLS/subfont-c)
Zealey, Mark <[email protected]>
* -vo tdfxfb driver
* -geometry window positioning code
Ziv-Av, Matan <[email protected]>
* vo_svga fixes, improvements
* svgalib kernel helper support for VIDIX/libdha
Zoltán, Márk Vicián (Se7en) <[email protected]>
* SVGAlib support in libvo
Zores, Benjamin (ben) <[email protected]>
* RTSP input layer in stream.
* PVR input layer for IVTV based cards.
* IVTV h/w MPEG decoder ao/vo driver.
* split of stream layer from libmpdemux to stream.
* VIDIX core and drivers.
* Linux AppleIR remote support.
________________
The codecs, libs
~~~~~~~~~~~~~~~~
Bellard, Fabrice <[email protected]>
* 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 <[email protected]>
* 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]
Kabeláč, Zdeněk (kabi) <[email protected]>
* avifile author
* some technical help about the Win32 stuff, ASF formats and timers
Kuznetsov, Eugene <[email protected]>
* avifile author [AVI player library for Linux, using Win32 VfW/ACM codecs]
* technical help about AVI and ASF formats, and how to get YUV using VfW...
* DivX4Linux technical support
Lespinasse, Michel <[email protected]>
* large libmpeg2 changes for better speed and MPEG conformance
* liba52 author [current AC3 audio decoder]
Podlipec, Mark
* xa_gsm.c author [MS-GSM audio codec] [from a GSM library by Jutta Degener
and Carsten Bormann]
Project Mayo <http://www.projectmayo.com>
* the OpenDivX codec authors
_____________________________________________________
Their code is not used in the current player version,
but I've got some ideas or other technical help from:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Farin, Dirk <[email protected]>
* dvdview author [MPEG-1/MPEG-2 video decoder, used in v0.5-v0.8]
Lee, Avery <[email protected]>
* VirtualDub author, help understanding AVI with VBR audio and
other AVI issues
McGowan, John F. <http://www.jmcgowan.com>
* AVI FAQ author/collector. [site with many useful docs on codecs
and AVI format]
Williams, Adam <[email protected]>
* libmpeg3 (and xmovie) author [MPEG-1/MPEG-2 video decoder, used in
v0.1-v0.4]
___________
Translation
~~~~~~~~~~~
Fargas, Marc (TeLeNiEkO) <[email protected]>
* first Spanish documentation translation (outdated)
Heryán, Jiří <[email protected]>
* Czech man page and documentation translation
* some other Czech translation related work
Krämer, Sebastian (kraymer) <[email protected]>
* German man page translation
* German documentation translation
Lettmaier, Kurt ([email protected]
* German documentation translation
López, Juan Martin (nauj27) <[email protected]>
* Spanish man page translation
* Spanish documentation translation
Mizda, Gábor (Gabrov) <[email protected]>
* Hungarian translation
MPlayerPL - Polish MPlayer Translation Team (http://mplayerpl.emdej.com)
* Wacław Schiller (Torinthiel) <[email protected]>
* Kuba Misiorny (Qba) <[email protected]>
* Łukasz Proszek (Frogu) <[email protected]>
* Maciek Paszta (paszczi) <[email protected]>
* Piotr Michniewski (Cobra) <[email protected]>
* Marcin Biernat (boskicinek) <[email protected]>
* Marek Jarycki (Emdej) <[email protected]>
* Leszek Kaplita (Flex) <[email protected]>
Zhu Tian (JRaSH) <[email protected]>
* Simplified Chinese documentation translation
Zubimendi, Andoni <[email protected]>.
* Spanish documentation translation
_________
GUI skins
~~~~~~~~~
unknown author
* iTunes, iTunes-mini
Azrael <[email protected]>
* brushedGnome
Bekesi, Viktor (FRD)
* standard, plastic, slim
bleachie <[email protected]>
* bluecurve
Burt.S. <[email protected]>
* mplayer_red
caparuni <[email protected]>
* PowerPlayer
Carpenter, Andrew <[email protected]>
* handheld