An error occurred fetching the project authors.
- 17 Jul, 2002 2 commits
-
-
Sam Hocevar authored
-
Sam Hocevar authored
remaining issues with XvPutImage detection, please confirm!
-
- 15 Jul, 2002 3 commits
-
-
Sam Hocevar authored
-
Sam Hocevar authored
because XvSetPortAttribute isn't always available.
-
Jon Lech Johansen authored
- added messages and playlist panel - simple dock menu (play, pause, stop) - context menu in video view - localization support: http://nanocrew.net/vlc/vlc-osx-ja.png - no longer broken :)
-
- 05 Jul, 2002 1 commit
-
-
Sam Hocevar authored
strndup to a separate file so that Win32 can benefit from it. * ./include/vlc_threads.h: Borland compilation fix.
-
- 04 Jul, 2002 1 commit
-
-
Sam Hocevar authored
* ./debian/rules: activated the vlc-xosd, vlc-kde and mozilla-plugin-vlc Debian packages. * ./po/*: updated potfiles.
-
- 02 Jul, 2002 1 commit
-
-
Jon Lech Johansen authored
* configure.in: added -lintl to plugins_LDFLAGS.
-
- 18 Jun, 2002 1 commit
-
-
Christophe Massiot authored
-
- 11 Jun, 2002 1 commit
-
-
Gildas Bazin authored
* ./include/configuration.h: renamed MODULE_CONFIG_* macros into CONFIG_*. * ./include/configuration.h, ./plugins/gtk/gtk_preferences.c, ./plugins/filter/transform.c, ./plugins/filter/distort.c, ./plugins/filter/deinterlace.c: added an ADD_STRING_FROM_LIST() configuration macro. * ./include/modules.h, ./include/video_output.h, ./src/video_output/video_output.c, ./plugins/filters/*: added a VOUT_FILTER capability. Having a clear distinction between VOUTs and VOUT_FILTERs allows us to get rid of ugly hacks. The filters are also stackable now (use --filter=foo:bar:foo etc..). * ./include/configuration.h, ./src/libvlc.h, ./src/libvlc.c: clean-up + added an ADD_USAGE_HINT() configuration macro.
-
- 10 Jun, 2002 1 commit
-
-
Sam Hocevar authored
* ./plugins/filter/deinterlace.c: the blend mode is now a lot smoother, but also a bit slower, so I also kept the old version, optimized it, and called it "mean".
-
- 08 Jun, 2002 1 commit
-
-
Loïc Minier authored
* ./plugins/xosd/xosd.c: configuration options
-
- 07 Jun, 2002 2 commits
-
-
Loïc Minier authored
-
Loïc Minier authored
-
- 04 Jun, 2002 1 commit
-
-
Sam Hocevar authored
* ./src/interface/interface.c: interfaces are no longer attached only to p_vlc. * ./src/libvlc.c, ./src/misc/modules.c, ./src/playlist/playlist.c, ./src/input/input.c: improvements in the playlist handling (not quite that yet though). (ported from v0_4_1_branch) * ./configure.in, ./plugins/mpeg_system/mpeg_ts.c: fixed libdvbpsi handling. * ./src/misc/configuration.c: fixed the --nofoo option handling. * ./src/interface/main.c: fixed two compilation warnings under Solaris.
-
- 03 Jun, 2002 1 commit
-
-
Olivier Teulière authored
-
- 02 Jun, 2002 3 commits
-
-
Arnaud de Bossoreille de Ribou authored
* plugins/a52_system/Makefile, plugins/a52_system/a52_system.c: a52 input module. * plugins/ac3_spdif/ac3_spdif.c: added a little mwait to avoid a flood from the a52 input module. Note: the new module aims at reading ac3 streams but it works only with the ac3_spdif "decoder" since it is the only one which dates each frame contrary to the others which can't avoid a flood from the input module.
-
Christophe Massiot authored
-
Sam Hocevar authored
bug which might have been the cause of crashes. * ./plugins/filter/crop.c: attempt at an automatic border cropping filter, using "--filter crop --autocrop". * ./vlc.spec: added missing filters to the RPM generation. * ./src/misc/objects.c: commented all functions. * ./src/misc/objects.c: implemented vlc_object_find( , , FIND_ANYWHERE). * ./src/misc/objects.c: renamed vlc_object_unlink to vlc_object_detach.
-
- 01 Jun, 2002 2 commits
-
-
Sam Hocevar authored
src/interface/intf_eject.c, src/misc/threads.c: win32 compilation fix. * ./plugins/directx/aout_directx.c, plugins/directx/vout_directx.c, ./plugins/directx/vout_events.c: the DirectX notification and event threads now use the vlc_thread_create / vlc_thread_ready scheme. Untested. * ./configure.in: added a check for inttypes.h and sys/int_types.h. * ./configure.in: fixed the HTTP plugin compilation under BeOS. * ./plugins/network/ipv6.c: reactivated IPv6 module.
-
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.
-
- 27 May, 2002 1 commit
-
-
Sam Hocevar authored
* ./po/pl.po: polish translation, courtesy of Arkadiusz Lipiec <A.Lipiec@elka.pw.edu.pl>.
-
- 22 May, 2002 1 commit
-
-
Christophe Massiot authored
-
- 20 May, 2002 4 commits
-
-
Sam Hocevar authored
-
Christophe Massiot authored
* Updated changelog.
-
Gildas Bazin authored
* First try for IPv6 support on Win32. This hasn't been tested so it might not work! To compile this stuff you need a mingw compiler with w32api-1.3. The win32 code uses the getaddrinfo function because inet_pton is supposed to be deprecated and not supported by Microsoft. gethostbyname2 isn't supported as well. Maybe we could try to unify the ipv6 plugin and have all the ports use getaddrinfo ? (I didn't dare to do it because I don't want to break anything before a release ;-)
-
Sam Hocevar authored
rebuild anything to Makefile.config, so that editing it will not cause a complete rebuild.
-
- 19 May, 2002 2 commits
-
-
Christophe Massiot authored
-
Christophe Massiot authored
-
- 18 May, 2002 1 commit
-
-
Christophe Massiot authored
* Dropped dependancy on autoconf 2.52.
-
- 17 May, 2002 1 commit
-
-
Sam Hocevar authored
-
- 15 May, 2002 1 commit
-
-
Sam Hocevar authored
-
- 14 May, 2002 1 commit
-
-
Gildas Bazin authored
* new --with-mad-tree configure option. * updated BUGS file.
-
- 13 May, 2002 1 commit
-
-
Sam Hocevar authored
display. To duplicate 12 times, use `--filter clone:12'.
-
- 12 May, 2002 1 commit
-
-
Christophe Massiot authored
* Objective-C files are now .m * Fixed a major bug in the spu decoder * Disabled auto-hiding of mouse cursor since it doesn't work when browsing menus ; instead, click in the video window
-
- 10 May, 2002 1 commit
-
-
Laurent Aimar authored
* include/common.h and input_ext-plugins.h, src/misc/modules_plugin.h : export input_ClockGetTS for plugins. * plugins/mpeg_system/mpeg_audio.c : a demux for mpeg audio stream (file, web radio ...) * Makefile configure.in : to compile it
-
- 04 May, 2002 1 commit
-
-
Sam Hocevar authored
* ./configure.in: deactivated ipv6.so under QNX for now.
-
- 03 May, 2002 1 commit
-
-
Sam Hocevar authored
-
- 01 May, 2002 2 commits
-
-
Christophe Massiot authored
* Fixed VCD double detection
-
Gildas Bazin authored
* added a --with-a52-tree option to the configure script.
-