An error occurred fetching the project authors.
  1. 30 Aug, 2002 1 commit
  2. 29 Aug, 2002 1 commit
  3. 26 Aug, 2002 1 commit
  4. 21 Aug, 2002 3 commits
  5. 14 Aug, 2002 1 commit
    • Sam Hocevar's avatar
      * ./src/misc/objects.c: implemented vlc_list_find() which works like · 005be138
      Sam Hocevar authored
          vlc_object_find() but returns a list of _all_ the matching objects. Only
          works with FIND_ANYWHERE at the moment.
        * ./modules/gui/gtk/preferences.c, ./modules/gui/kde/preferences.cpp,
          ./modules/gui/win32/preferences.cpp: the module lists in the preferences
          menus work again.
        * ./src/misc/objects.c: added a missing sizeof that caused crashes because
          the reindexing of the global object array was incomplete.
        * ./include/modules_inner.h: propagated the module long description to its
          submodules.
      005be138
  6. 12 Aug, 2002 2 commits
    • Christophe Massiot's avatar
      * Fixed a variable overflow bug in the audio output. · 8d5c85f2
      Christophe Massiot authored
      * Prepared for some advances in the aout3 clock management.
      * Added the first stone of the forthcoming stream output.
      8d5c85f2
    • Sam Hocevar's avatar
      * ./src/misc/objects.c: two big changes in the object API: now objects can · 6e8f9504
      Sam Hocevar authored
          only have one parent, because I don't want to deal with cycles, and each
          created object is indexed in a global array. This feature is unused yet,
          but it will speed up vlc_object_find(FIND_ANYWHERE).
        * ./debian/rules: activated the faad codec.
        * ./doc/fortunes.txt: new fortune cookies.
        * ./modules/codec/mpeg_video/headers.c: reduced the use of attach/detach.
        * ./modules/audio_output/oss.c: fixed two compilation warnings.
      6e8f9504
  7. 10 Aug, 2002 1 commit
  8. 08 Aug, 2002 1 commit
  9. 07 Aug, 2002 2 commits
  10. 31 Jul, 2002 1 commit
  11. 23 Jul, 2002 1 commit
    • Sam Hocevar's avatar
      * ALL: decoders now use a fourcc as a probe value. · 64d33dc9
      Sam Hocevar authored
        * include/input_ext-intf.h: killed p_es->b_audio, since i_cat already fills
          its purpose.
        * include/input_ext-intf.h: killed p_es->i_type in favour of p_es->i_fourcc.
        * include/video.h: killed p_pic->p_plane->b_margin; now i_visible_pitch is
          always valid.
      
        * ./src/libvlc.h: replaced --mpeg-adec and --ac3-adec with --codec; see
          vlc --help for more information.
      
        * include/video.h: removed fourcc values which should _not_ be global
          (thanks fenrir for convincing me).
        * ALL: video output plugins use the VLC_FOURCC macro to build their fourccs.
        * ./plugins/beos/InterfaceWindow.cpp: removed the last remaining call to
          input_ChangeES.
      
         Things I'm not sure about and need comments:
          - I used "mpga" and "mpgv" for MPEG (1+2) audio and video fourcc values.
          - I also introduced "spu ", "lpcm" and "ac3 ".
          - I removed for instance "MP4_GetCodec" because it wasn't really
            used except for the description string. I hope this change did not
            break anything really important.
          - fenrir, I must have broken a lot of things you wrote. Sorry in advance.
      64d33dc9
  12. 21 Jul, 2002 1 commit
  13. 20 Jul, 2002 1 commit
  14. 12 Jul, 2002 1 commit
    • Christophe Massiot's avatar
      * ./AUTHORS : added lool :-p ; · c974b7b0
      Christophe Massiot authored
      * ./doc/vlc-howto.sgml : Fixed typos ;
      * ./include/vlc_common.h : Greatly simplified ntoh*, and U??_AT macros are
        now alignment-safe ;
      * ./STATUS : New file indicating who's working on what. Please keep it
        up-to-date ;
      * ./MAINTAINERS : New file indicating who has knowledge on which parts.
      c974b7b0
  15. 05 Jul, 2002 1 commit
  16. 07 Jun, 2002 1 commit
  17. 04 Jun, 2002 1 commit
    • Sam Hocevar's avatar
      (new in MAIN) · 7291e0a7
      Sam Hocevar authored
        * ./src/interface/interface.c: interfaces are no longer attached only to
          p_vlc.
        * ./src/libvlc.c, ./src/misc/modules.c, ./src/playlist/playlist.c,
          ./src/input/input.c: improvements in the playlist handling (not quite that
          yet though).
      (ported from v0_4_1_branch)
        * ./configure.in, ./plugins/mpeg_system/mpeg_ts.c: fixed libdvbpsi handling.
        * ./src/misc/configuration.c: fixed the --nofoo option handling.
        * ./src/interface/main.c: fixed two compilation warnings under Solaris.
      7291e0a7
  18. 02 Jun, 2002 2 commits
    • Gildas Bazin's avatar
      · 5cfee589
      Gildas Bazin authored
      * ./include/vlc_common.h: got rid of i_thread in VLC_COMMON_MEMBERS.
      5cfee589
    • Gildas Bazin's avatar
      · 9d64d522
      Gildas Bazin authored
      * ./include/vlc_threads.h: re-merged vlc_threads.h and threads_funcs.h.
      9d64d522
  19. 01 Jun, 2002 3 commits
    • Sam Hocevar's avatar
    • Sam Hocevar's avatar
      * ./src/misc/beos_specific.cpp: BeOS fixes, removed a static variable. · 2dad070c
      Sam Hocevar authored
        * ./include/main.h: replaced p_sys with explicit variables because it's
          really much simpler this way. Gildas, will you ever forgive me ? :-)
      2dad070c
    • 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
  20. 20 May, 2002 1 commit
  21. 18 May, 2002 1 commit
  22. 15 May, 2002 1 commit
    • Marc Ariberti's avatar
      On sam's advice I added the input_FDNetworkClose() function to be called · f4012b9f
      Marc Ariberti authored
      when closing a  networking stream instead of input_FDClose().  It is due
      to WIN32  because we have  to call  closesocket() instead of  close() to
      close the socket. The problem was  : windows did not leave the multicast
      group when closing the socket.
      
        * input_ext-plugins.c : where is located the function
        * *.h : function declaration
        * udp.c, http.c : these modules now call input_FDNetworkClose()
      f4012b9f
  23. 14 May, 2002 1 commit
  24. 10 May, 2002 1 commit
  25. 03 May, 2002 1 commit
    • Sam Hocevar's avatar
      * ./include/modules_inner.h, ./src/misc/configuration.c: support for config · 71865b97
      Sam Hocevar authored
          options callbacks.
      
          They don't take any argument for the moment, but this will change when
          I'm finished with my other vlc changes. There is a little problem: the
          Gtk+ interface keeps calling Put***Variable each time we click on "Apply"
          or "Save". I think it should only call it once. Is there a way to fix
          this? Gildas? lool? :-)
      71865b97
  26. 27 Apr, 2002 1 commit
    • Gildas Bazin's avatar
      · 9d6920b9
      Gildas Bazin 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
  27. 26 Apr, 2002 2 commits
  28. 25 Apr, 2002 2 commits
    • Sam Hocevar's avatar
      * ./src/misc/modules_plugin.h: exported input_ClockManageRef for fenrir. · eb1ec4a4
      Sam Hocevar authored
        * ./include/video.h: moved vout_CopyPicture out of the way, an inline
          function did not make sense here.
        * ./include/video.h: moved vout_ChromaCmp out of the way.
        * ./plugins/avi/fourcc.h, ./include/video.h: merged these two files into
          video.h.
        * ./include/os_specific.h: this file is now always included.
        * ./include/debug.h: removed this file which was almost useless, and moved
          ASSERT to common.h.
        * ./include/common.h: fixed vlc_memalign and changed its prototype to
          follow posix_memalign's.
      eb1ec4a4
    • Johan Bilien's avatar
      * Moved Program Specific Information decoder to the ts demux module · 5a70322c
      Johan Bilien authored
      * Added a mpeg_ts_dvbpsi module tha uses libdvbpsi to decode PSIs. It is
        used by default if the lib is found. It shares much code with mpeg_ts
      5a70322c
  29. 24 Apr, 2002 1 commit
  30. 21 Apr, 2002 1 commit
    • Gildas Bazin's avatar
      · ce25f1e8
      Gildas Bazin authored
      * added config_GetFloatVariable() and config_PutFloatVariable() to the config
        module.
      * added a --zoom <float> config option.
      * added a call to RestoreCPUState() in InitIDCT() in idct_sparse.h so that the
        FPU is still available after a call to InitIDCT().
      * deactivate stream buffering when logging to a file.
      ce25f1e8
  31. 19 Apr, 2002 1 commit
    • Sam Hocevar's avatar
      · 4f6c862b
      Sam Hocevar authored
        * ALL: internationalized all configuration strings.
        * ./src/interface/main.c: we now set LC_CTYPE to get the right charset.
        * ./src/misc/configuration.c: lots of simplifications in the code.
        * ./po/vlc/pot: updated translations.
      4f6c862b