An error occurred fetching the project authors.
- 16 Jul, 2001 2 commits
-
-
Christophe Massiot authored
-
Christophe Massiot authored
* Updated ChangeLog and TODO.
-
- 11 Jul, 2001 1 commit
-
-
Sam Hocevar authored
* libdvdcss enhancements by Billy Biggs <vektor@dumbterm.net>. This breaks vlc's DVD input (looks like decoders are expecting data too early and DVD input can't cope with it due to decryption). Needs to be investigated. * Plugins are now compiled in plugins/* and libraries in lib/*. * The KDE UI compiles again but does not work yet. * ALSA plugin message corrections. * Calculation modules can now be calledwith a shorter name (eg. '--downmix mmx' instead of '--downmix downmixmmx'). * Fixed insane verbosity of the SDL plugin.
-
- 27 Jun, 2001 1 commit
-
-
Gildas Bazin authored
- Added command line option '--stdout <filename>' which redirects stdout and stderr to the specified file. This option should mainly be useful on Win32. - On Win32, vlc now has an icon associated to the .exe file, and is a full GUI application (you don't have this annoying dos command box anymore) - Added INSTALL-win32.txt for specific details to the Win32 port. I've tested these changes on Win32 and Linux, let's hope I didn't break vlc for other platforms. -- Gildas
-
- 18 Jun, 2001 1 commit
-
-
Sam Hocevar authored
* First libdvdcss version
-
- 14 Jun, 2001 1 commit
-
-
Sam Hocevar authored
* DirectX enhancements by Gildas Bazin, such as software rendering. * Merged dvdcss_init and dvdcss_open into dvdcss_open, and dvdcss_close and dvdcss_end into dvdcss_close. libdvdcss API now has 7 functions. * Another failed attempt at profiling vlc under Linux: ported the threads API to GNU Pth. Activate with --enable-pth. It doesn't seem to spawn new threads for me, maybe someone will have better luck. * Makefile optimizations. * Automatic build of libdvdcss if not found.
-
- 12 Jun, 2001 2 commits
-
-
Sam Hocevar authored
* Exported the CSS part of the dvd plugin into a library.
-
Henri Fallon authored
Added LPCM support. It should work with stereo LPCM. Untested with 5-ways LPCM streams.
-
- 07 Jun, 2001 1 commit
-
-
Sam Hocevar authored
* Put most builtins in plugins again due to performances issues (more about this in a forthcoming post here). * Fixed the painfully slow build process (at last!). * Moved the null plugin together with the dummy one. * Added new dummy input plugin. More on the dummy input plugin: we'll use it to insert commands in the playlist. Currently implemented are the "quit" and "pause" functions, here are examples on how they are used: vlc file.mpeg vlc:quit # exit after file.mpeg has been read. vlc file1.mpeg vlc:pause:3 file2.mpeg # pause 3 seconds before playing # the next file. From now we can more efficiently benchmark vlc. For instance, to test the video output changes I am doing, I use such a command: time vlc -I dummy --noaudio file.mpeg vlc:quit Future extentions might include more interesting stuff like "switch to full screen", "repeat next file 3 times", "switch to SDL video output"...
-
- 05 Jun, 2001 1 commit
-
-
Sam Hocevar authored
* Updated things and stuff for 0.2.80 release.
-
- 03 Jun, 2001 1 commit
-
-
Sam Hocevar authored
* Various little fixes - BeOS interface compilation fix by Rene Gollent. - DirectX plugin compilation fix by Gildas Bazin. - removed %ebx spill in the iMDCT plugins.
-
- 02 Jun, 2001 1 commit
-
-
Sam Hocevar authored
* DirectX plugin by Gildas Bazin <gbazin@netcourrier.com>. Notes: o I called it 'directx' instead of 'windx' because it made a lot more sense to me. o Completely untested. I didn't manage to compile it yet. o Code in vout_directx.c will go through a big rewrite when vout 4 is finished. Xav is already working on this.
-
- 30 May, 2001 1 commit
-
-
Sam Hocevar authored
* Fixed the BeOS compile typo. * The ALSA plugin is back. * A gift for Gildas: plugins don't rely on backlinking any more. The drawback is the dirty magic in include/modules_export.h which has to be included whenever a module needs one of the functions in it. But a) we should less and less rely on those functions b) no plugin code modification was needed The BeOS and MacOS X modules may be broken when compiled as plugins, I'll check this later when I can reboot under BeOS.
-
- 25 May, 2001 1 commit
-
-
Sam Hocevar authored
OS X fixes: * Applied Eugenio's fix to the DVDioctl driver. I didn't test it, but it should not hang the kernel anymore. * Ported most dvd_ioctl.c functions to the DVDioctl driver: ReportAgid, ReportChallenge, ReportKey1, ReportASF, InvalidateAgid, SendChallenge, SendKey2. They should comply with the "Mt. Fuji Commands for Multimedia Devices" paper. Last remaining problem: ReadCopyright and ReadKey. The version of Darwin I have here only has reportKey() and sendKey() functions in the IODVDBlockStorageDevice class (pages 413 and 449 of the Mt. Fuji paper), but we also need the READ_STRUCTURE (page 357) which I couldn't find anywhere in the kernel headers. Either I missed it, or we'll have to wait for Apple to implement it (or maybe we can emulate this command with some other IOKit commands).
-
- 23 May, 2001 2 commits
-
-
Stéphane Borel authored
-
Stéphane Borel authored
Specific files are glade generated files and intf_* files. All the remainders are common to gtk and gnome and contain all the callbacks for both interfaces.
-
- 16 May, 2001 1 commit
-
-
Renaud Dartus authored
* Remove kmudge for ac3 on MacOS X
-
- 15 May, 2001 1 commit
-
-
Sam Hocevar authored
* AC3 IMDCT and downmix functions are now in plugins, --imdct and --downmix options added.
-
- 14 May, 2001 1 commit
-
-
Renaud Dartus authored
If you have a PIII or a Athlon and you want to try this, just comment #if 0 in ac3_downmix.c and ac3_imdct.c and add in AC3_DECODER section of Makefile : src/ac3_decoder/ac3_imdct_sse.o \ src/ac3_decoder/ac3_srfft_sse.o \ src/ac3_decoder/ac3_downmix_sse.o \ src/ac3_decoder/ac3_downmix_3dn.o \
-
- 01 May, 2001 1 commit
-
-
Sam Hocevar authored
* Mandatory step for video output IV and the audio output quality fix: the output threads are now spawned when a decoder needs one, so it can decide the audio frequency or the video window size. Still under heavy construction, so don't get too excited at finding bugs in it yet. Note: this change broke the XVideo module, so I made its score much lower than before. I suspect xvideo.so had a bug before which only appears now. Other video output plugins may be broken as well, but again this might be due to old existing bugs showing their ugly head. * Fixed a few buffer overflows in the Gnome interface. * The module bank is now a global variable. The video output bank and the audio output bank might follow (when they exist). * Coding style and organization fixes to the spdif decoder. * autoconf and Makefile changes by Arnaud Gomes-do-Vale <arnaud@carrosse.frmug.org>.
-
- 30 Apr, 2001 2 commits
-
-
Renaud Dartus authored
- New ac3_imdct - New ac3_downmix
-
Christophe Massiot authored
-
- 29 Apr, 2001 1 commit
-
-
Stéphane Borel authored
cards: it sends raw ac3 frames to an external ac3 decoder. It is very experimental yet, hasn't any synchro ... but it works well with my sblive and my dtt3500 speakers (note that you need a patched emu10k1 driver for this to work). -bug fix in gnome intf thanks to Shane Harper. -bug fix in input_dvd for chapter change.
-
- 28 Apr, 2001 1 commit
-
-
Sam Hocevar authored
* Coding style fixes here and there. * Miscellaneous QNX compile fixes. * Beginning of the mingw32 port by Gildas Bazin <gbazin@netcourrier.com>. * Added Marcari and Gildas to the AUTHORS file. (I commited the mingw32 port because it doesn't add any new code outside the #ifdefs, but we won't tell a word about it for the moment. We don't really need windows users whining about bugs, do we ?)
-
- 27 Apr, 2001 1 commit
-
-
Sam Hocevar authored
* Fixed the continuous 'seeking position' bug in network mode. * rc interface plugin for vlc control through /dev/stdin courtesy of Peter Surda <shurdeek@panorama.sth.ac.at>. * Support for `ts://foo:42' style input source: vlc ts://vls.via.ecp.fr:1234 vlc ts://vls.via.ecp.fr vlc ts:vls vlc ts:vls:4321 As a side effect, the Gnome and Gtk "network input" buttons work.
-
- 20 Apr, 2001 2 commits
-
-
Sam Hocevar authored
* Added prototypes for the Elementary Stream input module for Alexis. it's compiled by default, to activate it: "vlc --input es <file.mpeg>"
-
Sam Hocevar authored
* Fixed build process when no plugins or no builtins were chosen. * Makefile changes to get around MacOS X's brain-damaged gcc. * FreeBSD configure and Makefile patches, courtesy of Espen Skoglund <esk@ira.uka.de>.
-
- 17 Apr, 2001 1 commit
-
-
Sam Hocevar authored
OS X fixes: * Fixed a compilation issue in the DVDioctl driver. * Added a call to ranlib after a built-in module compilation.
-
- 16 Apr, 2001 2 commits
-
-
Sam Hocevar authored
* Merged Makefile.common and Makefile.modules.in into Makefile.modules * Updated version number and ChangeLog to 0.2.72 * Additional plugin Makefile cleaning, probably the last.
-
Sam Hocevar authored
* Added .cvsignore files in the plugins directories. * Additional Makefile cleaning for built-in modules. * Fixed Makefile for Solaris target.
-
- 15 Apr, 2001 3 commits
-
-
Sam Hocevar authored
* Updated TODO list with Henri's Apr 6th post. * Built-in modules support almost finished. Now you can compile any module within vlc, even the Gnome, Qt, SDL and GGI modules at the same time, resulting in an awful extra fat vlc binary with gazillons of library dependecies. The only exception is that the Gnome and Gtk+ modules can't be compiled together into vlc. But you can have one compiled built-in and the other as a plugin. Another consequence is that libdl should no longer be needed under MacOS X. I'll check this as soon as possible.
-
Sam Hocevar authored
* A few Makefile fixes for BeOS * XVideo patches by Shane Harper
-
Sam Hocevar authored
* Beginning of the built-in modules support. A few words about the changes: - heavy Makefile butchery has taken place, each plugin now has its own Makefile. I know recursive make blablah harmful, but it was just so much easier to do this way. - Makefile.in has disappeared, we now generate Makefile.opts with the overall configuration options, and Makefile.modules which is specific to module compilation. - After ./configure has been run you may want to modify Makefile.opts to check which modules will be compiled built-in or as plugins. - Some modules cannot be compiled built-in right now because proper linkage doesn't work yet. We don't really care since they're the interface or video output modules. The most important stuff works (iDCT, motion, YUV, input). - It's perfectly valid to compile a module both as built-in and as a plugin. vlc will only load the built-in one, but I'll add an option to ignore built-in modules for testing purposes. - We *should* see a performance increase here. I didn't have much time to test it, but if anyone can confirm and perhaps give a rough estimate of how much we gain...
-
- 25 Jan, 2001 1 commit
-
-
Sam Hocevar authored
. removed Makefile -- I can't understand why it reappeared.
-
- 12 Mar, 2000 1 commit
-
-
Michel Lespinasse authored
Proprification du decodeur mpeg audio, comme j'avais fait pour l'ac3 : separation de ce qui est specifique videolan et de ce qui est generique. Je compte encore bidouiller pas mal la partie generique, mais deja la ca marche donc...
-
- 11 Mar, 2000 1 commit
-
-
Jean-Marc Dressler authored
-
- 10 Mar, 2000 1 commit
-
-
Sam Hocevar authored
. dernier commit pour tester les scripts ; �a devrait bien marcher � pr�sent
-
- 09 Mar, 2000 2 commits
-
-
Sam Hocevar authored
. plus de #ifdef SYS_* dans threads.h, on utilise defs.h . re-test des scripts de tibob :)
-
Sam Hocevar authored
top scripts de tibob. . suppression de Makefile . rajout de include/defs.h.in qui g�n�re include/defs.h pour g�n�rer le Makefile et defs.h il faut lancer ./configure pour ceux qui voudraient toucher � configure.in, "include/defs.h.in" est g�n�r� par la commande autoheader, et "configure" est g�n�r� par autoconf
-
- 08 Mar, 2000 1 commit
-
-
Sam Hocevar authored
-