1. 06 Mar, 2004 1 commit
  2. 05 Mar, 2004 1 commit
  3. 06 Apr, 2002 2 commits
    • Sam Hocevar's avatar
      · b2f75d5c
      Sam Hocevar authored
        * ./doc/release-howto.txt: updated documentation.
        * ./vlc.spec: added missing plugin filenames to the build process.
      b2f75d5c
    • Sam Hocevar's avatar
      · bff02b4d
      Sam Hocevar authored
        * ./plugins/win32/mainframe.dfm: swapped two mixed up tooltips.
        * ./Makefile: fixed make dist and make distclean.
        * ./plugins/dvd/dvd.c: compilation fix.
        * ./plugins/gtk/gtk_callbacks.c: fixed ejection code.
        * ./plugins/text/ncurses.c: fixed compilation of the ncurses plugin.
        * ./vlc.spec: updated specfile.
      bff02b4d
  4. 05 Apr, 2002 6 commits
    • Sam Hocevar's avatar
      · db758124
      Sam Hocevar authored
        * ./Makefile, ./configure.in: misc BeOS build fixes.
      db758124
    • Jon Lech Johansen's avatar
      · ceb1c04e
      Jon Lech Johansen authored
        * ./plugins/macosx/vout_macosx.c: memalign -> vlc_memalign
      ceb1c04e
    • Sam Hocevar's avatar
      · 1b0868ed
      Sam 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
    • Sam Hocevar's avatar
      · 0d691469
      Sam 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
    • Sam Hocevar's avatar
      · e98aae28
      Sam 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
    • Gildas Bazin's avatar
      · cf5b3832
      Gildas Bazin 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
  5. 04 Apr, 2002 6 commits
    • 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
    • Olivier Teulière's avatar
      · d94ba355
      Olivier Teulière authored
        * ./AUTHORS: added myself :)
        * ./plugins/win32/mainframe.cpp: disabled the "hide interface" menu
          item, not yet implemented.
        * ./plugins/win32/about.dfm: replaced the outdated author list with a
          "VideoLAN Team" entry.
      d94ba355
    • Sam Hocevar's avatar
      · 71b4ea0b
      Sam 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
    • Sam Hocevar's avatar
      · b29f85e0
      Sam 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
    • Jon Lech Johansen's avatar
      · 66d7e1da
      Jon Lech Johansen authored
        * ./src/interface/intf_eject.c: Fixed a MacOS X bug.
      66d7e1da
  6. 03 Apr, 2002 8 commits
    • Christophe Massiot's avatar
      * Fix for iPAQ familiar Linux (untested) · 439f10a6
      Christophe Massiot authored
      * HTTP files now find the EOF (though HTTP input is still broken)
      439f10a6
    • Christophe Massiot's avatar
      928d731d
    • Sam Hocevar's avatar
      · dd5d92a4
      Sam Hocevar authored
        * ./Makefile.modules: modules now depend on Makefile.opts.
        * ./configure.in: added (hopefully) explicit messages on how to get
          libdvdcss and link vlc with it.
        * ./plugins/dvdread/input_dvdread.c: removed inclusion of dvd_udf.h.
      dd5d92a4
    • Olivier Teulière's avatar
      · 3fdc9959
      Olivier Teulière authored
       * ./plugins/win32/*: Added management for secondary config dialogs
      3fdc9959
    • Sam Hocevar's avatar
      · 5ba63c66
      Sam Hocevar authored
        * ./plugins/ogg/*: added preliminary files for an Ogg/Vorbis decoder a
          contributor is currently working on.
      5ba63c66
    • Sam Hocevar's avatar
      · 0beab2c2
      Sam Hocevar authored
        * ALL: removed libdvdcss from the vlc tree.
        * ALL: removed libdvdread from the vlc tree.
        * ./acconfig.h: removed this file.
        * ./plugins/dvd/dummy_dvdcss.c: merged this file into dvd.c.
        * ./AUTHORS: moved a few gentlemen to the libdvdcss AUTHORS file.
      0beab2c2
    • Gildas Bazin's avatar
      · 1de7fc8e
      Gildas Bazin authored
      * fixed ./plugins/gtk/gtk_callbacks.c to use the "dvd_device" config option
        instead of the now inexistant DVD_DEVICE macro.
      1de7fc8e
    • Sam Hocevar's avatar
      · 981c5cca
      Sam Hocevar authored
        * ./po/ja.po: added Japanese translation from Fumio Nakayama
          <endymion@ca2.so-net.ne.jp>.
        * ./plugins/gtk/gtk_callbacks.c: fixed disc ejection code.
        * ./ChangeLog: how about a nice cup of 870 lines of ChangeLog for the 0.3.0
          release?
      981c5cca
  7. 02 Apr, 2002 13 commits
    • Gildas Bazin's avatar
      · 4f08a70d
      Gildas Bazin authored
      * New pthread implementation for WinNT/2K/XP. This implementation shouldn't
        be subject to race conditions as it is using SignalObjectAndWait() from the
        Win32 API.
        As this should be somehow slower than the old method (still used on Win9x),
        you can specify that you want to use the old method with the "fast_pthread"
        config option.
      
      * Added a new p_main_sys global variable. This variable is a pointer to an
        OS specific structure which is defined in *_specific.h. This structure can
        be filled by the already existing System_Init() function and is a nice
        way to avoid too many #ifdefs.
      4f08a70d
    • Gildas Bazin's avatar
      · 22b05cef
      Gildas Bazin authored
      * Got rid of the DVD_DEVICE macro. We now use the dvd_device config option.
        ( this creates a small memory leak as we don't free the string obtained
          from config_GetPszVariable, but I think we can live with it for now )
      
      * the SSE plugins are disable on the mingw32 build as they don't work.
        ( because memalign is not implemented on win32, and malloc only aligns
          on an 8 bytes boundary )
      
      * fixed small mistake in INSTALL.win32
      22b05cef
    • Olivier Teulière's avatar
      · ad14a89d
      Olivier Teulière authored
       * ./include/config.h: fixed config directory name for windows
       * ./plugins/win32: the network dialog now respects the preferences settings
      ad14a89d
    • Christophe Massiot's avatar
      Added memcpyaltivec. · 75824aaf
      Christophe Massiot authored
      75824aaf
    • Christophe Massiot's avatar
      Compilation fix. :-ppppp · 2fda60de
      Christophe Massiot authored
      2fda60de
    • Christophe Massiot's avatar
      * Altivec-enabled version of fastmemcpy · ecbcf0b3
      Christophe Massiot authored
      * Use ImageBuffer instead of ScreenBuffer in OS X video output (should be
      faster)
      ecbcf0b3
    • Olivier Teulière's avatar
      · c5dd4153
      Olivier Teulière authored
      * ./src/interface/main.c: check that channels have been created before
        the call to network_ChannelJoin
      c5dd4153
    • Olivier Teulière's avatar
      · d7bba658
      Olivier Teulière authored
       * ./plugins/win32:
              - fixed a few bugs in the preferences
              - better auto-resizing of the main window
              - the disc dialog now respects the preferences settings
      d7bba658
    • Olivier Teulière's avatar
      · 58e56290
      Olivier Teulière authored
       * ./src/misc/configuration.c: small compilation fix
      58e56290
    • Tony Castley's avatar
      Added a test for the nooverlay option. · 91cea3e3
      Tony Castley authored
      91cea3e3
    • Tony Castley's avatar
      87b73190
    • Sam Hocevar's avatar
      · 77d515ff
      Sam Hocevar authored
        * ./configure.in: BeOS, liba52 and chroma plugin compilation fixes.
        * ./plugins/dvd/dvd_access.c: removed a warning.
        * ./src/misc/configuration.c: Solaris fixes by Meuuh.
        * ./FAQ: removed outdated stuff.
      77d515ff
    • Gildas Bazin's avatar
      · f9a7f0e8
      Gildas Bazin authored
      * Fixed yet another bug related to the event thread creation
      * Removed a few debug messages
      f9a7f0e8
  8. 01 Apr, 2002 3 commits
    • Gildas Bazin's avatar
      · f8cad0ac
      Gildas Bazin authored
      * Fixes for the Win32_msvc build
      f8cad0ac
    • Gildas Bazin's avatar
      · 768eb521
      Gildas Bazin authored
      * Microsof Visual Studio C++ 6 project files.
        This is usefull mainly for debugging as the hardware accelerated plugins
          can't be compiled with msvc.
      
      I won't be maintaining this msvc project as I don't have MSVC myself, but
      maybe this will encourage people to try to develop for vlc (or maybe just
      discourage them ;-)
      768eb521
    • Gildas Bazin's avatar
      · 8c0b9460
      Gildas Bazin authored
      * Win32 compilation fixes when downmixsse and downmix3dn are declared as
          plugins.
      * Fixed the waiting on the event thread creation in the directx plugin.
      8c0b9460