An error occurred fetching the project authors.
  1. 11 Jul, 2003 1 commit
    • Gildas Bazin's avatar
      · fec78c9a
      Gildas Bazin authored
      * modules/audio_output/directx.c: 5.1 audio output now works on sblive/audigy as well :)
      * modules/audio_output/waveout.c: fixed the waveOut plugin so works on NT4 as well... that complicates the plugin a bit more than I would have wanted, but hey.
      * modules/gui/wxwindows/messages.cpp: the verbose checkbox is set to the value of the --verbose config option.
      fec78c9a
  2. 11 Jun, 2003 1 commit
    • Gildas Bazin's avatar
      · 35ca63a9
      Gildas Bazin authored
      * modules/audio_output/directx.c: fixed mem leak in 5.1 audio.
      35ca63a9
  3. 21 May, 2003 1 commit
    • Gildas Bazin's avatar
      · 3992570d
      Gildas Bazin authored
      *  modules/audio_output/directx.c, modules/audio_output/waveout.c: we destroy the audio-device variable if the probing has failed.
      3992570d
  4. 04 May, 2003 1 commit
    • Gildas Bazin's avatar
      · 30336bba
      Gildas Bazin authored
      * src/misc/variables.c, ALL: improvements to the object variables api.
         - added another argument to var_Change().
         - added a VLC_VAR_SETTEXT and VLC_VAR_GETTEXT method to var_Change()
           that are used to set/get a friendly name to an object variable.
         - added VLC_VAR_CHOICESCOUNT to var_Change() to be able to retrieve
           the number of availabel choices without having to get their value
           as well.
         - VLC_VAR_ADDCHOICE uses the extra var_Change() argument to assign
           a friendly name to the choice value.
         - VLC_VAR_GETCHOICES retrieves the choices values and their friendly
           names.
      
      * modules/gui/wxwindows/*: first step in implementing menu auto-generation in the wxWindows interface.
      30336bba
  5. 29 Apr, 2003 1 commit
    • Gildas Bazin's avatar
      · deb90feb
      Gildas Bazin authored
      * modules/audio_output/directx.c: fixed the "no sound on NT4" problem. The directx audio plugin wasn't freeing its resources properly in case Probe() failed so the waveout plugin couldn't open the audio device afterwards.
      * modules/video_output/directx/directx.c: work-around buggy video drivers that create unsupported surfaces without shouting. Hopefully, non overlay YUV surfaces shouldn't be created anymore if not supported.
      deb90feb
  6. 07 Apr, 2003 1 commit
    • Gildas Bazin's avatar
      · a8b6aa37
      Gildas Bazin authored
      * modules/audio_output/directx.c, modules/audio_output/waveout.c:
         cosmetic changes.
      a8b6aa37
  7. 30 Mar, 2003 1 commit
    • Gildas Bazin's avatar
      · a1e81377
      Gildas Bazin authored
      * modules/*: sanitization of the modules description strings.
      a1e81377
  8. 03 Mar, 2003 1 commit
    • Gildas Bazin's avatar
      · 7211d64e
      Gildas Bazin authored
      * ALL: Finally fixed the MSVC project files.
             Don't include io.h on win32 when not necessary.
             A few build fixes for MSVC.
      
      * src/misc/win32_specific.c: try to load winsock2 instead of winsock1 when
         present.
      7211d64e
  9. 20 Feb, 2003 1 commit
    • Gildas Bazin's avatar
      · de621e39
      Gildas Bazin authored
      * src/libvlc.h, modules/audio_output: added a global --spdif config option
         to allow using the spdif output by default if available.
      * modules/misc/dummy/*: on win32 added a quiet mode that doesn't display
         a dos command box.
      * modules/control/rc/rc.c: on win32 enabled the echo mode and the
         backspace key.
      * modules/codec/mpeg_audio.c: fixed a sync bug.
      de621e39
  10. 19 Feb, 2003 1 commit
    • Gildas Bazin's avatar
      · 2d227502
      Gildas Bazin authored
      * modules/audio_output/directx.c: forgot to enable channel re-ordering.
      * modules/audio_output/waveout.c: fixed a crash that happened when probing
         devices supporting S/PDIF. (Should fix 354)
      2d227502
  11. 17 Feb, 2003 1 commit
    • Gildas Bazin's avatar
      · 9999718f
      Gildas Bazin authored
      * modules/audio_output/directx.c: added multichannel support to the
         directx plugin.
      * modules/audio_output/waveout.c: fixed quad audio channels detection and
         a few misplaced debug messages.
      * configure.ac.in: don't link anymore the rc plugin with the winsock lib.
      9999718f
  12. 14 Feb, 2003 1 commit
  13. 05 Jan, 2003 1 commit
    • Gildas Bazin's avatar
      · 7c68013f
      Gildas Bazin authored
      * modules/audio_output/directx.c: use VLC_THREAD_PRIORITY_HIGHEST for
      the audio output thread. That should make Win9x/Me happier.
      7c68013f
  14. 26 Nov, 2002 1 commit
    • Gildas Bazin's avatar
      · 7244736d
      Gildas Bazin authored
      * modules/video_output/directx/directx.c, modules/audio_output/directx.c: removed
      unnecessary code.
      7244736d
  15. 15 Nov, 2002 1 commit
    • Gildas Bazin's avatar
      · da1b7383
      Gildas Bazin authored
      * configure.ac.in, modules/audio_output/directx.c, modules/audio_output/waveout.c:
         fixed the waveout and directx audio plugins after the recent changes to aout3.
      da1b7383
  16. 01 Nov, 2002 2 commits
    • Gildas Bazin's avatar
      · d5849883
      Gildas Bazin authored
      * modules/audio_output/directx.c: forgot an aout_BufferFree().
      d5849883
    • Gildas Bazin's avatar
      · 95efa086
      Gildas Bazin authored
      * src/audio_output/common.c, include/aout_internal.h: added a new function
         aout_FifoFirstDate() that allows the aout plugin to schedule the first
         play.
      * src/audio_output/output.c: fixed another problem affecting the audio quality.
      * modules/audio_output/directx.c: improvements. The buffering scheme has been
         changed to be less affected by temporary starving. We also schedule the first   sample to play.
      95efa086
  17. 28 Oct, 2002 1 commit
    • Gildas Bazin's avatar
      · f5991d12
      Gildas Bazin authored
      * configure.ac.in: libvorbis depends on libogg.
      * include/vlc_threads.h: changed the different threads priorities to optimize
         audio and video quality as well as responsiveness.
      * modules/audio_output/waveout.c modules/audio_output/directx.c: waveout and
         directx will now use the float32 format if available. Various tweaks for
         better performance.
      f5991d12
  18. 20 Oct, 2002 1 commit
  19. 11 Oct, 2002 1 commit
    • Gildas Bazin's avatar
      · cc5919ad
      Gildas Bazin authored
      * src/misc/modules.c: fixed a memory leak with the "plugin-path" config option.
      * modules/audio_output/directx.c, modules/audio_output/waveout.c: ported the directx
         and waveout audio plugins to the new changes in the audio output layer.
      * configure.ac.in: fixes for cygwin compilation, and the gtk plugin under mingw32.
      cc5919ad
  20. 06 Oct, 2002 1 commit
    • Gildas Bazin's avatar
      · eddf1236
      Gildas Bazin authored
      * configure.ac.in: vlc can now be built under cygwin with or without the
         unix emulation layer (without if you use CC="gcc -mno-cygwin").
      * INSTALL.win32: doc update for cygwin build.
      * modules/video_output/directx/events.c, modules/video_output/directx/directx.c,
         modules/audio_output/directx.c: compilation fixes for cygwin.
      eddf1236
  21. 05 Oct, 2002 1 commit
    • Gildas Bazin's avatar
      · 94b1b1ac
      Gildas Bazin authored
      * ALL: Splitted the directx plugin into an audio and video module.
      94b1b1ac
  22. 30 Sep, 2002 1 commit
  23. 18 Sep, 2002 1 commit
  24. 30 Aug, 2002 1 commit
    • Christophe Massiot's avatar
      aout3 API change : · 06996317
      Christophe Massiot authored
      pf_setformat disappears (it was never called independantly of Open). If
      the format needs to be changed, we will have Close/Open. This is much
      simpler than before. Please check that I didn't break some plug-ins.
      06996317
  25. 29 Aug, 2002 1 commit
  26. 25 Aug, 2002 1 commit
    • Sam Hocevar's avatar
      * ./src/audio_output/output.c: reverted my previous aout_OutputNextBuffer · 51e99753
      Sam Hocevar authored
          prototype change; it looks like we won't need it after all.
        * ./src/audio_output/output.c: if audio output is too slow, but we
          know there is no next packet, then we play it anyway. Rationale behind
          this is: better play a slightly wrongly dated packet than play silence,
          because it might be wrongly dated but there are chances it won't break
          audio continuity.
        * ./modules/audio_output/sdl.c: workaround for SDL's crap audio output
          system (callback gets called at random times, and no way to know the
          latency of the samples being played). Audio output is now rather good
          here, but please give feedback.
        * ./modules/audio_output/oss.c: we delay a bit before asking for a new
          buffer to avoid starvation.
      51e99753
  27. 24 Aug, 2002 1 commit
  28. 19 Aug, 2002 1 commit
  29. 14 Aug, 2002 1 commit
  30. 12 Aug, 2002 1 commit
    • 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
  31. 10 Aug, 2002 1 commit
    • Gildas Bazin's avatar
      · 5bbe0409
      Gildas Bazin authored
      * modules/video_output/directx/aout.c: adapted the directx audio plugin to aout3.
      * modules/audio_output/waveout.c: adapted the waveout audio plugin to aout3 and
      decreased its score so the directx plugin is selected by default.
      * configure.in: re-enabled the waveout plugin
      
      It's really amazing how much aout3 simplifies these plugins :)
      5bbe0409
  32. 04 Aug, 2002 1 commit
    • Sam Hocevar's avatar
      * ./modules/*: moved plugins to the new tree. Yet untested builds include · 19ea8feb
      Sam Hocevar authored
          waveout, directx, qnx, beos, win32, macosx, and the AltiVec modules.
        * ALL: removed mention of AC3 in favour of A52.
        * ./configure.in, ./Makefile*: modules can now be built deeper than 1
          directory. As a consequence, the build is even slower (but I'm fixing
          this) and make clean doesn't work anymore.
      19ea8feb
  33. 31 Jul, 2002 1 commit
  34. 20 Jul, 2002 1 commit
  35. 02 Jun, 2002 1 commit
    • Sam Hocevar's avatar
      * ./src/video_output/video_output.c: fixed the "picture has invalid status" · 211d6bad
      Sam Hocevar authored
          bug which might have been the cause of crashes.
        * ./plugins/filter/crop.c: attempt at an automatic border cropping filter,
          using "--filter crop --autocrop".
        * ./vlc.spec: added missing filters to the RPM generation.
        * ./src/misc/objects.c: commented all functions.
        * ./src/misc/objects.c: implemented vlc_object_find( , , FIND_ANYWHERE).
        * ./src/misc/objects.c: renamed vlc_object_unlink to vlc_object_detach.
      211d6bad
  36. 01 Jun, 2002 2 commits
    • Sam Hocevar's avatar
      * ./plugins/dummy/intf_dummy.c, ./plugins/chroma/i420_yuy2.c, · 1dedf688
      Sam Hocevar authored
          src/interface/intf_eject.c, src/misc/threads.c: win32 compilation fix.
        * ./plugins/directx/aout_directx.c, plugins/directx/vout_directx.c,
          ./plugins/directx/vout_events.c: the DirectX notification and event threads
          now use the vlc_thread_create / vlc_thread_ready scheme. Untested.
        * ./configure.in: added a check for inttypes.h and sys/int_types.h.
        * ./configure.in: fixed the HTTP plugin compilation under BeOS.
        * ./plugins/network/ipv6.c: reactivated IPv6 module.
      1dedf688
    • 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
  37. 21 May, 2002 1 commit
    • Gildas Bazin's avatar
      · 9b3216c8
      Gildas Bazin authored
      * ./plugins/directx/aout_directx.c: fixed compile warnings.
      9b3216c8
  38. 24 Feb, 2002 1 commit
    • Sam Hocevar's avatar
      · d4243d59
      Sam Hocevar authored
        * Fixed a quite old bug in the audio output which made the sound stutter
          when wrapping around the audio output fifo.
        * Lots of simplifications in the audio output, got rid of b_stereo.
      d4243d59