- 12 Nov, 2002 1 commit
-
-
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.
-
- 11 Nov, 2002 3 commits
-
-
Gildas Bazin 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...
-
Gildas Bazin 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.
-
Sam 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.
-
- 10 Nov, 2002 7 commits
-
-
Sam Hocevar authored
yet so there's little that can be tested, but threads work at least. * ./src/extras/libc.c: renamed strndup.c to libc.c because a few other libc functions were added (strcasecmp, atof, getenv...).
-
Sam Hocevar authored
work is still needed for missing functions. I only touched libvlc for the moment, plugins will come in a long long while. * ./bootstrap: moved MSVC project files generation here; use --update-msvc.
-
Laurent Aimar authored
-
Laurent Aimar authored
case it forces mp3 demuxer (Should be ok...)
-
Gildas Bazin authored
* src/audio_output/output.c: fixed another quality affecting bug. * include/aout_internal.h src/audio_output/input.c: major change to the resampling algorithm. When resampling is requested to keep the audio stream synchronised to the main clock, we trigger it but we change the resampling rate only progressively so it doesn't get noticed too much by the listener.
-
Sigmund Augdal Helberg authored
./modules/audio_filter/resampler/linear.c: This should allways generate the right number of samples now. The morale is never base your floating point calculations on the output of integer divitions.
-
Laurent Aimar authored
* ffmpeg : adapt postprocessing for latest libavcodec version, add an option to disable direct rendering as postprocessing is currently broken with it, and with some files I have bad pictures.
-
- 09 Nov, 2002 5 commits
-
-
Sam Hocevar authored
* ./msvc/vlc.vcw: skeleton of a WinCE project file (yet non-functional).
-
Sam Hocevar authored
-
Sam Hocevar authored
-
Sam Hocevar authored
-
Sam Hocevar authored
file from the makefile. * ./msvc/*: moved the MSVC files here. * ./src/extras/*: moved the extra code here (used to be in src/misc, extras/GNUgetopt and extras/Win32_msvc). * ./include/*: a few warning fixes.
-
- 08 Nov, 2002 2 commits
-
-
Gildas Bazin 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.
-
Gildas Bazin 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().
-
- 07 Nov, 2002 4 commits
-
-
Sam Hocevar authored
-
Sigmund Augdal Helberg authored
between sound quality and speed
-
Gildas Bazin authored
* INSTALL.win32, include/vlc_config.h, src/libvlc.h: changes to reflect the fact that libdvdcss now needs a colon after the DVD drive letter (on Win32). * src/misc/messages.c: on Win32 only use fflush() if in debug mode. * src/misc/win32_specific.c: try to raise the our process priority slightly above normal. This prevent us from suffering too much from normal activity of the OS.
-
Gildas Bazin authored
* modules/access/http.c: don't crash, but complain on non http/1.x streams.
-
- 06 Nov, 2002 5 commits
-
-
Gildas Bazin 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.
-
Sam 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.
-
Johan Bilien authored
chapters). * modules/gui/gtk/gtk_callbacks.c: added some locks to the navigation functions
-
Sam Hocevar authored
endianness fixes, spelling fixes, reworked return values usage, used C99 types.
-
Sam 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.
-
- 05 Nov, 2002 7 commits
-
-
Gildas Bazin authored
* modules/demux/avi/*: should theoretically fix the endianness issues with the avi demuxer.
-
Sam 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.
-
Gildas Bazin authored
* modules/demux/ogg.c: should theoretically work on Big Endian machines now.
-
Gildas Bazin 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.
-
Sam Hocevar authored
GetFirstPES in favour of input_ExtractPES/input_DeletePES calls.
-
Gildas Bazin 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.
-
Jon Lech Johansen authored
-
- 04 Nov, 2002 2 commits
-
-
Sam Hocevar authored
-
Sam Hocevar authored
* ./mozilla/npvlc_rc.rc, ./mozilla/vlcplugin.h: added the Ogg mime type to the Mozilla plugin properties. * ./debian/control: added libogg-dev and libvorbis-dev dependicies to the Debian build script.
-
- 03 Nov, 2002 2 commits
-
-
Gildas Bazin authored
* include/codecs.h: new header file to store information shared by decoders and demuxers, like the BITMAPINFOHEADER structure for instance. * modules/demux/ogg.c: the ogg demuxer should now work nicely with ogm files (including for the video). It has only been tested with a few streams produced with dvd::rip and ogmmerge though.
-
Gildas Bazin authored
* modules/demux/ogg.c: we now correctly handle multiple vorbis logical streams in ogm files. * modules/codec/vorbis.c: small bugfix.
-
- 02 Nov, 2002 2 commits
-
-
Gildas Bazin authored
* modules/demux/ogg.c: small fix to avoid crashing when find unknown codecs.
-
Gildas Bazin authored
* modules/demux/ogg.c, modules/codec/vorbis.c: seeking in an ogg stream is working fine now, + misc other improvements.
-