- 08 Feb, 2001 8 commits
-
-
Christophe Massiot authored
Maybe it would be a good idea to compile the DVD plugin on machines which have one ? :pppp
-
Stéphane Borel authored
-
Sam Hocevar authored
. moved the playlist handling from input/input.c to interface/interface.c . fixed a few warnings at compile-time . fixed sound channel selection in playlist mode . added a color message in the plugin bank because on peut bien d�conner cinq minutes, quand-m�me . we now spawn a new input thread for each file . added a missing pf_close() because it's always cool to close files after we read them
-
Stéphane Borel authored
plugins. I will fix that soon. -minor modification in pluginification.
-
Sam Hocevar authored
This commit is a bit early, but it'll save Stef, Henri and me much time later, when we don't have to backport modifications to input_*.c What's new : - playlist works again (still the old wrong way like Meuuh doesn't like, but this is going to change within a few hours) - input_ps, input_ts and input_dvd are now plugins, located in plugins/mpeg/ and plugins/dvd/ What's broken : - audio output might be broken on some streams ; have to investigate What has changed : - fast/slow keys are now A/Z instead of A/S since S was already linked to the scale/noscale toggle. - `--dvd' doesn't work anymore, for the moment try to use : vlc --input dvd /dev/dvd - module bank is now less verbose ; use `--warn 1' to turn back verbosity on
-
Stéphane Borel authored
2048 bytes. -Some modifications in netlist to make it work with DVD. -Fixed � bug in mpeg_system.c We use INPUT_READ_ONCE many times in the input code. I think that we should replace it with a field in input_thread_t to give more flexibility to modules. I have done it in DVD plugin but it can't work if input.c is limited by INPUT_READ_ONCE. The DVD method is slower than input_ps ; but there are things to improve. CSS descrambling is broken.
-
Renaud Dartus authored
-
Renaud Dartus authored
Thanks to Meuuh, he's MORTEL ;)
-
- 07 Feb, 2001 4 commits
-
-
Christophe Massiot authored
-
Christophe Massiot authored
-
Christophe Massiot authored
* Dirty hack in the SDL intf to bind "a" (fAst forward), "s" (Slow motion) and "p" (Play).
-
Christophe Massiot authored
* Fixed a bug in the management of the first video PTS.
-
- 06 Feb, 2001 2 commits
-
-
Christophe Massiot authored
-
Damien Lucas authored
. Used instead p_vout->i_changes like in x11
-
- 05 Feb, 2001 2 commits
-
-
Sam Hocevar authored
. patched 2 debian bugs (see http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=vlc) . improved the snapshot generation
-
Damien Lucas authored
. Default is shown. . Default in fullscreen is hidden.
-
- 04 Feb, 2001 1 commit
-
-
Sam Hocevar authored
. removed obsolete video_yuv_mmx.S . updated the TODO list and wrote a small todo.pl parser to make it easier to see which items remain to be done . `make snapshot' now creates vlc-*.tar.gz and vlc-*-nocss.tar.gz
-
- 31 Jan, 2001 1 commit
-
-
Sam Hocevar authored
. version 0.2.50 for the Linux Expo . --overlay and --fulscreen options (only work with --vout sdl) . the vlc exits after the end of the stream, which prevents from having to kill it and relaunch it during a presentation, just script it like : for i in ~/mpeg/* ; do vlc --fullscreen --overlay --vout sdl $i ; done Yes, I know the --overlay stuff is fucking ugly. But *I* am not the one who redefines vout_sys_t in an interface-related source file. I won't change it until the vout/intf is finished being rewritten. Additional information: if "--overlay --fulscreen" doesn't center your picture, try with your screen geometry, eg: "--overlay --fullscreen --width 1024 --height 768"
-
- 30 Jan, 2001 2 commits
-
-
Christophe Massiot authored
-
Sam Hocevar authored
no -a option is specified, the vlc will play the first audio type it finds, so there is no need to specify "-a ac3" for a DVD anymore.
-
- 29 Jan, 2001 2 commits
-
-
Stéphane Borel authored
-
Stéphane Borel authored
It is very slow now but will be more adapted to the forthcoming DVD input. It should read the first title of many DVDs but has been tested with few. -Beginning of ifo commands to implement DVD navigation.
-
- 26 Jan, 2001 2 commits
-
-
Christophe Massiot authored
-
Christophe Massiot authored
-
- 25 Jan, 2001 1 commit
-
-
Sam Hocevar authored
. removed Makefile -- I can't understand why it reappeared.
-
- 24 Jan, 2001 1 commit
-
-
Christophe Massiot authored
-
- 23 Jan, 2001 2 commits
-
-
Christophe Massiot authored
* Updated TODO list.
-
Christophe Massiot authored
-
- 22 Jan, 2001 4 commits
-
-
Christophe Massiot authored
-
Christophe Massiot authored
-
Christophe Massiot authored
-
Stéphane Borel authored
I have only tested it on my computer ; so I don't know if it work elsewhere, particularly on BSD and BeOS.
-
- 21 Jan, 2001 2 commits
-
-
Stéphane Borel authored
Now it generates a valid title key, but there is no sector descrambler yet.
-
Christophe Massiot authored
-
- 20 Jan, 2001 3 commits
-
-
Stéphane Borel authored
* It only tests encryption and authenticates disc. The decryption does not work now et it is very ugly but I'm working on it.
-
Sam Hocevar authored
-
Sam Hocevar authored
. the infamous Saturday morning mighty one-liner patch that fixes subtitles
-
- 19 Jan, 2001 1 commit
-
-
Sam Hocevar authored
. changed program version to 0.2.5 (preparing 0.3.0 release). . changed codename to Urumov . cleaned a lot of stuff in the Debian package generation. If anyone objects with the versioning scheme, let's fight in the dirt and sort that out. Or change it yourself. Debian packages can be tried here: http://armitage.via.ecp.fr/~sam/vlc/
-
- 18 Jan, 2001 2 commits
-
-
Christophe Massiot authored
-
Sam Hocevar authored
The motion compensation routines are now modules as well ; choose your implementation with `--motion motion', `--motion motionmmx' or `--motion motionmmxext'. Of course, the best implementation is chosen if you don't ask for any. There doesn't seem to be any performance hit due to the move to shared libs, which is a good thing. Please test actively if you have time, though. Updated --help result, manpage, INSTALL document, and a few files. I moved vdec_motion.h and vpar_blocks.h back to /include because they will be needed to build motion compensation modules, but perhaps we don't need to export everything which is in these files. /src/video_decoder/ now has only one .c file, perhaps it could now be merged with video_parser ?
-