An error occurred fetching the project authors.
  1. 02 Mar, 2002 1 commit
    • Stéphane Borel's avatar
      · 7a65e297
      Stéphane Borel authored
      *Initiliaze p_access_module & p_demux_modules to NULL when input thread
      in created.
      7a65e297
  2. 01 Mar, 2002 2 commits
    • Stéphane Borel's avatar
      · 9b393dab
      Stéphane Borel authored
      *dvd and dvdread support for input III.
      
      Dvdread is known to segfault at title change. I'm working on this.
      9b393dab
    • Christophe Massiot's avatar
      Input III (Episode 1). · d0bf23fa
      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.
      d0bf23fa
  3. 27 Feb, 2002 1 commit
    • Sam Hocevar's avatar
      · 7f76c7c5
      Sam Hocevar authored
        * ./src/input/input.c: BeOS network support (no idea if it works when you
          don't have BONE, though).
      7f76c7c5
  4. 26 Feb, 2002 1 commit
    • Xavier Marchesini's avatar
      · 638dac1c
      Xavier Marchesini authored
      Multicast now works under Win32, but this is a _bad_ kludge.
      
      It still segfaults 4 secondes after the first frame, but, at least, I
      can see two or three frames from MI2 :-)
      638dac1c
  5. 25 Feb, 2002 1 commit
    • Sam Hocevar's avatar
      · 2935b320
      Sam Hocevar authored
        * ./include/threads.h: support for the State Threads Library, a userland
          threads library (http://state-threads.sourceforge.net/). Useless to most
          people, but can be handy to debug stuff. Activate with `--enable-st'.
      2935b320
  6. 24 Feb, 2002 1 commit
    • Gildas Bazin's avatar
      · c40571df
      Gildas Bazin authored
      This is the first part of the new configuration architecture for vlc.
      Two other parts will follow soon:
      - config file implementation
      - gtk configuration interface.
      
      This part won't change much for end-users as these changes are mostly
      internal, you will however notice that the command line interface has
      changed. It will maybe be less user-friendly as I almost removed the
      short options but it shouldn't a big problem when the config file is
      implemented.
      
      What as changed is that it is really easy now to add configuration
      options to vlc. Plugins can also implement configuration options. All
      you have to do is to declare a MODULE_CONFIG section in your plugin.
      If you want to know more about this look at configuration.h and for some
      example: main.c, dsp.c or xvideo.c
      
      It would be nice if every developper could now start using configuration
      options in there plugins and also enhance old plugins.
      
      That's it, now let's hope I didn't break too many things ;-)
      c40571df
  7. 19 Feb, 2002 1 commit
    • Sam Hocevar's avatar
      · 730cc399
      Sam Hocevar authored
         * Got rid of TRACE and intf_DbgMsg which were seldom used anyway.
         * All intf_*Msg functions now write to stderr.
         * Implemented a message queue interface plugins can subscribe to.
         * Wrote the logger interface plugin. Usage:
            vlc -I logger:filename.log
         * Lots of fixes in the SPU renderer.
      730cc399
  8. 15 Feb, 2002 1 commit
    • Sam Hocevar's avatar
      · 48cbd8f3
      Sam Hocevar authored
        * ALL: got rid of *_Probe functions because most of them were duplicates
          of the real _Init or _Create functions. That's 1000 lines of code gained.
        * ./src/misc/modules.c: we try not to keep the global lock in module_Need,
          which should speed up output spawning.
        * ./plugins/dummy/input_dummy.c: fixed vlc:quit command.
        * ./plugins/gtk/gtk_playlist.c: compilation fix.
        * ./plugins/macosx/*: preliminary fixes for the vout4 port.
      
         Notes on the *_Probe eradication:
        o I probably broke the DirectX video output, because of the "must init and
          run in the same thread" issue. I'll fix this ASAP.
        o Subtitles are broken (or at least, pretty ugly) in RGB mode.
        o The input plugins still have *_Probe functions. This will disappear when
          meuuh is finished with the access plugins.
        o The decoder plugins still have *_Probe functions. This is probably not
          going to change, it looks OK to me.
      48cbd8f3
  9. 21 Jan, 2002 1 commit
  10. 15 Jan, 2002 2 commits
  11. 10 Jan, 2002 1 commit
    • Sam Hocevar's avatar
      · 0e8b68b5
      Sam Hocevar authored
        * ./src/input/input.c: fixed a few segfaults caused by the dummy plugin.
        * ./plugins/mpeg_adec/mpeg_adec.c: fixed a segfault due to misuse of
          DecoderError.
        * ./plugins/x11/xcommon.c: replaced XFlush with XSync. This must be the
          fourth time someone has to commit this, so I added a reminder :-)
      0e8b68b5
  12. 09 Jan, 2002 1 commit
    • Sam Hocevar's avatar
      · c7b1c474
      Sam Hocevar authored
        * ./include/modules_inner.h: replaced _X with __VLC_SYMBOL because _X was
          already a system macro under MacOS X.
        * ./plugins/dummy/dummy.c: fixed vlc:loop, vlc:quit, etc. entries.
        * ./plugins/glide/glide.c: activated double buffering.
        * ./plugins/mga/xmga.c: started writing an xmga plugin; doesn't work yet.
        * ./src/input/input.c: fixed the input memory leak, and the insane thread
          spawning we got with vlc:loop.
        * ./src/misc/intf_eject.c: disc ejection routine courtesy of Julien Blache,
          currently Linux-only.
      c7b1c474
  13. 07 Jan, 2002 1 commit
    • Sam Hocevar's avatar
      · 1e053ea0
      Sam Hocevar authored
        * ./plugins/mga/mga.c: removed the mgammx module and put the code in
          the chroma_i420_ymga module instead. This introduces a slight
          performance issue as we now need to memcpy() the Y plane, but I have
          some vout4 enhancements on their way which make this point moot.
        * ./debian/changelog: imported official Debian changelog.
        * ./debian/control: activated the vlc-mad and vlc-arts packages; package
          builds should now work again.
        * ./plugins/dvd/dvd.c: solved a symbol resolution issue when vlc was
          compiled without libdvdcss which overflowed the return stack.
        * ./plugins/ggi/ggi.c: ported the GGI plugin to vout4.
        * ./plugins/glide/glide.c: ported the Glide plugin to vout4 (untested).
        * ./src/input/input.c: prepared everything for multi-input mode; since
          no interface is yet prepared to handle this, I changed them so that
          they just use the first available input for now. This may break other
          things, but I promise I'll eventually repair everything :-)
      1e053ea0
  14. 30 Dec, 2001 1 commit
    • Sam Hocevar's avatar
      · cc0f0bb6
      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.
      cc0f0bb6
  15. 27 Dec, 2001 1 commit
  16. 12 Dec, 2001 1 commit
    • Sam Hocevar's avatar
      · 279f805a
      Sam Hocevar authored
        * Additional fixes for OSes with no gettext (thanks to ej0).
        * Fixed a potential BeOS linking issue.
        * Fixed a minor bug in input.c.
      279f805a
  17. 10 Dec, 2001 1 commit
  18. 07 Dec, 2001 2 commits
    • Sam Hocevar's avatar
      · 1b8d106c
      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.
      1b8d106c
    • Johan Bilien's avatar
      * added functions in inputs to change the current program (most of · 7917d2ef
      Johan Bilien authored
        them do nothing)
      
      All inputs should now have a pf_setprogram function. A default one is
      provided in input_programs.c.
      7917d2ef
  19. 28 Nov, 2001 1 commit
  20. 27 Nov, 2001 1 commit
  21. 25 Nov, 2001 1 commit
    • Stéphane Borel's avatar
      Support for libdvdread. · b8ff945d
      Stéphane Borel authored
      Libdvdread files are in extras/libdvdread. They have not been changed from
      those of libdvdread 0.9.2. The changes are in the subdirectory videolan.
      They basically consist of a new function in the API that does a readv()
      instead fo a read().
      
      The library is statically linked with libdvdcss from extras/libdvdcss, and
      the whole is statically linked with the plugin dvdread. Dvdread can only be
      compiled as a builtin module for the time being, I think (which means I
      haven't tried to compile it as a plugin).
      
      Basically, input_dvdread.c is a copy and paste from input_dvd.c with a few
      changes to use libdvdread calls. It is still in very alpha stage, but it
      should offer the same features as the current DVD input.
      
      It can be called with either the syntax: "dvdread:/dev/dvd"
      or "--input dvdread /dev/dvd". The command line switches (-t, -T, -c, -u)
      should work too.
      b8ff945d
  22. 23 Nov, 2001 1 commit
    • Christophe Massiot's avatar
      Major rewrite of the network layer. The following syntax ARE NO LONGER · fefa3b65
      Christophe Massiot authored
      SUPPORTED :
      ts:toto:1234/meuh
      --server toto --broadcast meuh --port 1234
      
      The only supported syntax is :
      udp[stream]:[//][serveraddr:[serverport]][@[bindaddr][:bindport]]
      example : udpstream:toto@meuh:toto
      
      In most cases, simply passing "udpstream:" should work, since it enables
      unicast and broadcast reception on port 1234 from any server. Other
      options are only used for fine tuning and multicast.
      
      TODO :
      * The GTK interface is broken (glade knowledge wanted !)
      * Test this on all supported platforms (and fix them :)
      [this won't work with current channel servers - fix needed]
      fefa3b65
  23. 21 Nov, 2001 1 commit
  24. 15 Nov, 2001 1 commit
    • Sam Hocevar's avatar
      · 5ea5076a
      Sam Hocevar authored
        * Fixed MacOS X 10.1 network input, thanks to Mathias Kretschmer
          <mathias@research.att.com>.
      5ea5076a
  25. 13 Nov, 2001 1 commit
    • Sam Hocevar's avatar
      · 314ac3af
      Sam Hocevar authored
        * Fixed a crash when using `--input dvd /dev/dvd' instead of `dvd:/dev/dvd'
      314ac3af
  26. 12 Nov, 2001 2 commits
    • Sam Hocevar's avatar
      · cdf12612
      Sam Hocevar authored
        * Fixed the vlcs communication issue by initializing WinSock at
          startup (thanks Meuuh for the tip).
      cdf12612
    • Sam Hocevar's avatar
      · 043b5c89
      Sam Hocevar authored
        * Automatic handling of the Channel Server's response in network mode.
      043b5c89
  27. 09 Nov, 2001 1 commit
  28. 07 Nov, 2001 1 commit
    • Jon Lech Johansen's avatar
      · fa2a8210
      Jon Lech Johansen authored
        * Fixed some win32 compile issues.
        * Don't use long long, use u64/s64 (int_types.h).
      fa2a8210
  29. 06 Nov, 2001 1 commit
  30. 02 Nov, 2001 1 commit
  31. 01 Nov, 2001 1 commit
    • Sam Hocevar's avatar
      · 52945c01
      Sam Hocevar authored
        * Modified the pf_close kludge in input.c so that we don't segfault when
          pf_init fails.
      52945c01
  32. 30 Oct, 2001 2 commits
  33. 23 Oct, 2001 1 commit
    • Johan Bilien's avatar
      Added VCD input plugin for Linux : · a276a98a
      Johan Bilien authored
      The Linux specific stuff is located in linux_cdrom_tools files.
      For the time being, it only has title (tracks). Chapters will come if I
      ever can read .vcd files.
      I've modified Gnome and GTK+, not the others.
      I've noticed a big bug, it segfaults at the end of a title. I will
      have a look on this tomorrow.
      Please be indulgent, it's my first peace of code ;-)
      a276a98a
  34. 22 Oct, 2001 1 commit
  35. 15 Oct, 2001 1 commit
    • Sam Hocevar's avatar
      · b6370eb0
      Sam Hocevar authored
        * Fixed an error in the ts://server[:port][/broadcast] input parsing.
      b6370eb0