An error occurred fetching the project authors.
- 01 Jun, 2002 1 commit
-
-
Sam Hocevar authored
As for video output 4, this breaks almost everything, but I'll slowly do what remains to be fixed during the weekend. Changes in vlc: =============== * vlc is now a very small program (20 lines) which uses the libvlc API; it is quite simple for the moment but can be extended in the future. * interfaces, decoders, video outputs, etc. are now almost the same objects (yes, I know, this is C++ redone in C) and are structured in a tree. More about this later, but basically it allows the following nice features: - several interfaces - several playlists with several outputs - input plugins spawning helper interfaces (will be used for DVD menus) - anything spawning anything; I swear there are useful uses for this! * libvlc can be used in other programs; I'm currently writing a Mozilla plugin for my employer. Things currently broken: ======================== * most interfaces, most ports * the playlist handling (almost finished rewriting this though). This means no file can be played from the GUI, you need to use the commandline. This also means it segfaults at EOF, when exiting the program, and it sometimes refuses to open a file when asked to.
-
- 24 May, 2002 1 commit
-
-
Gildas Bazin authored
* ./include/inpu_ext-dec.h added a check to fifo->b_die after the call to BitstreamNextDataPacket() in GetChunk(). Code using GetChunk() also needs to check fifo->b_die before using the obtained data. This fixes frequent crashes you get on win32 with the a52 plugin when you close a stream.
-
- 18 May, 2002 1 commit
-
-
Sam Hocevar authored
and mipspro doesn't know about __inline__).
-
- 13 May, 2002 1 commit
-
-
Laurent Aimar authored
* ALL : version from ffmpeg cvs can now decode msmpeg4 v1 v2 , so i have added support for this. But you can always use old ffmpeg library without any problem ( i hope ;)
-
- 24 Apr, 2002 1 commit
-
-
Sam Hocevar authored
* ALL: renamed PLUGINS to __PLUGINS__ to avoid conflicts with libraries defining it. Grmbl. * ./src/input/input_ext-plugins.c: cosmetic change.
-
- 23 Apr, 2002 1 commit
-
-
Laurent Aimar authored
* ./plugins/avi a light avi demux * ./plugins/ffmpeg a video decoder for divx v3 and opendivx
-
- 14 Mar, 2002 1 commit
-
-
Stéphane Borel authored
*p_es->p_demux_data is available in p_config->p_demux_data so that the input can pass information directly to the decoder. *First application: aspect ratio for DVD is read from the ifo (should fix the buf with aspect ratio in anamorphic DVDs). *The DVD plugin also copy the spu yuv palette in p_demux_data so that the spudec can display subtitle with the right color (sam !). *Removed duplicate code and useless lock in gtk.
-
- 01 Mar, 2002 1 commit
-
-
Christophe Massiot authored
- Major rewrite of the buffer core functions - Modularity of access plugins (file, udp, http) - Modularity of network stack (ipv4, soon ipv6) - Autodetection of the type of stream And a new killing feature : HTTP streams are now seekable. Please note that dvd, dvdread and vcd plug-ins are broken and thus disabled.
-
- 21 Jan, 2002 1 commit
-
-
Christophe Massiot authored
* mad PTS should finally be accurate * Some configure changes.
-
- 14 Jan, 2002 1 commit
-
-
Christophe Massiot authored
* Fixed issues in the PTS handling of the mad plug-in (incomplete).
-
- 30 Dec, 2001 2 commits
-
-
Sam Hocevar authored
Some heavy changes today: * Removed duplicate function checks from configure.in. * Added extra magic to Makefile.modules so that the module Makefiles are now ridiculously simple. And I mean *simple*. Check it! This will make a possible switch to full autoconf/automake a lot easier. * Added the vlc version name to the plugin symbols, to be sure we only load plugins with the same version number. A nasty consequence is that you need to rebuild your tree after midnight if you are using a CVS tree :-) * Got rid of modules_export.h by #defining exported functions in the same header as their prototype. * Added modules_inner.h and other commonly used .h files to common.h so there are less and less files to include, and renamed common.h to <videolan/vlc.h>. * First modifications to the module handling system towards my ultimate goal to get rid of the *_Probe functions. Got rid of TestMethod and TestCPU, as well as src/misc/tests.c. * Wrote the chroma plugin handling functions. No YUV functions have been ported yet because it'ls a lot of work, but the core system works, I tried it with a naive yv12->rgb16 plugin (which will disappear when the real functions are ready). * Made a lot of functions in dvd_summary.c one-liners to avoid wasting too many output lines. * Fixed a segfault in input_dvd.c:DVDInit. * Added a fixfiles.sh script in plugins/gtk to be run after Glade has generated its C files. * Did some work on the KDE interface to make it suck a bit less. It still segfaults, but at least it runs and it looks less ugly. * RGB SDL rendering works again, though in 16bpp only. * Made plugins/vcd/linux_cdrom_tools.c independent of any vlc structure so that it'll be easily put in a library. Maybe libdvdcss? * Fixed VCD date display. * Merged vout_xvideo.c, vout_x11.c and vout_common.c into xcommon.c. * Wrote non-Shm XVideo output. * Made X11 output work again. Still pretty unstable, only works for 16bpp. * Additional french translation in po/fr.po. Any taker for the rest? * Fixed a segfault in video_output.c when the allocated pictures were not direct buffers. * If $DISPLAY isn't set, don't try to run the Gtk+ interface. * Replaced 48x48 .xpm images with 32x32 ones to conform to Debian policy (Closes Debian bug #126939). * Removed the automatic ./configure launch when running `make all' for the first time. Stuff currently more broken than it ought to be: * The wall filter. Being fixed. * x11 and sdl plugins for depth != 16bpp. * Software YUV. * gvlc, gnome-vlc, kvlc shortcuts. Use --intf instead for the moment.
-
Sam Hocevar authored
* Put ErrorThread() in input_ext-dec.h because it was the same function in all decoders. Called it DecoderError() instead. * All decoders enter DecoderError() in case of error, even if they haven't allocated all their data. This prevents the input from getting stuck if a decoder has failed its initialization. * Namespace fixes through the decoder files.
-
- 29 Dec, 2001 1 commit
-
-
Christophe Massiot authored
-
- 27 Dec, 2001 2 commits
-
-
Christophe Massiot authored
-
Christophe Massiot authored
* Minor optimizations in the Next Generation Buffer Manager.
-
- 19 Dec, 2001 1 commit
-
-
Christophe Massiot authored
-
- 12 Dec, 2001 2 commits
-
-
Christophe Massiot authored
-
Christophe Massiot authored
-
- 10 Dec, 2001 1 commit
-
-
Sam Hocevar authored
* Removed unused code (intf_channels.c, keystrokes.h). * Put common_win32.h back into common.h -- it wasn't that big and we should not multiply header files. * Added gettext support by Thomas Graf <reeler@reeler.org>, may be broken on other platforms but we'll only see it when I'm finished with vout 4 :-) * Fixed a segfault on exit when no fast_memcpy module was found.
-
- 07 Dec, 2001 1 commit
-
-
Sam Hocevar authored
* Fixed a total breakage of decoder plugins introduced by fast_memcpy. * Got rid of #include "main.h", included it in common.h instead ; got rid of #include "config.h" in most files as well.
-
- 03 Dec, 2001 1 commit
-
-
Sam Hocevar authored
* Borrowed MPlayer's fast memcpy() routines. Best is autodetected, choose "--memcpy <whatever>" to choose one from c, mmx, mmxext or 3dn. Please test! Especially Athlon users. * Added versioned build-dep to libasound2-dev (Closes Debian bug #121057). * Updated Gtk/GNOME interfaces to use "udpstream" instead of "ts". * Unrolled ChangeLog.
-
- 15 Nov, 2001 2 commits
-
-
Sam Hocevar authored
* Fixed a few crashes due to race conditions in the decoder spawning. * Removed unused code here and there.
-
Christophe Massiot authored
-
- 13 Nov, 2001 1 commit
-
-
Henri Fallon authored
All decoders (audio, video, subtitles) are now modules. - mpeg_vdec, mpeg_adec and ac3_adec are builtins by default - ac3_spdif, spu_dec and lpcm_dec are plugins by default
-
- 03 Oct, 2001 1 commit
-
-
Christophe Massiot authored
* Fixed a bug in vlc.spec ; * New --disable-plugins option ; make all plug-ins built-in.
-
- 24 Sep, 2001 1 commit
-
-
Christophe Massiot authored
-
- 22 Aug, 2001 1 commit
-
-
Christophe Massiot authored
- performance boost ; - fixed the "Dual Prime Arithmetic" bug ; - 3DNow! motion compensation module ; * BTW, fixed numerous bugs ; * AC3dec statistics do not show up with --enable-stats, because I doubt they're understandable by a normal human being, and they pollute the output.
-
- 16 Jul, 2001 1 commit
-
-
Christophe Massiot authored
-
- 01 May, 2001 2 commits
-
-
Sam Hocevar authored
* Fixed a segfault in the SPU decoder initialization.
-
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>.
-
- 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 ?)
-
- 25 Apr, 2001 1 commit
-
-
Christophe Massiot authored
callback on startup - InitBitstream prototype has changed ; * Removed a buffer zeroing in video output - doesn't change anything for me, does it for you ?
-
- 16 Apr, 2001 1 commit
-
-
Cyril Deguet authored
Re-added the new packet allocation method in PS input, using packet caches. With warning level 1, you can see when a packet is allocated or freed; the goal is to never call 'malloc' nor 'free', except at the beginning of the stream. The size of the different caches can be adjusted in plugins/mpeg/input_ps.h. If 'free' is called too often, it means that a cache is too small, so try to increase its size.
-
- 05 Apr, 2001 2 commits
-
-
Cyril Deguet authored
switched back to the old packet allocation method for PS input, because Sam does not want the new one ;)
-
Cyril Deguet authored
Added a new packet allocation method that punish one's mother in PS input. I hope there won't be too many segfaults because of it ;) A few parameters must be adjusted to optimize this method; I'll do it later because Proba Stat sucks ;)
-
- 06 Mar, 2001 1 commit
-
-
Christophe Massiot authored
-
- 02 Mar, 2001 2 commits
-
-
Christophe Massiot authored
* Added a fps display when toggling 'i' ; * Fixed a bug in the video parser where one picture buffer was not released at quit time ; * Broke the mux_rate calculation, but hey guys ! it was already broken and nobody noticed it.
-
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 :)
-
- 08 Feb, 2001 2 commits
-
-
Christophe Massiot authored
GNU/Linux options ; * Changed fseek() to fseeko() for 64-bit offsets ; * Reset frame predictors on a stream discontinuity.
-
Christophe Massiot authored
and jump Backward in the SDL intf. Enjoy !
-