An error occurred fetching the project authors.
  1. 01 Jun, 2002 1 commit
    • Sam Hocevar's avatar
      * ALL: the first libvlc commit. · 9e3ab283
      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.
      9e3ab283
  2. 24 May, 2002 1 commit
    • Gildas Bazin's avatar
      · 830af7ae
      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.
      830af7ae
  3. 18 May, 2002 1 commit
  4. 13 May, 2002 1 commit
  5. 24 Apr, 2002 1 commit
  6. 23 Apr, 2002 1 commit
  7. 14 Mar, 2002 1 commit
    • Stéphane Borel's avatar
      · 9c49d6f8
      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.
      9c49d6f8
  8. 01 Mar, 2002 1 commit
    • 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
  9. 21 Jan, 2002 1 commit
  10. 14 Jan, 2002 1 commit
  11. 30 Dec, 2001 2 commits
    • 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
    • Sam Hocevar's avatar
      · fafbe100
      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.
      fafbe100
  12. 29 Dec, 2001 1 commit
  13. 27 Dec, 2001 2 commits
  14. 19 Dec, 2001 1 commit
  15. 12 Dec, 2001 2 commits
  16. 10 Dec, 2001 1 commit
    • Sam Hocevar's avatar
      · 003c2ab3
      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.
      003c2ab3
  17. 07 Dec, 2001 1 commit
    • 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
  18. 03 Dec, 2001 1 commit
    • Sam Hocevar's avatar
      · 95a333bf
      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.
      95a333bf
  19. 15 Nov, 2001 2 commits
  20. 13 Nov, 2001 1 commit
    • Henri Fallon's avatar
      · 49a0736e
      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
      49a0736e
  21. 03 Oct, 2001 1 commit
  22. 24 Sep, 2001 1 commit
  23. 22 Aug, 2001 1 commit
  24. 16 Jul, 2001 1 commit
  25. 01 May, 2001 2 commits
    • Sam Hocevar's avatar
      · 54355637
      Sam Hocevar authored
        * Fixed a segfault in the SPU decoder initialization.
      54355637
    • Sam Hocevar's avatar
      · a70f8bb3
      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>.
      a70f8bb3
  26. 28 Apr, 2001 1 commit
    • Sam Hocevar's avatar
      · 0a4aeaa6
      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 ?)
      0a4aeaa6
  27. 25 Apr, 2001 1 commit
  28. 16 Apr, 2001 1 commit
    • Cyril Deguet's avatar
      · adff2a85
      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.
      adff2a85
  29. 05 Apr, 2001 2 commits
    • Cyril Deguet's avatar
      · f3f860ca
      Cyril Deguet authored
      switched back to the old packet allocation method for PS input, because
      Sam does not want the new one ;)
      f3f860ca
    • Cyril Deguet's avatar
      · ed003a4a
      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 ;)
      ed003a4a
  30. 06 Mar, 2001 1 commit
  31. 02 Mar, 2001 2 commits
    • Christophe Massiot's avatar
      * Fixed miscellaneous alignment problems (alpha/sparc ports) ; · 4ebb78dd
      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.
      4ebb78dd
    • Stéphane Borel's avatar
      -New function for DVD reading, that is able to read multiple blocks · 917d2574
      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 :)
      917d2574
  32. 08 Feb, 2001 2 commits