An error occurred fetching the project authors.
  1. 27 Dec, 2002 4 commits
  2. 25 Dec, 2002 2 commits
  3. 13 Dec, 2002 1 commit
  4. 26 Nov, 2002 1 commit
  5. 13 Nov, 2002 2 commits
  6. 12 Nov, 2002 1 commit
    • Sam Hocevar's avatar
      * ./Makefile.am: fixed rc compilation under mingw32/cygwin. · df7cbb74
      Sam Hocevar authored
        * ./modules/access/http.c: fixed a segfault (unchecked strstr return value).
        * ./src/input/input_ext-plugins.c: removed platform-specific code and put
          it in plugins. This leads to some code duplication but I have an evil
          plan to get rid of that, too.
      df7cbb74
  7. 10 Nov, 2002 2 commits
  8. 09 Nov, 2002 2 commits
  9. 04 Nov, 2002 1 commit
  10. 29 Oct, 2002 1 commit
  11. 28 Oct, 2002 1 commit
  12. 25 Oct, 2002 1 commit
  13. 22 Oct, 2002 1 commit
    • Sam Hocevar's avatar
      * ./mozilla/vlcshell.cpp: ported the Mozilla plugin to Windows. · 435bab6b
      Sam Hocevar authored
          For the moment it spawns a separate window and seems to behave nastily
          (read: crashes) when the target has sound, but the javascript interface
          works perfectly, for instance.
      
          To build it, I installed Mozilla development files in my mingw32 dir
          and hacked mozilla-config so that it uses these files. I also hacked
          jri_md.h and jni_md.h to put "defined(_MSC_VER) || defined(__MINGW32__)"
          where it read "defined(_MSC_VER)". No other changes were necessary.
      435bab6b
  14. 16 Oct, 2002 1 commit
  15. 14 Oct, 2002 1 commit
    • Sam Hocevar's avatar
      * ./include/vlc/vlc.h, ./src/libvlc.c: added VLC_Error() to the libvlc API. · bf7985b7
      Sam Hocevar authored
        * ./include/main.h: removed p_vlc->i_status because it was not sufficient
          to represent all the possible states of p_vlc; each part should be tested
          separately upon destruction.
        * ./src/misc/objects.c: fixed a signed/unsigned bug that prevented creation
          of VLC_OBJECT_GENERIC objects.
      
        * ./src/misc/variables.c: added the VLC_VAR_COMMAND type which is simply a
          variable that stores a function pointer, and calls it when var_Get is
          called for it. The function argument is taken in val.psz_string.
        * ./src/misc/objects.c: vlc_dumpstructure and vlc_liststructure are no longer
          exported to the rest of the program; instead, they're VLC_VAR_COMMAND vars
          ("tree" and "list").
        * ./modules/control/rc/rc.c: moved a few commands to VLC_VAR_COMMAND vars.
      bf7985b7
  16. 12 Oct, 2002 1 commit
    • Gildas Bazin's avatar
      · 2328faeb
      Gildas Bazin authored
      * configure.ac.in: fix for the mingw32 build. The gtk plugin may also need mingwex.
      * modules/demux/mpeg/ts.c: added an #include <stdint.h> to make mingw32 happy when
         compiled with libdvbpsi.
      * Makefile.am: fixed dependency problem with share/vlc_win32_rc.rc.
      2328faeb
  17. 11 Oct, 2002 1 commit
    • Sam Hocevar's avatar
      Changes to the libvlc API: · 464bd2e5
      Sam Hocevar authored
        * ./include/vlc/vlc.h: changed the naming conventions for libvlc. Now
          exported functions start with VLC_ instead of vlc_ to avoid conflicts.
        * ./include/vlc/vlc.h: removed the vlc_object_t, vlc_list_t, vlc_error_t
          and vlc_t types; they are now internal types only.
        * ./include/vlc/vlc.h: merged the reentrant and non-reentrant libvlc
          calls. In non-reentrant mode, we just use 0 as the first argument. In
          reentrant mode, we use an object's ID. (see below)
      
      Internal changes:
        * ./src/libvlc.c, ./src/misc/objects.c: instead of manipulating vlc_object_t
          pointers, we manipulate their i_object_id. When needed, an object is
          retrieved using vlc_object_get (I hope the lookup isn't too expensive,
          that's why I designed the pp_objects layout to allow log2(n) seeks).
        * ./src/misc/objects.c: activated the per-object variable storage. Unused
          yet, unless you want to try "getfoo" and "setfoo blablah" in vlc -I rc.
        * ./include/vlc_objects.h: moved the vlc_object_t and vlc_list_t definitions
          here.
      
      Misc:
        * ./src/vlc.c, ./mozilla/vlcshell.cpp: removed inclusion of config.h in
          code portions not part of libvlc; it was just required for the
          COPYRIGHT_MESSAGE string which is now available from VLC_Version().
      464bd2e5
  18. 02 Oct, 2002 3 commits
  19. 30 Sep, 2002 1 commit
  20. 26 Aug, 2002 2 commits
  21. 25 Aug, 2002 1 commit
    • Sam Hocevar's avatar
      * ALL: started the slow move to automake. For the moment, the changes are · 764176f6
      Sam Hocevar authored
          unnoticeable apart from the extra dependency on autoconf, automake and
          gettextize. See the new HACKING file for some information, especially if
          you don't run Linux.
      
          The current strategy is to have the configure script generate a nice
          automake Makefile from Makefile.am, and then clobber it with our good
          old dirty Makefile. Muahaha :-)
      764176f6