An error occurred fetching the project authors.
- 07 Mar, 2001 1 commit
-
-
Henri Fallon authored
- Fixed TS input ( a nasty dead lock had appeared 4 days ago ) - Added base of network support Things to be done : - Meuuh : fix the PCR synchronisation so that we can set b_pace_cntrol to 0 - Sam : find a way of specifing the type of media (file, net). For the moment, the "--input ts" always call input_NetworkOpen - Maybe sam : for the moment the working syntax is vlc --input ts servername, it should nbe turned into "vlc --server servername". Things that don't work (i'll work on this this week end) : - stopping and retaking a stream - a nice 'waiting for stream' - we select all incoming streams. we should be able to select. Things that haven't been tested : - broadcast - only tested with one stream. Kick me if something is broken by my fault.
-
- 02 Mar, 2001 1 commit
-
-
Stéphane Borel authored
(I've chosen 32 now), that doesn't use any memcpy anymore and is also much faster. It is ready now for cell positioning in multi-angle DVD (to come soon). -DVD specific netlist adapted to 2048 bytes long blocks that contain several data_packets. -Modification in mpeg_system.c to use p_payload_start instead of p_buffer (necessary for DVD plugin). It does not break other plugins since they set p_payload_start to p_buffer -New field i_read_once in input_thread_s to be able to read more than the TS related 7 packets ; i_read_once is set to INPUT_READ_ONCE by defaults but plugins can change it during initialisation. Please check that nothing is broken :)
-
- 20 Feb, 2001 3 commits
-
-
Sam Hocevar authored
* Fixed a segfault in input.c when no input plugin was found for a given file. * Fixed a deadlock in the Gnome interface. Next time I'll initialize my mutexes, I promise. * Added Oct to the authors list in intf_gnome.glade :)
-
Stéphane Borel authored
title handling; it is coming :)
-
Stéphane Borel authored
First serie of changes in DVD module for the forthcoming interface menus There is a new capability in input type modules for setting the attributes of a new area. It is set to NULL for PS and TS plugins. It should be called for every title change, chapter change, audio mode change or spu channel change. But this part of code is not used at the moment, and is not completed yet.
-
- 19 Feb, 2001 1 commit
-
-
Christophe Massiot authored
* Changed video decoder's error messages into warnings.
-
- 18 Feb, 2001 1 commit
-
-
Jean-Marc Dressler authored
The BeOS port seems to work again. I used this command to play an unencrypted DVD, but maybe there is a better solution: ./vlc dvd:/dev/disk/ide/atapi/1/master/0/raw Current problems: gcc doesn't like MMX-EXT instructions, and refuses to have register %ebx being used in the main application. Grr. ,-- don't trust the CVS bot, it's Sam speaking here :) /
-
- 16 Feb, 2001 2 commits
-
-
Sam Hocevar authored
* Upgraded version number to 0.2.61. Release is today. * Fixed package building (both RPMs and .debs). * Fixed `make snapshot' rule. * Added some magic to filename detection. To read a DVD you now just need to run 'vlc dvd:/dev/hdc' for instance. Same for file:// URIs. * Fixed a segfault in the slider when no stream was playing. * Made the slider go from 0 to 100 (instead of 99 :) * The vlc now doesn't exit when finished playing. As a side effect of the playlist code being very recent, it continuously loops.
-
Sam Hocevar authored
* Fixed a segfault in the input thread creation, as well as a possible deadlock. This happened mostly when opening non-existing files. * Created input_SetStatus to do input_SetRate's job. input_SetRate will be used to set an arbitrary rate, for people who want to read DVDs at 1/2.71828 times the actual speed. * Stubs for the ncurses control interface. No working code yet, but the holes just need to be filled. * Improved X11 support. Still not as functional as before. * The output window now states the method name, so that people know whether they are using X11 or SDL. * The Gnome interface is now drag'n'drop aware, you can drop a file on it just like Xine does (or so I guess).
-
- 12 Feb, 2001 1 commit
-
-
Christophe Massiot authored
* Fixed a typo in my previous commit.
-
- 11 Feb, 2001 1 commit
-
-
Sam Hocevar authored
Beginning of Interface II --------------------------- * Plugins have completely disappeared, we now only use the new module API. * All intf and vout modules are now independant. So far, only the Gnome intf module and the SDL vout module have been ported. configure.in has been modified to reflect the changes (x11 and dummy aren't compiled by default anymore, while SDL and Gnome are). Note that this is _not_ Interface II, it's just a step forward. For instance, it lacks the whole message passing scheme. Things that should work: * Right-clicking on the SDL video output window brings the Gnome menu. * Pause, Play, Exit, About work from the menu or from the interface window. * The old SDL keys still work. Things that are broken or may be broken: * Xlib calls are not locked yet, which may lead to "Unexpected async reply" errors, and make the vlc segfault. * Sound only works for the first file. * The SDL vout_sdl.c file is absolutely ugly and kludgey. * The vlc immediately quits when no filename is given as an argument. Not a real bug, but still annoying. * The Gnome menu does not work in fullscreen mode. Things that will come soon, maybe tomorrow: * Complete navigation buttons (fast forward, slow, etc.). * File/Open menu to add files to the playlist. * Return of the X11 video output for those of us who do not have SDL. * Textmode interface for those of us who do not have Gnome. * aout and vout autospawn (maybe).
-
- 08 Feb, 2001 4 commits
-
-
Christophe Massiot authored
and jump Backward in the SDL intf. Enjoy !
-
Christophe Massiot 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
-
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
-
- 07 Feb, 2001 1 commit
-
-
Christophe Massiot authored
* Dirty hack in the SDL intf to bind "a" (fAst forward), "s" (Slow motion) and "p" (Play).
-
- 24 Jan, 2001 1 commit
-
-
Christophe Massiot authored
-
- 20 Jan, 2001 1 commit
-
-
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.
-
- 16 Jan, 2001 2 commits
-
-
Sam Hocevar authored
[ include/config.h.in has changed, don't forget tu run ./configure ] . fixed the --aout, --idct and --yuv flags . updated manpage and --(long)help output to reflect that change . removed a few unneeded #includes here and there . cosmetic changes in error messages in input.c Currently available flags are now : --aout dummy esd dsp alsa --idct idct idctclassic idctmmx --yuv yuv yuvmmx --vout works like before, but still uses the old plugin system for now.
-
Stéphane Borel authored
available information . Fixed a bug in parsing of VTS attributes . Fixed a bug in input.c that made input plugin initialize even though no stream is reachable (thanks Sam) I hope I'll be able to get the position of the movie soon. Meuuh : the seek function of the plugin now take off_t as argument which could be a problem later. Maybe it should take off64_t or time argument.
-
- 15 Jan, 2001 1 commit
-
-
Sam Hocevar authored
. fixed the bug-that-made-the-vlc-segfault-on-exit, which means that more than ever, � le client ne segfaulte pas �. . there was still a problem upon quitting: sometimes the null packet wasn't big enough to reach a decoder breakpoint, so I now create 10 of them (since I can't make it bigger) to be sure. Meuuh, what do you think ? . fixed the Makefile to spare a few variables here and there. . reduced module hide delay, removed loading of the audio output plugins since they are now modules. . changed a few intf_Msg to intf_DbgMsg, and added "vout:", "intf:", and so on in a few other messages. . removed unused includes in the idct modules.
-
- 14 Jan, 2001 1 commit
-
-
Stéphane Borel authored
. Parsing of ifo file almost completed. . Still does not work well.
-
- 07 Jan, 2001 2 commits
-
-
Henri Fallon authored
- Order : if a then b are initialized, release b then a ; - Typos ; - Cosmetic changes.
-
Henri Fallon authored
- Added vlc_mutex_destroy and vlc_cond_destroy function, for pthreads. - Used them before quitting, every lock and cond is destroyed - Checked the return value of malloc and realloc in input_programs - Cosmetic changes TODO: add vlc_*_destroy for beos and C_thread
-
- 05 Jan, 2001 1 commit
-
-
Sam Hocevar authored
. this is a coding style patch which removes all "foo(bar){" constructions and most of the tabulations. . also, fixed a bug in the default subtitle track. . and made a few error messages more explicit, ie. changed "error: %s" to "foo error: couldn't initialize bar (%s)"
-
- 22 Dec, 2000 1 commit
-
-
Sam Hocevar authored
. no need to add "\n" at the end of intf_*Msg() messages anymore.
-
- 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
-
Christophe Massiot authored
-
- 20 Dec, 2000 1 commit
-
-
Christophe Massiot authored
* Fixed a bug in AC3 initialization ; * PS streams are now pre-parsed (this can take a while) if possible ; ./configure is required after this update.
-
- 19 Dec, 2000 1 commit
-
-
Christophe Massiot authored
-
- 18 Dec, 2000 2 commits
-
-
Christophe Massiot authored
-
Christophe Massiot authored
-
- 05 Dec, 2000 1 commit
-
-
Christophe Massiot authored
-
- 27 Nov, 2000 2 commits
-
-
Christophe Massiot authored
* Fixed a bug in the parser when trashing an already parsed frame * Simplified (and enhanced) vpar_synchro for B pictures * Lowered the synchro DELTA
-
Christophe Massiot authored
* Fixed a bug which made frames go backwards with some displays (the video_decoder thread is now niced). * Made use of intf_WarnMsg() in the most needed places. Also simplified the synchro algorithm and fixed a bug with non-(5/1) streams. Fixed the optimizations in the configure stuff. Warning : this release needs a full rebuild (make clean; make). Warning : I might have broken the BeOS port, could somebody check ?
-
- 23 Aug, 2000 1 commit
-
-
Christophe Massiot authored
-
- 21 Aug, 2000 1 commit
-
-
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.
-
- 30 Jul, 2000 1 commit
-
-
Sam Hocevar authored
. fix de certaines fonctions qui devraient �tre inlin�es . gain de place dans la YUVMMX
-
- 06 Jul, 2000 1 commit
-
-
Sam Hocevar authored
. descendu le d�lai de d�marrage � .5 secondes au lieu de 2 . un nouvelle synchro qui devrait punixe !!!
-