1. 18 Aug, 2003 3 commits
    • Clément Stenac's avatar
      * src/audio_output/input.c · 0596bf59
      Clément Stenac authored
        src/libvlc.h :
             First try to implement "user audio filters"
             You can provide a list of audio filters that you want to add to
             the pipeline (only the "headphone", at that time).
      	(use --audio-filter filter1,filter2,...)
      
         ***Warning***
         It seems to work, but no guarantee at all. Perhaps all is bad
         and the commit should be reverted, as it could break audio output
      
      * modules/codec/libmpeg2.c :
      	Fixed a segfault when vout creation fails
      0596bf59
    • Jean-Paul Saman's avatar
      Small fix. · 236aa932
      Jean-Paul Saman authored
      236aa932
    • Laurent Aimar's avatar
      * all: move "wave format tag to fourcc" from demuxers to codecs.h · b428dafd
      Laurent Aimar authored
       (only one place to keep updated).
      b428dafd
  2. 17 Aug, 2003 11 commits
  3. 16 Aug, 2003 2 commits
  4. 15 Aug, 2003 2 commits
  5. 14 Aug, 2003 13 commits
  6. 13 Aug, 2003 9 commits
    • Gildas Bazin's avatar
      · ecc5706b
      Gildas Bazin authored
      * ALL: bumped version number to 0.6.3-cvs
      * modules/control/ntservice.c: new Windows NT/2K/XP service interface.
      ecc5706b
    • Gildas Bazin's avatar
      · 2433ab08
      Gildas Bazin authored
      * modules/stream_out/standard.c: fixed segfault on close.
      2433ab08
    • Gildas Bazin's avatar
      · 26db09c0
      Gildas Bazin authored
      * include/announce.h, src/stream_output/announce.c, modules/stream_out/standard.c: fixed broken build.
      26db09c0
    • Gildas Bazin's avatar
      · 36edc5e9
      Gildas Bazin authored
      * ChangeLog: yeah I know... don't laugh.
      36edc5e9
    • Gildas Bazin's avatar
      · 84509c42
      Gildas Bazin authored
      * modules/video_output/x11/xcommon.c: fixed a bug with fullscreen and sawfish.
      * modules/codec/ffmpeg/video.c: forgot a debug message.
      84509c42
    • Clément Stenac's avatar
      * configure.ac : we need to define HAVE_SLP_H · b83deb14
      Clément Stenac authored
      * include/announce.h & vlc_common.h: slp_session_t structure definition
      
      * module/stream_out/standard.c & src/stream_output/announce.c :
          SLP announcing support by vlc
      b83deb14
    • Laurent Aimar's avatar
    • Jean-Paul Saman's avatar
      Fixed segmentation fault in input_SplitBuffer() when input_FillBuffer() could... · 2f04d372
      Jean-Paul Saman authored
      Fixed segmentation fault in input_SplitBuffer() when input_FillBuffer() could not allocate (actually input_NewBuffer()) another buffer. The code tested for:
      if (!i_size)
      {
        /* Handle error */
      }
      
      However input_SplitBuffer() returns -1, which results in if (false) here and a segmentation fault will happen when input_ShareBuffer() is called. All constructs of the above form are supicious to produce a segfault in the code!
      
      2f04d372
    • Jean-Paul Saman's avatar
      Keep track of ioctl_UnsetDMXFilter · 2e6a0471
      Jean-Paul Saman authored
      2e6a0471