ffmpeg: fix potential overread for mpeg4 with vol.
2003-07-26 Saturday 14:19 gbazin
* modules/gui/wxwindows/open.cpp: move the "open subtitles" line into the file panel.
2003-07-26 Saturday 14:04 ipkiss
* modules/gui/skins/controls/checkbox.cpp: Fixed a stupid bug (a return
value was always true...)
2003-07-26 Saturday 12:41 gbazin
* modules/gui/wxwindows/open.cpp: workaround design problems in wxSpinCtrl (wxSpinCtrl::GetValue() triggers a value update event).
2003-07-25 Friday 22:50 gbazin
* modules/gui/wxwindows/*: fixed clean-up of the dialogs provider on exit.
* modules/gui/skins/x11/*: proper initialization of a global var so we can start/exit the skins interface several times.
2003-07-25 Friday 13:24 gbazin
* INSTALL.win32: updated build instructions (btw since the last build changes, mingw+msys can be used again to compile VLC).
* modules/gui/wxwindows/wxwindows.cpp: oops.
2003-07-25 Friday 11:37 gbazin
* modules/video_output/directx/events.c: a couple of compiler warning fixes.
* msvc/vlc.dsw: relaced basic_skins plugin with the skins one.
2003-07-25 Friday 11:33 gbazin
* configure.ac: libpng (logo plugin) needs to be linked with zlib.
* modules/gui/wxwindows/*: a couple of compilation fixes for wxWindows cvs.
2003-07-25 Friday 01:11 hartman
* subsdec now uses the new options code.
2003-07-25 Friday 01:09 hartman
* Updated it.po
2003-07-25 Friday 01:09 hartman
* Largely updated nl.po
* Updated it.po
2003-07-24 Thursday 23:21 gbazin
* modules/gui/wxwindows/wxwindows.cpp: temporary hack (I hope ;) to fix win32 compilation with wxWindows < 2.5.
2003-07-24 Thursday 22:58 gbazin
* src/misc/modules.c: if module_Need() was passed an interface module name, respect this choice even if vlc was run with a specific interface shortcut.
2003-07-24 Thursday 22:05 sam
* modules/access/v4l/v4l.c:
+ Removed my name from this file, I didn't contribute anything major to it.
+ Added strerror(errno) where adequate, as well as additional debug
information, hopefully more useful than "cannot open".
2003-07-24 Thursday 21:50 gbazin
* modules/gui/wxwindows/*: you can now specify input options in the stream output MRL as well.
* modules/misc/freetype.c: bail out if no font has been specified.
* modules/demux/util/sub.h: don't forget to detach the demuxsub object.
2003-07-24 Thursday 20:34 sam
* bootstrap:
+ Run autopoint with the -f flag.
+ Remove stamp files in the bootstrap process.
2003-07-24 Thursday 19:30 sigmunau
ignore CR characters wherever they might be.
A little better line spaceing, but I still don't understand what this is all
about.
2003-07-24 Thursday 19:07 sigmunau
fixed a nasty code duplication where the same function call was two places
with just a few lines in between, but in separate #if cases.
2003-07-24 Thursday 18:30 bigben
* "frequency=" is channel frequency in kHz again
* fix a segfault when "/dev/video0" or "norm=" were last arguments of
the command line
2003-07-24 Thursday 18:27 bigben
* Changes "frequency=" syntax. New syntax is channel frequency in kHz
* shows a warning if frequency is in "previous syntax range"
Beware, the object in which you create the var must be attached to a parent for this to work (otherwise we can't navigate the parents hierarchy to find the value to inherit).
* src/input/input.c, src/input/input_programs.c, src/video_output/video_output.c: converted more config_GetFoo() into var_Create()/var_Get();
2003-07-23 Wednesday 21:45 hartman
* include/vlc_common.h: MAX_PATH PATH_MAX, we don't wanna bother and use the
latter everywhere.
* modules/demux/util/sub.c: Bring the config options in here to the variable structure.
* modules/misc/freetype.c: Bring the config options in here to the variable structure.
Fix the linespacing. Dnumgis, it works, just define another linespacing :)
2003-07-23 Wednesday 19:11 titer
freetype.c : use the default BeOS font on BeOS
2003-07-23 Wednesday 17:31 ipkiss
* modules/gui/skins/src/banks.cpp: removed a useless event I had
forgotten
2003-07-23 Wednesday 09:14 asmax
* all: fixed depcomp failure
2003-07-23 Wednesday 07:37 jpsaman
When recv() returns -1 a bug is triggered inside RTPRead() and RTPChoose(). The return value of Read() is then -1. The test "if (!i_ret) return 0;" will be false and the function will continue resulting in segfault while copying from buffers that are in an undetermined state. The correct test is "if (i_ret<0) return 0;".
2003-07-23 Wednesday 01:28 gbazin
* modules/misc/sap.c: oops, compilation fix.
2003-07-23 Wednesday 01:13 gbazin
* ALL: changes to the playlist_Add() and VLC_AddTarget() proto to include a list of options associated with the input.
* src/input/input.c: parses the input options list before spawning the input and create object variables for these options. Options are of the form "[no[-]]foo[=bar]" where foo is the option name and bar is its value.
* src/input/input.c, src/input/input_dec.c: use the object var api to get the value of the "sout", "sout-video" and "sout-audio" options.
* src/libvlc.c: extended the command line parser to parse input options. Input options must always follow the input they apply to and begin with a ':'.
All these changes allow you to specify input specific options.
Here the ":sout" option will only apply to yourvideo.mpeg.
"--no-sout-audio" will be a global option so will apply to yourvideo2.mpeg but the global behaviour is overriden by ":sout-audio" for yourvideo.mpeg.
TODO: - the interfaces need to be modified to benefit from the new playlist_Add() api.
- only "sout", "sout-video", "sout-audio" implemented for now. To make it work with other options, we need to get rid of all the config_GetFoo() and replace them with var_Create()/var_Change()/var_Get().
2003-07-22 Tuesday 22:02 hartman
* Fix Makefiles for removed .rle fonts
2003-07-22 Tuesday 20:49 hartman
* ALL:
- Removed all the RLE subtitle font code.
- Removed the .rle and even older .psf font files.
- Moved the filesubtitle code from spudec to subsdec.
- spudec is again DVD only.
2003-07-22 Tuesday 20:25 bigben
frequency is nom frequency in MHz * 16, as for the v4l input.
Breaks compatibility with previous syntax...
2003-07-22 Tuesday 18:06 gbazin
* src/stream_output/stream_output.c: fixed segfault when muxer can't add an elementary stream.
2003-07-22 Tuesday 15:59 gbazin
* src/misc/variables.c: fixed small mem leak (courtesy of Andy Lindsay)
* modules/gui/wxwindows/interface.cpp: small improvements to the volume control.
2003-07-22 Tuesday 13:58 bigben
* We're finally parsing all parameters (including standard)
* syntax is now (roughly) the same as for the v4l input
ex : vlc pvr:/dev/video0:frequency=1242:norm=secam:size=12x42:bitrate=1200,maxbitrate=4200
* old syntax is still working
* norm can be "pal", "secam", "ntsc" or any hexa value
2003-07-21 Monday 23:53 fenrir
* http: added "del" and "empty" control. (for playlist). Corrected
"previous" command.
TODO: doc :(
2003-07-21 Monday 19:45 jpsaman
Forgot this one.
2003-07-21 Monday 19:38 jpsaman
Added missing familiar-playlistb16x16.xpm
2003-07-21 Monday 19:25 jpsaman
Updated build rules for the Sharp Zaurus.
2003-07-21 Monday 19:19 jpsaman
Updated build rules for iPaq.
2003-07-21 Monday 18:24 gbazin
* modules/codec/spudec/spudec.c: disabled RLE font loading as it's not used anymore.
2003-07-21 Monday 17:48 gbazin
* modules/codec/quicktime.c, configure.ac: ported the audio part of the quicktime module to win32.
2003-07-21 Monday 17:29 gbazin
* Makefile.am, install-win32: removed rle fonts from the win32 package and added the necessary files for the http interface.
2003-07-21 Monday 01:38 hartman
* vlc.ebuild: disabled kde, fixed mad and freetype support
* Makefile.am: added html files for http intf to macosx.
windows and beos probably need to do this too.
2003-07-20 Sunday 23:46 gbazin
* modules/misc/freetype.c: set default font on win32. Fixed small memleak as well.
2003-07-20 Sunday 23:30 gbazin
* modules/packetizer/copy.c, modules/stream_out/transcode.c: handle raw RV15, RV16, RV24, RV32,
GREY.
2003-07-20 Sunday 23:05 sigmunau
removed some c++ style comments, fixed some untrue comments, moved a
function prototype
2003-07-20 Sunday 22:16 hartman
* Update of language files
2003-07-20 Sunday 22:06 hartman
* bumped up version to 0.6.1-test1
2003-07-20 Sunday 21:41 hartman
* Set the default font on Mac OS X to the system font.
2003-07-20 Sunday 21:28 gbazin
* modules/gui/wxwindows/streamout.cpp: small cosmetic change for the streamout dialog.
2003-07-20 Sunday 20:54 hartman
* removed matrox support, since the modules is broken
* modules/gui/wxwindows/interface.cpp: fixed a couple of bugs.
2003-07-20 Sunday 19:48 hartman
* README.MacOSX.rtf: updated section on subtitles.
* vlc.ebuild: added amd64 keyword. changed script to use emake again.
Removed MODULES from the doc installation.
* src/libvlc.h: added the new ffmpeg a/v encoders to the list for the prefs.
* share/vlc_win32_rc.rc: Changed the Win32 name of VLC from,
"An Opensource Media Player" to "VLC media player".
* other: added the new transcoding codecs, channels option and SAP option
to the stream output dialog.
2003-07-20 Sunday 16:56 ipkiss
* modules/misc/freetype.c: compilation fix for windows
2003-07-20 Sunday 16:26 sigmunau
Draw the text in the U and V planes as well. Removes the transparency effect.
Also check which chroma is in use and give an error message if it isn't
supported.
Someone (possibly me) should write some renderer functions for other
colorspaces.
2003-07-20 Sunday 15:33 gbazin
* Added MPEG 1 to the list of encapsulation methods (useful to produce files playable by WMP).
2003-07-20 Sunday 15:17 gbazin
* src/input/input_ext-plugins.c: in input_FillBuffer(), if we can't immediately allocate a new buffer, try until we manage to get one.
2003-07-20 Sunday 12:34 sigmunau
some cleanup in file info code, add fourccs in hex form ( some users want
that ), add audio bitrate when available (untested)
2003-07-20 Sunday 12:22 gbazin
* modules/gui/wxwindows/preferences.cpp: windows can't have open _and_ save file dialogs so only use open file dialogs on win32 in the preferences menu.
* Makefile.am: removed INSTALL.win32 from the win32 package as it's only useful for developpers anyway.
2003-07-20 Sunday 10:38 gbazin
* modules/gui/wxwindows/*, include/vlc_interface.h: new generic "open file" dialog.
* modules/gui/skins/*: use the new generic "open file" dialog to load skins.
2003-07-20 Sunday 08:30 zorglub
modules/control/joystick.c: Joystick control module (linux only)
disabled by default, use --enable-joystick & --extraintf joystick
Override the popup menu only for the main interface.
2003-07-19 Saturday 15:25 sigmunau
alsa is only available on linux
2003-07-19 Saturday 15:15 sigmunau
Render the glyph for each character only once, and not once for each frame.
Should speed up things a bit.
2003-07-19 Saturday 15:12 fenrir
* mp4: parse another box.
2003-07-19 Saturday 14:41 sigmunau
Use proper linespacing
2003-07-19 Saturday 14:22 gbazin
* src/libvlc.c: use UTF-8 internally on win32.
2003-07-19 Saturday 14:14 sigmunau
fix linking with iconv for the spudec module
2003-07-19 Saturday 11:29 sam
* Makefile.am: Fixed the plugins' target directory location.
2003-07-19 Saturday 00:02 hartman
* NEWS: added some more stuff for the upcoming 0.6.1
* vlc.ebuild: removed xvid and added the debug USE variable. Also some formatting fixes.
2003-07-18 Friday 23:50 hartman
* add a #include <errno.h>
2003-07-18 Friday 23:41 hartman
* Add -liconv to the ldflags of the spudec module.
* Add -framework Carbon to the ldflags of the spudec module when Carbon is
present. freetype-config unfortunatly omits this on MacOSX.
I think I did this correctly, but it might be wise to review this :)
2003-07-18 Friday 20:52 gbazin
* src/libvlc.h: disabled the encoders config options (encoders are not used anymore, all the encoding is done in the stream output transcode module).
* src/misc/win32_specific.c: added an --high-priority config option on win32 to increase the priority of the process (default enabled for now so the behaviour isn't changed.)
2003-07-18 Friday 20:16 hartman
* had forgotten to actually activate mozilla :)
2003-07-18 Friday 20:06 gbazin
* modules/audio_output/alsa.c: alsa is now the default audio output.
* modules/gui/wxwindows/*: enable popup menu support in the "dialogs provider".
2003-07-17 Thursday 17:30 gbazin
* modules/gui/wxwindows/*: The wxwindows interface is now a "dialogs provider" module as well as a normal "interface".
Dialog providers expose an api that allow other modules to use the GUI dialogs the module provides (open dialogs, etc...).
+ misc small enhancements.
* modules/gui/skins/*: completely removed the dependancy on the wxwindows code (which also eliminates the need for the basic_skins module).
The skins module will now try to load a "dialogs provider" to display the open, messages, file info and preferences dialogs.
2003-07-17 Thursday 16:34 sam
* Makefile.am: Parse mozilla after . so that the mozilla plugin gets its
dependencies right.
* src/stream_output/announce.c: Compilation fix.
2003-07-17 Thursday 15:49 sam
* m4/vlc.m4: Looks like POSIX shell reduces "`eval echo '$'FOO`" to "" even
if $FOO contains spaces. Worked around the problem.
2003-07-17 Thursday 14:54 sam
* configure.ac vlc-config.in.in: Oops, vlc-config needs top_builddir, not
top_srcdir.
2003-07-17 Thursday 14:28 sam
* src/stream_output/announce.c:
+ Fixed Win32 port.
+ Speed optimizations in split().
+ More coding style fixes.
2003-07-17 Thursday 14:10 sam
* src/stream_output/announce.c:
+ Coding style fixes.
+ Use memcpy() instead of for() loops.
2003-07-17 Thursday 13:09 sam
* mozilla/Makefile.am: Fixed stamp-pic generation, it was created in the
current directory but looked for in the parent directory.
2003-07-17 Thursday 13:01 sam
* debian/compat:
+ New debhelper file.
* debian/control:
+ Updated debhelper build-dependency to (>= 3.4.4) because we now
use debian/compat.
+ Use ${misc:Depends} everywhere.
2003-07-17 Thursday 12:06 sam
* mozilla/Makefile.am: Moved mozilla plugin generation directives here.
* configure.ac: Propagate $(top_srcdir) to the vlc-config call.
2003-07-17 Thursday 09:25 sigmunau
mozilla/vlcplugin.h: added the video/x-ms-wmv mime type
mozilla/npvlc_rc.rc: added all the missing types from vlcplugin.h
2003-07-16 Wednesday 21:42 sam
* Makefile.am: added /usr/lib/mozilla/include/idl to the xpidl include
directory, because that's where Gentoo puts it.
2003-07-16 Wednesday 17:19 gbazin
* modules/codec/spudec/spudec.c: oops, proper fix for the proper initialization of the proper iconv handle ;)
2003-07-16 Wednesday 17:17 gbazin
* modules/codec/spudec/spudec.c: proper initialization of the iconv handle.
2003-07-16 Wednesday 16:33 sam
* mozilla/*: Additional Mozilla 1.4 compilation fixes.
2003-07-16 Wednesday 16:06 sam
* configure.ac: complain when mozilla-config isn't found.
2003-07-16 Wednesday 15:52 sam
* bootstrap:
+ Minor indentation fix.
* toolbox:
+ Exclude vlc_symbols.h and modules_{plugins,builtins}.h from POTFILES.in.
* po/*:
+ Re-ran toolbox --update po.
2003-07-16 Wednesday 15:40 sam
* debian/changelog:
+ Prepared my next Debian upload.
* debian/control:
+ Set policy to 3.6.0. No changes required.
+ Extended the package description.
2003-07-16 Wednesday 15:32 sam
* modules/access/http.c:
+ Fixed gcc 3 warnings (type punning).
* modules/access/mms/mmstu.c:
+ Fixed a gcc 3 warning (long constant).
2003-07-16 Wednesday 15:25 sam
* modules/video_output/x11/xcommon.c: Select events in the video subwindow
instead of the base window, because newer versions of Mozilla select
ButtonPress for the window it gives us, and XSelectInput only allows
one client to select this event.
2003-07-15 Tuesday 18:12 sigmunau
moved Doxyfile to doc/ to make sam happy. Changed Doxyfile so the generated
documentation does not include information on which headers each file
includes, since this information isn't correct.
Clarified and doxygenized some of the documentation on subpictures
2003-07-15 Tuesday 18:01 alexis
Update for the spec files.
2003-07-15 Tuesday 16:07 gbazin
* modules/mux/mpeg/ps.c: save pack and system headers for http streaming.
2003-07-15 Tuesday 13:12 gbazin
* modules/mux/mpeg/ps.c,ps.c: the ps muxer can now create mpeg system (mpeg1) files as well. Also modified the ps muxer to output streams with system headers.
2003-07-14 Monday 22:25 sigmunau
had to forget something :)
2003-07-14 Monday 21:32 sigmunau
All: My shot at improving subtitle rendering in vlc. Now each vout uses a "text renderer" module to render text on the video when needed. I decieded to make this a module type, because other api's (win32 and macosx) is supposed to do better than freetype under some circumstances.
include/video_output.h: added some members needed by text renderer modules
src/video_output/video_output.c: load and unload text renderer module when needed
src/video_output/video_text.c: implemented some functions to show text on the video
include/osd.h: exported the functions to show text
modules/misc/Modules.am, module/misc/freetype.c: new text renderer module, largly based on the old osdtext module.
modules/video_filter/Modules.am, modules/video_filter/osd_text.c: removed the osdtext module
configure.ac: changes "osdtext" to "freetype" some places
modules/codec/spudec/*: when iconv is available, use it to convert textual subtitles from the encoding given by --sub-encoding to utf8. Use new code to render subtitles
modules/control/lirc/lirc.c: use new code to give feedback on buttons pressed. untested.
modules/demux/util/sub.c: remove all traces of the ugly old osdtext module
modules/misc/dummy/*: added a "text renderer" submodule in the dummy module
src/misc/modules.c: included osd.h as it seems to be needed to export symbols
final notes: you need to give a proper value to --freetype-font. This should be the path to a font file freetype2 can handle (almost any format afaik) with a unicode translation table in it. Windows ttf files will do. In linux at least openoffice distributes some fonts that work. I think macosx and beos also has useable fonts.
2003-07-14 Monday 20:36 sigmunau
toolbox: made a --add-include that can be used by doxygen to get proper
includes in the .h files, since they are parsed out of context by
doxygen
Doxyfile: misc fixes, use ./toolbox --add-include as filter for sources.
* modules/stream_out/transcode.c: implemented some very basic channels downmixing. Was necessary to be able to transcode a52 > stereo to mpga.
2003-07-13 Sunday 12:52 sigmunau
cleanup comments
2003-07-13 Sunday 12:35 massiot
* modules/demux/mpeg: 0x06 stream type can be used for something else
than A/52, so disabled it for the moment (we should actually check for
the presence of a descriptor).
2003-07-13 Sunday 12:15 massiot
* modules/codec/libmpeg2.c: Fixed a major bug where the picture heap
would progressively empty on some DVDs.
2003-07-12 Saturday 13:33 gbazin
* modules/gui/wxwindows/*: added a "simple open" entry to the "File" menu of the interface and playlist. That entry just opens a wxFileDialog().
2003-07-12 Saturday 00:56 fenrir
* http.c : fix definition conflict under OS X (at least).
2003-07-11 Friday 23:36 gbazin
* modules/gui/wxwindows/streamout.cpp, wxwindows.h: added an audio channels combobox for transcoding.
* NEWS: update in preparation for 0.6.1.
2003-07-11 Friday 23:14 gbazin
* 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.
2003-07-11 Friday 19:29 fenrir
* disabled by default. (It's a nice security hole for those)
2003-07-11 Friday 18:21 fenrir
* index: little fix for refresh url.
* browse: example.
2003-07-11 Friday 18:19 fenrir
* http: * fix for double // under linux.
* another useless feature: can browse local files (for sout)
2003-07-11 Friday 11:58 gbazin
* configure.ac: always use the built-in getop on win32 (cygwin's one is buggy).
Disable the gtk2/gnome2 interfaces as they are currently unuseable and this option was confusing users more than anything else.
Enabled the mp4 muxer (Although it doesn't yet produce streams compatible with quicktime).
2003-07-11 Friday 09:50 gbazin
* include/httpd.h: compilation fix.
* modules/control/http.c: win32 fixes.
2003-07-11 Friday 08:04 sam
* po/POTFILES.in: Updated this file from a pristine CVS tree to avoid cruft.
2003-07-11 Friday 07:13 gbazin
* modules/audio_output/alsa.c: enabled 4 and 5.1 channels modes (although stereo stays the default).
2003-07-10 Thursday 23:55 fenrir
* mmstu: workaround for some streams. (missing 0x11 answer).
2003-07-10 Thursday 22:37 fenrir
* httpd: fix a segfault.
2003-07-10 Thursday 22:29 fenrir
* all: samples pages for http interface.
2003-07-10 Thursday 22:24 fenrir
* http: rework of the http interface.
There is no more hardcoded html page. The interface recursively parse a
directory, exporting all files. All .htm/.html are parsed, and special
macro are used. I will commit somes samples pages in share/http and I
hope documentations.
TODO: - (re)implement access control in httpd (but in a useable way).
- clean login/password management. (for now .access protects
a whole directory).
- doc ;)
2003-07-10 Thursday 18:29 zorglub
* http: added support for user/pass (--http-user & --http-pass)
* httpd: removed hard-coded user/pass for admin page.
(now: --http-admin-pass & --http-admin-user )
2003-07-10 Thursday 11:15 adn
now messages can be saved to a file
2003-07-10 Thursday 07:08 sam
* vlc.spec.redhat: Renamed this file to vlc.spec again. It's the expected
filename in a package.
2003-07-10 Thursday 01:33 fenrir
* ffmpeg: some clean. Added a mutex to avoid multiple initialisation.
2003-07-10 Thursday 00:47 hartman
* fixed glide header detection
* added matroska, dvb and pvr USE vars.
* enabled support for flac.
* removed libdv support since it's deprecated
* enabled freetype support if USE=truetype
* enabled satellite support if USE=dvb
* added local USE variable pvr to compile with pvr support
* added local USE variable matroska to compile with experimental matroska
support/ebuilds. See also http://forums.gentoo.org/viewtopic.php?t=63722&highlight=matroska.
2003-07-09 Wednesday 22:10 gbazin
* modules/demux/ogg.c: latest change for web radios support did affect the quality of normal
ogg files. Make the check a bit more strict.
2003-07-09 Wednesday 21:42 gbazin
* modules/gui/wxwindows/interface.cpp: resume after pause was broken recently.
* src/audio_output/output.c: reverted a recent change that was screwing up the proper scheduling of audio samples after a starvation. That should improve the heavy resampling we currently have after a pause.
* modules/audio_output/alsa.c: improvements and fixes to the alsa audio output.
- Our Next/Previous commands now go from chapter trough title trough playlist.
- We weren't checking for titles without chapters, which made using CDDA
a little hard.
* modules/gui/macosx/playlist.m: An improved way to delete selected items.
- also fixes a bug where only half the items selected in the playlist got
actually deleted.
2003-06-29 Sunday 22:07 gbazin
* modules/visualization/xosd/xosd.c: lowered the module's score.
2003-06-29 Sunday 20:58 gbazin
* configure.ac, modules/mux/ogg.c, modules/stream_out/transcode.c: vorbis transcoding support (the transcoder still doesn't support vorbis decoding though, so no vorbis -> else transcoding)
2003-06-29 Sunday 20:15 sam
* toolbox: fuck OS X!
2003-06-29 Sunday 19:15 fenrir
* m3u: remove useless debug messages, fix element insertion.
2003-06-29 Sunday 19:12 sam
* debian/rules:
+ Enabled the video4linux input plugin.
2003-06-29 Sunday 19:04 sam
* toolbox: syntax fix for OS X's retarded sed.
2003-06-29 Sunday 14:57 sam
* m4/vlc.m4: Prepend LDFLAGS instead of appending them.
2003-06-29 Sunday 14:00 ipkiss
* fr.po: some new translations + fixes
2003-06-29 Sunday 00:14 hartman
* modules/gui/macosx/playlist.m: 10.1 is archaic. i don't know why i bother ;)
finally fixed, confirmed etc.
* doc/fortunes.txt: one more
2003-06-28 Saturday 23:56 fenrir
* ffmpeg: disable direct rendering when width or height aren't a multiple
of 16 (on the fly not only based upon header).
* httpd: test if INADDR_ANY is bind when requesting a host. (To be able to
use http interface with http streaming).
2003-06-28 Saturday 21:27 fenrir
* input: close all vouts (not only the first one).
2003-06-28 Saturday 21:18 fenrir
video_output.c: should fix playback of file with multiple video track,
and usage of display in stream output.
2003-06-28 Saturday 21:16 fenrir
* ffmpeg : do no try to automatically set ffmpeg-truncated (it's broken
with .mp4 files)
2003-06-28 Saturday 21:03 hartman
* s/;T;/;D;
Now it seems to builb. I guess you meant this sam. If I'm wrong you can correct me ;)
2003-06-28 Saturday 19:19 fenrir
* m3u: clean up and fix .m3u parsing. Please *test*.
2003-06-28 Saturday 17:20 fenrir
* input.c : call input_DelInfo _after_ that all decoders have been
destroyed as vorbis decoder could add info.
2003-06-28 Saturday 15:27 sam
* Makefile.am: fixed the location of the intl sources.
2003-06-28 Saturday 14:31 sam
* configure.ac:
+ Look for libintl in $(top_builddir)/intl, not \$(top_srcdir)/intl.
+ Added CVS Id string.
* m4/vlc.m4:
+ Added CVS Id string.
2003-06-28 Saturday 13:04 sam
* Makefile.am:
+ Call $(srcdir)/toolbox from $(builddir) instead of $(srcdir).
+ Call $(builddir)/vlc-config instead of $(srcdir)/vlc-config, because
generated files end in $(builddir).
+ Added -Imozilla to the mozilla plugin link flags.
+ Look for mozilla/vlcintf.idl in $(srcdir).
* configure.ac:
+ Set VLC_CONFIG to $(builddir)/vlc-config instead of $(srcdir)/vlc-config.
* toolbox:
+ Look for Makefile.am in ${srcdir}, and Makefile in ${builddir}.
+ Prepend ${srcdir} to header files we handle.
* m4/vlc.m4:
+ Look for vlc-config.in.in in ${srcdir} but generate vlc-config.in in