Skip to content
Snippets Groups Projects
  1. Nov 12, 2002
    • sigmunau's avatar
      added a new demux that reads .m3u files and addes the contained items to · 669c88b5
      sigmunau authored
      the playlist. Currently only autodetects files that start with #EXTM3U
      otherwise you'll have to force it.
      669c88b5
    • gbazin's avatar
      · 35b69681
      gbazin authored
      * include/vlc_playlist.h, src/playlist/playlist.c: added a b_autodeletion
         flag to the playlist item structure. If this flag is set then the playlist
         item will be deleted automatically after it has been played.
      35b69681
    • gbazin's avatar
      · 90fe4445
      gbazin authored
      * modules/gui/gtk/gtk_callbacks.c: fixed deadlocks.
      * modules/gui/gtk/gtk.c: fixed uninitialized variables.
      90fe4445
    • Samuel Hocevar's avatar
      * ./Makefile.am: fixed rc compilation under mingw32/cygwin. · df7cbb74
      Samuel 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
    • gbazin's avatar
      · 901789ff
      gbazin authored
      * modules/gui/gtk/gtk.c: small bug-fix for a crash on module loading.
      901789ff
    • gbazin's avatar
      · a6ca37b6
      gbazin authored
      * src/extras/libc.c: fixed typo.
      * configure.ac.in: compilation fix on win32 for the mms access plugin (the
         plugin is linked with ws2_32).
      a6ca37b6
    • Laurent Aimar's avatar
      * modules/demux/asf/.cvsignore : put the good one. · 5813fcd8
      Laurent Aimar authored
       * modules/access/mms : add MMS (Microsoft Media Streaming) access (Support
      only TCP, I will try to add UDP and HTTP as well).
       There are some problems with streams selections and we cannot seek, but
      anyway it seems to work. (Usefull for some radio web)
       * other: enable mms access by default.
      5813fcd8
  2. Nov 11, 2002
    • gbazin's avatar
      · c0e8ae07
      gbazin authored
      * src/audio_output/filters.c, src/audio_output/input.c, include/aout_internal.h,
         modules/audio_filter/resampler/*: Changes that allow the resamplers to set
         the start and end date of the frame it outputs.
         This allows us for instance to output a smaller frame than what we should, and
         keep the rest of the data to compute the resampling of the next frame.
         In short, we can implement much more complex resampling algorithms than before.
      
      * modules/audio_filter/resampler/linear.c: rewrote the linear resampler. The audio
         quality doesn't seem to be better than the ugly resampler, maybe I shouldn't
         have wasted my time on this...
      c0e8ae07
    • gbazin's avatar
      · 255b41ac
      gbazin authored
      * modules/audio_output/file.c: will write a WAV header by default. Can be
         disabled with --no-audiofile-wav.
      * modules/audio_filter/resampler/linear.c: disabled for now, until I actually
         manage to make it work without a problem.
      255b41ac
    • Samuel Hocevar's avatar
      * ./include/*, ./src/*: separated WIN32 #tests and UNDER_CE #tests, because · bc061e84
      Samuel Hocevar authored
          WIN32 isn't always defined under WinCE, but might be. Grmbl.
        * ./include/*: changed a few u* and s* to uint*_t and int*_t.
      bc061e84
  3. Nov 10, 2002
  4. Nov 09, 2002
  5. Nov 08, 2002
    • gbazin's avatar
      · 3c60cbd6
      gbazin authored
      * configure.ac.in, modules/audio_filter/converter/*: added a s8tofloat32.c and
         u8tofloat32.c converter.
      * modules/codec/araw.c: modified to also decode u8 pcm audio samples.
      3c60cbd6
    • gbazin's avatar
      · d532cf3c
      gbazin authored
      * ALL: using "%ll" in printf format strings is not portable (notably on win32) so
         we now use the I64Fx familly of macros to print 64 bits numbers (x being
         replaced by d,i,o,u,x or X).
         eg: msg_Dbg( p_this, "sample is "I64Fi" late", ll_time );
      
      * src/misc/messages.c: got rid of ConvertPrintfFormatString().
      d532cf3c
  6. Nov 07, 2002
  7. Nov 06, 2002
    • gbazin's avatar
      · 85071f34
      gbazin authored
      * modules/codec/spudec/*: modified the spu decoder to handle text subtitles.
         Only one format of text subtitles is supported right now but we should be able
         to expand this by modifying modules/codec/spudec/text.c.
         Most of this work comes from by Andrew Flintham ( thanks a bunch Andrew :).
      
      * share/font-eutopiabold36.rle: new font for the text subtitler, courtesy of
         Andrew Flintham.
      
      * AUTHORS: added Andrew Flintham to the authors file.
      
      * modules/demux/ogg.c: modified the ogg demuxer to handle subtitles.
      
      * modules/codec/ffmpeg/*: modified the ffmpeg decoder to always keep the last decoded
         frame linked.
      85071f34
    • Samuel Hocevar's avatar
      * ./modules/access/dvdplay/access.c: activated button highlighting. · 8b09b55d
      Samuel Hocevar authored
        * ./modules/codec/spudec/parse.c: implemented subtitle cropping and
          temporarily disabled subtitle cropping.
        * ./modules/codec/spudec/render.c: split RenderSPU into chroma-specific
          functions.
      8b09b55d
    • Johan Bilien's avatar
      * modules/access/vcd/vcd.*: added entry points support (sort of · 2401b662
      Johan Bilien authored
          chapters).
        * modules/gui/gtk/gtk_callbacks.c: added some locks to the
          navigation functions
      2401b662
    • Samuel Hocevar's avatar
      * ./modules/demux/avi/avi.c, ./modules/demux/avi/libavi.c: additional · 93160b29
      Samuel Hocevar authored
          endianness fixes, spelling fixes, reworked return values usage, used
          C99 types.
      93160b29
    • Samuel Hocevar's avatar
      * ./src/misc/extras.c: removed a duplicate calculation inside a macro. · 4910755e
      Samuel Hocevar authored
        * ./src/libvlc.c: fixed a bug causing all commandline targets to be ignored
          for playback except the last one.
        * ./modules/codec/dv.c: we detach p_vout before quitting.
        * ./modules/codec/xvid.c: fixed image corruption, added a direct rendering
          option which doesn't work yet.
      4910755e
  8. Nov 05, 2002
    • gbazin's avatar
      · 7358af1b
      gbazin authored
      * modules/demux/avi/*: should theoretically fix the endianness issues with
         the avi demuxer.
      7358af1b
    • Samuel Hocevar's avatar
      * ./modules/codec/xvid.c: beginning of a video decoder using the Xvid codec · 281b9bb4
      Samuel Hocevar authored
          from xvid.org; compile with --enable-xvid --with-xvid-tree=..., run with
          --codec xvid,any (the priority is lower than ffmpeg's for the now).
      
          todo list: direct rendering, better buffer handling, see why only I frames
                     are rendered OK here... probably more.
      281b9bb4
    • gbazin's avatar
      · be822ed6
      gbazin authored
      * modules/demux/ogg.c: should theoretically work on Big Endian machines now.
      be822ed6
    • gbazin's avatar
      · 51f7848f
      gbazin authored
      * All: moved the check for "video" and "audio" config variables to
         input_SelectES(). That allows --no-video and --no-audio to automagically
         work for all demuxers.
      51f7848f
    • Samuel Hocevar's avatar
      * ./codec/dv/dv.c: moved this single file to its parent directory; removed · ec166301
      Samuel Hocevar authored
          GetFirstPES in favour of input_ExtractPES/input_DeletePES calls.
      ec166301
    • gbazin's avatar
      · 3e017c26
      gbazin authored
      * modules/codec/ffmpeg/*: modified the ffmpeg video codec to use direct
         rendering when possible.
         Use BITMAPINFOHEADER from include/codecs.h + got rid of Little Endian
         translations that were already done in the demux.
      * modules/demux/avi/* modules/demux/asf/*: Use BITMAPINFOHEADER from
         include/codecs.h.
      3e017c26
    • Jon Lech Johansen's avatar
Loading