An error occurred fetching the project authors.
- 10 Jan, 2001 1 commit
-
-
Sam Hocevar authored
. complete commenting of modules_core.h and small modifications . separated MODULE_CONFIG_START and ADD_WINDOW (Henri, beware) . fixed a very, very old bug that caused namespace collision between plugins (Henri, beware: call your aout_getplugin function like this, not alsa_aout_getplugin) . removed the Debian specific clean rules from the Makefile, since they are already handled by the debian/rules script. . tidied a few compilation rules (-lfoo should always be at the end)
-
- 07 Jan, 2001 2 commits
-
-
Sam Hocevar authored
removed whenever one does a cvs update -dP . fixed debian/.cvsignore because of a new version of debhelper
-
Sam Hocevar authored
. made the audio_output API a bit simpler. . got rid of modules_config.h. . fixed `make install' rule. . fixed warnings in the MMX YUV compilation. . probably fixed a bug in the input : pp_foo structures were free()d at the end, but this was useless since the last call to realloc() is equivalent to free(), and two consecutive calls to free() aren't a goo idea. . we check that the version number match and that we don't already have a module by that name when loading a new module. . all public module_* functions now properly lock the module bank. . the audio_output now uses the new module API ; EsounD and DSP modules have been ported, which should be enough for Henri to port the ALSA one. The new plugin API is now much simpler ; it's now just a matter of calling module_Need( p_main->p_module_bank, MODULE_CAPABILITY_FOO, p_data ); and if successful we get the best module. Capabilities can be ORed, so that one can ask for a plugin that does VOUT _and_ INTF actions for instance. It's not complete yet though -- by making it generic I had to do a few ugly casts here and there, which I am going to fix ASAP. Also, command line selection of a plugin does not work yet. The switch to the new plugin API has probably broken the BeOS audio output ; we can either wait until the whole vlc has switched to the new plugins, or create a separate beos_sound.so that conforms to the new API.
-
- 06 Jan, 2001 2 commits
-
-
Benoit Steiner authored
-
Sam Hocevar authored
. should compile & run on Solaris with ./configure --disable-dsp (tested on puma) . removed most SYS_SOLARIS #ifdef's in favour of more generic tests . updated example ./configure line in INSTALL file . now we only load modules that end with ".so" . null module is compiled by default
-
- 05 Jan, 2001 3 commits
-
-
Christophe Massiot authored
* --enable-sdl and some others are now --with-sdl[=name] to supply an optional library name ; * deleted all unnecessary #include <sys/uio.h> ; * /usr/include is now searched when looking for libraries and headers. It seems to compile and run on BSD. Under Linux Sam's latest commit makes vlc crash on startup, so I can't really tell, but hey it compiles.
-
Sam Hocevar authored
. src/misc/modules.c is in a workable state now. To test it, run ./configure with the --enable-null flag, which will compile the Null Module as a plugin. Watch the memory usage at the launch and when the plugin is released.
-
Sam Hocevar authored
. added the Null Module, the module that does nothing but that is going to be of great help for debugging my module code.
-
- 22 Dec, 2000 1 commit
-
-
Christophe Massiot authored
* Fixed an segfault in input_programs.c ; * Added -fomit-frame-pointer optimization.
-
- 21 Dec, 2000 3 commits
-
-
Christophe Massiot authored
* Moved p_input->pp_es -> p_input->stream.pp_es and clean up of input_programs.c & co ; * Fixed memory leaks.
-
Christophe Massiot authored
* Cleaned up input_ts.c, added it into the Makefile.
-
Henri Fallon authored
Added netlist support. Warning : it has not been tested. It just make no error at build time.
-
- 19 Dec, 2000 1 commit
-
-
Sam Hocevar authored
. split the audio decoder into adec_generic, adec_layer1 and adec_layer2 (no new code added)
-
- 15 Dec, 2000 2 commits
-
-
Christophe Massiot authored
necessary. * Cleaned up decoder spawning.
-
Christophe Massiot authored
* Moved b_discontinuity to pgrm_descriptor_t, cleaned up CRDecode (needs some more cleaning for discontinuities) * Added pf_new_pes in plugins
-
- 11 Dec, 2000 1 commit
-
-
Christophe Massiot authored
-
- 10 Dec, 2000 1 commit
-
-
Benoit Steiner authored
Generation d'un makefile presque correct pour les vieilles versions de make Nettoyage: gestion des dependances pour les plugins, suppressions de pas mal de redondances, options de compilations coherentes, etc...
-
- 05 Dec, 2000 1 commit
-
-
Christophe Massiot authored
-
- 29 Nov, 2000 1 commit
-
-
Christophe Massiot authored
faster.
-
- 20 Nov, 2000 1 commit
-
-
Henri Fallon authored
Added : alsa support Todo : - test it on several cards - support more than Stereo s16 - make configure check for alsa
-
- 18 Nov, 2000 1 commit
-
-
Christophe Massiot authored
you check I did'nt make a mess of it ?). * Added todo things in the TODO file.
-
- 13 Nov, 2000 1 commit
-
-
Christophe Massiot authored
* Fixed a bug in video_ouput.c which made the stream go backwards sometimes. * Fixed a bug in video_ouput.c which trashed more late pictures than necessary. * Fixed the DEBUG mode in the Makefile. * Fixed a bug in mwait() which made us wait too long. Ca va tuer.
-
- 23 Aug, 2000 1 commit
-
-
Sam Hocevar authored
. fixed the aliases install . renamed an inconsistent variable in src/input/input_file.c
-
- 22 Aug, 2000 1 commit
-
-
Sam Hocevar authored
* temporarily got rid of vlc.channels. * added notice in debian/control about unencrypted DVDs. * fixed PowerPC .deb build.
-
- 21 Aug, 2000 3 commits
-
-
Pierre Baillet authored
.removed the YUV thing from the SDL .cleaned up the makefile to remove it .UNTESTED (seems to compile).
-
Pierre Baillet authored
. The interface part: . created intf_AssignKey, intf_getKey and intf_AssignNormalKeys these new function are a first abstraction of the the key handling system. It makes use of a new structure in the interface : p_keys. . AssignNormalKeys is commonly used in all the interface plugins. AssignKey is used to allow the SDL interface to react nicely. . Now the plugin struct element psz_filename is filled (and freed at the end of the program). . the SDL plugin: works but does only display a green screen for now. so don't use it ! . Please try and compile the client on your box with this version. I've tried a few output plugin but not all.
-
Sam Hocevar authored
* added hints for powerpc build. * fixed the input_file exit bug. * fixed a Makefile bug which removed the CVS directory. * removed the frame statistics output.
-
- 18 Aug, 2000 2 commits
-
-
Sam Hocevar authored
. added the vlc-sdl package in the Debian control files
-
Pierre Baillet authored
* Added SDL plugin * support fullscreen display with --display fullscreen * complete keyboard handling * Added --enable_sdl to configure Octplane.
-
- 16 Aug, 2000 1 commit
-
-
Sam Hocevar authored
* changed "pentiumpro" to "ppro" in the ./configure, it was misleading. * prepared 0.1.99g
-
- 15 Aug, 2000 1 commit
-
-
Sam Hocevar authored
-march=pentium directive. thanks Meuuh, blame sam. * fixed a warning in main.c. * separate Debian packages. * added request for ALSA support in the TODO list.
-
- 08 Aug, 2000 1 commit
-
-
Sam Hocevar authored
. version 0.1.99f . divers fixes dans la cr�ation des packages
-
- 07 Aug, 2000 1 commit
-
-
Sam Hocevar authored
* removed float operations in the video decoder, and all emms asm functions * borrowed linuxvideo's MMX motion compensation * fixed an undefined symbol in the MMX YUV plugin Meuuh & Sam.
-
- 30 Jul, 2000 2 commits
-
-
Sam Hocevar authored
. fix de certaines fonctions qui devraient �tre inlin�es . gain de place dans la YUVMMX
-
Sam Hocevar authored
. les aliases "gvlc" "fbvlc" "ggivlc" fonctionne comme il faut
-
- 18 Jul, 2000 1 commit
-
-
Jean-Marc Dressler authored
-
- 11 Jul, 2000 1 commit
-
-
Sam Hocevar authored
-
- 08 Jul, 2000 1 commit
-
-
Sam Hocevar authored
-
- 04 Jul, 2000 1 commit
-
-
Sam Hocevar authored
Voil� le changelog appoximatif : . fichier INSTALL plus clair . vir� quelques warnings . *PATH sont maintenant d�finis dans config.h . quelques fautes d'orthographe . l'option --enable-ppro n'est pas mise par d�faut car elle ne fonctionne pas sur un K6-2 . nouvelle API des plugins . le client framebuffer ne d�truit plus la console quand on quitte . r�paration de la YUV 8 bits . mise des YUV en plugins . transfo YUV 32bits MMX chour�e dans la libmpeg2
-
- 23 Jun, 2000 1 commit
-
-
Sam Hocevar authored
-