An error occurred fetching the project authors.
  1. 03 Dec, 2001 3 commits
    • Christophe Massiot's avatar
      Fixed a bug in my previous commit. · 3e22409a
      Christophe Massiot authored
      3e22409a
    • 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
    • Christophe Massiot's avatar
      More checks for GTK headers. · c4535c4c
      Christophe Massiot authored
      c4535c4c
  2. 28 Nov, 2001 1 commit
  3. 27 Nov, 2001 2 commits
  4. 25 Nov, 2001 2 commits
    • Gildas Bazin's avatar
      · b6188286
      Gildas Bazin authored
       * Big clean-up to allow compiling every module as plugins.
       * Added bytes_swap.h to provide ntoh() and htol() on Win32. With this
           change we don't have to link winsock2 with every plugin anymore. This
           should also give us a slight speed increase.
       * Added #define WIN32_LEAN_AND_MEAN in threads.h to speed-up compilation
           on Win32.
       * Modified ac_downmix_3dn and sse so they compile with the latest gcc for
           Win32.
      
      (PS: the dvdread plugin doesn't compile yet on Win32)
      b6188286
    • 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
  5. 19 Nov, 2001 1 commit
    • Sam Hocevar's avatar
      · d04d186e
      Sam Hocevar authored
        * aRts audio output courtesy of Emmanuel Blindauer <manu@agat.net>.
        * Fix to the esd plugin when esd-config --cflags is nonempty.
      d04d186e
  6. 14 Nov, 2001 3 commits
  7. 13 Nov, 2001 2 commits
    • Sam Hocevar's avatar
      · 3355a621
      Sam Hocevar authored
        * configure should no longer assume AltiVec is supported when it actually
          isn't with buggy compilers and/or pre-set $CFLAGS.
      3355a621
    • 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
  8. 12 Nov, 2001 1 commit
    • Sam Hocevar's avatar
      · a264d032
      Sam Hocevar authored
        * Made everything ready for a vlc-0.2.91 / libdvdcss-1.0.0 release.
        * Updated ChangeLog and ChangeLog.libdvdcss.
        * Increased vlcs response message length.
        * Removed the i_flags argument to dvdcss_open. Everything is done through
          environment variables now.
      a264d032
  9. 09 Nov, 2001 1 commit
  10. 06 Nov, 2001 1 commit
  11. 02 Nov, 2001 1 commit
  12. 30 Oct, 2001 1 commit
  13. 23 Oct, 2001 2 commits
    • Sam Hocevar's avatar
      · aac41b80
      Sam Hocevar authored
        * Synced dummy_dvdcss with Stef's changes to libdvdcss.
        * configure now compiles the VCD plugin if linux/cdrom.h is present.
      aac41b80
    • 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
  14. 22 Oct, 2001 3 commits
    • Christophe Massiot's avatar
      Fixed ATTR_ALIGN configure test. · 66cf4426
      Christophe Massiot authored
      66cf4426
    • Sam Hocevar's avatar
      · 8629b876
      Sam Hocevar authored
        * Fixed NetBSD (and probably OpenBSD) libdvdcss compilation.
      8629b876
    • Sam Hocevar's avatar
      · 34487b0b
      Sam Hocevar authored
        * xvideo.so is now built in by default. Mixing PIC and non-PIC code was not
        very nice.
        * Fixed compilation errors in src/interface/main.c when the compiler did
        not support SSE or 3DNow! inline assembly.
      34487b0b
  15. 13 Oct, 2001 1 commit
    • Stéphane Borel's avatar
      New features for libdvdcss: we have three ways now to decode a title key. · 88a15495
      Stéphane Borel authored
      1) Crack the title key (the method that was here before). The only change
      here is that we search the key for the exact chapter we are seeking with
      DVDSetArea (in case the key has changed within a title). It is maybe not a
      good idea.
      
      2) Crack the disc key, which allows us to decode instantly all title keys.
      I've used an algorithm from Frank Stevenson ; it eats much memory (64MB),
      and takes about 15 s at launch time.
      
      3) Decode the disc key with player keys (libcss method). However, you need
      licensed player keys at build time for that to work.
      
      To choose between libdvdcss methods, a command line options is supplied:
      
              vlc --dvdcss <method> where method is one of title, disc, key.
      
      Note that all these changes only work with linux now, since we have to add a
      specific ioctl to read title key. I hope that I haven't broken too many things.
      88a15495
  16. 11 Oct, 2001 1 commit
  17. 10 Oct, 2001 1 commit
    • Sam Hocevar's avatar
      · ff9c8878
      Sam Hocevar authored
        * 0.2.90 release.
        * Updated ChangeLog files.
        * XVideo module now compiled as built-in for Debian packages, to avoid
          PIC and non-PIC code collision (Closes Debian bug #111790).
      ff9c8878
  18. 08 Oct, 2001 2 commits
  19. 03 Oct, 2001 3 commits
  20. 02 Oct, 2001 1 commit
  21. 01 Oct, 2001 1 commit
  22. 28 Sep, 2001 3 commits
  23. 25 Sep, 2001 1 commit
  24. 24 Sep, 2001 1 commit
  25. 14 Sep, 2001 1 commit