Skip to content
Snippets Groups Projects
  1. May 18, 2002
  2. May 17, 2002
  3. May 15, 2002
  4. May 14, 2002
    • gbazin's avatar
      · 9a9e873c
      gbazin authored
      * new --with-mad-tree configure option.
      * updated BUGS file.
      9a9e873c
  5. May 13, 2002
  6. May 12, 2002
    • Christophe Massiot's avatar
      * Fixed menus [Mac OS X port] · 4bef8ffb
      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
      4bef8ffb
  7. May 10, 2002
  8. May 04, 2002
  9. May 03, 2002
  10. May 01, 2002
  11. Apr 27, 2002
    • gbazin's avatar
      · 9d6920b9
      gbazin authored
      * moved the function definitions from threads.h into threads_funcs.h. This
         allows us to move p_main_sys into p_main (p_main->p_sys).
      * fixed the --with-gtk-config-path and --with-sdl-config-path options in
         configure.in
      9d6920b9
    • Johan Bilien's avatar
      30046622
  12. Apr 26, 2002
  13. Apr 25, 2002
  14. Apr 24, 2002
  15. Apr 23, 2002
  16. Apr 22, 2002
  17. Apr 18, 2002
    • Samuel Hocevar's avatar
      · 62ffd1a0
      Samuel Hocevar authored
        * ./vlc.spec: fixed build dependencies.
        * ./configure.in: when -lintl is available, we now also link plugins with it.
      62ffd1a0
    • Samuel Hocevar's avatar
      · 9e607c80
      Samuel Hocevar authored
        * ./configure.in: switched version to 0.3.1.
        * ./vlc.spec: imported Mandrakesoft's latest enhancements.
        * ./ChangeLog: updated ChangeLog.
      9e607c80
    • Samuel Hocevar's avatar
      · e81cf378
      Samuel Hocevar authored
        * ./configure.in, ./plugins/network/ipv6.c: support for the GNU glibc
          extension gethostbyname2(), thanks to Thomas Graf.
      e81cf378
  18. Apr 17, 2002
    • Samuel Hocevar's avatar
      · db10e796
      Samuel Hocevar authored
        * ./AUTHORS: added people locations, just for fun.
        * ./configure.in: disabled SSE plugins when using mingw32.
        * ./src/misc/configuration.c: disabled the AltiVec warning message on the
          PowerPC platform because it was misleading.
      db10e796
  19. Apr 10, 2002
    • Samuel Hocevar's avatar
      · 6d8b08a4
      Samuel Hocevar authored
        * ./configure.in: fixed a bug in the libdvdread detection.
        * ./configure.in: fixed plugin compilation under Win32.
      6d8b08a4
  20. Apr 07, 2002
    • Christophe Massiot's avatar
      * Fixed Altivec-enabled version of fastmemcpy · 0393b253
      Christophe Massiot authored
      * Fixed --memcpy switch
      * Changed CFLAGS_VLC to vlc_CFLAGS (last-minute changes are great ideas :p)
      * New README file for MacOS X.
      0393b253
    • Samuel Hocevar's avatar
      · a0249c48
      Samuel Hocevar authored
        * ./configure.in: wrote a better test for libdvdread detection.
        * ./plugins/gtk/gtk.glade: added lines this #@%$! Glade had munched, fixes
          a segfault in the Gtk+ popup menu when toggling the interface.
        * ./plugins/motion/motion.c: fixed a compilation issue on compilers which
          do not accept empty macro arguments.
      a0249c48
  21. Apr 05, 2002
    • Samuel Hocevar's avatar
      · db758124
      Samuel Hocevar authored
        * ./Makefile, ./configure.in: misc BeOS build fixes.
      db758124
    • Samuel Hocevar's avatar
      · 1b0868ed
      Samuel Hocevar authored
        * ./plugins/win32/win32.cpp: fixed `--intf intfwin' which wasn't working.
        * ./Makefile: we don't include the Gtk+ and SDL DLLs in the win32 package
          anymore, the package is now 700k instead of 4MB.
        * ./configure.in, ./Makefile, ./Makefile.opts.in: replaced LIB_FOO with
          foo_LDFLAGS and CFLAGS_BAR with bar_CFLAGS for faster builds, and moved a
          lot of stuff from Makefile.opts.in back to configure.in.
        * ./install-win32: updated script for NSIS 1.96.
      
         I hope this doesn't break too many other architectures...
      1b0868ed
    • Samuel Hocevar's avatar
      · 0d691469
      Samuel Hocevar authored
        * ./configure.in: added --enable-intfwin to enable the win32 interface and
          --with-bcbuilder to tell make where to find Borland C++ Builder.
      0d691469
    • Samuel Hocevar's avatar
      · e98aae28
      Samuel Hocevar authored
        * ./plugins/win32/intfwin.bpr: we now build intfwin.so at the right place.
        * ./plugins/win32/Makefile: intfwin.so can be built using commandline.
        * ./configure.in, ./include/threads.h, ./include/common.h: a custom defs.h
          file isn't needed for the intfwin plugin anymore.
        * ./INSTALL.win32: updated compilation instructions for the intfwin plugin.
      e98aae28
    • gbazin's avatar
      · cf5b3832
      gbazin authored
      * introduced a memalign wrapper that will align the memory manually if
        memalign doesn't exist.
      
        void *vlc_memalign( size_t align, size_t size, void **pp_orig )
        where the return value is the aligned pointer and *pp_orig is the pointer
        that has to be freed afterwards.
      
        the arithmetic I'm doing on the pointer to align it is not portable to
        64bits architectures. If someone knows how to something portable, please
        tell me ( and no I don't want to do if(sizeof(void *) == blabla) ).
      
        Other little problem, I was planning to use posix_memalign by default in
        the wrapper implementation but it doesn't work (someone can tell me what
        I'm doing wrong ?)
      
      * re-enabled the sse plugins on win32 as we don't have anymore alignment
        issues.
      
      * fixed typo in vout_directx.c
      cf5b3832
  22. Apr 04, 2002
    • Christophe Massiot's avatar
      * FINALLY fixed HTTP input bug (I'm SO HAPPY with this !) · a33d6acc
      Christophe Massiot authored
      * Disabled memcpyaltivec since it's buggy
      a33d6acc
    • Christophe Massiot's avatar
      * Fixed intf_eject for iPAQ (untested) · 054b90aa
      Christophe Massiot authored
      * asm memcpyaltivec for Linux/PPC
      054b90aa
    • Samuel Hocevar's avatar
      · 71b4ea0b
      Samuel Hocevar authored
        * ./plugins/gtk/gtk.glade, plugins/gtk/gnome.glade, ./plugins/kde/kde.cpp:
          replaced the outdated author list with a "VideoLAN Team" entry.
        * ./debian/rules, ./debian/control: deactivated the vlc-kde package because
          it does not work, and removed the vlc-a52 package because liba52 is
          statically linked into vlc.
        * ./debian/control: added more helpful package descriptions.
        * ALL: changed version to 0.3.0. Yeah, it's coming.
        * ./Makefile: fixed make dist.
      71b4ea0b
    • Samuel Hocevar's avatar
      · b29f85e0
      Samuel Hocevar authored
        * ./src/video_output/video_output.c: fixed a vout4 image starvation bug.
        * ./plugins/dvd/dvd.c: we look for libdvdcss.so.2 as well as -.so.1.
        * ./configure.in: BSD/OS fixes thanks to Steven M. Schultz.
        * ./Makefile: renamed the `snapshot' rule to `dist'.
        * ./Makefile: removed the `snapshot-nocss' rule which isn't needed anymore.
      b29f85e0
  23. Apr 03, 2002
Loading