Gildas Bazin [Thu, 6 Mar 2003 23:10:11 +0000 (23:10 +0000)]
* src/audio_output/dec.c, include/aout_internal.h: the aout core was
automatically discarding audio samples that were above AOUT_MAX_ADVANCE_TIME
in the future. Problem is that p_input->i_pts_delay isn't a fixed value. We
now fetch this value from the input thread when we create an aout_instance_t.
This solves problems with the http access plugin.
* modules/gui/macosx/applescript.?
* extras/MacOSX/Resources/vlc.scriptSuite
* extras/MacOSX/Resources/English.lproj/vlc.scriptTerminology
- moved existing applescript commands to these files
- added several control commands. supported are: play/pause, stop,
previous, next, fullscreen, mute, volumeUp and volumeDown.
These correspond to the existing menuitems. This still requires work
in the future to make it more correct AppleScript, but it works for now.
* modules/gui/macosx/controls.?
- split up the controls.m into a .m and a .h
* modules/gui/macosx/intf.?
- added a getControls method to gain access to the controller object from
the AppleScript commands.
* modules/gui/macosx/open.?
- removed the applescript support existing here and moved it to applescript.?
* modules/gui/macosx/playlist.m
- made the tooltips for the add and remove buttons localizable.
* modules/gui/macosx/vout.m
- added a comment on the meaning of otherMouse events.
* ALL:
- updated copyright information to include the current year ;)
we now insert playlist entries right after the playlist file, and not at the
end of playlist. Should close bug reported on mailing list by Stepan Roh
about "redirection".
Gildas Bazin [Wed, 5 Mar 2003 22:37:05 +0000 (22:37 +0000)]
* modules/audio_filter/resampler/bandlimited.c: another bug-fix ( should be the last one ;)
* install-win32: the FAQ wasn't being included in the package.
Gildas Bazin [Wed, 5 Mar 2003 17:55:13 +0000 (17:55 +0000)]
* src/input/input_ext-plugins.c: added an msleep() call in case we fail to
allocate a new buffer in input_FillBuffer(). This is necessary because
the input thread has an high priority and we don't want it to loop
without any interruption.
* NEWS:
- added item on fix of 'clicking' sound between stream changes.
- added item on new bandlimited resampler
* ALL:
- bumped up revision number to 0.5.2-test3
Gildas Bazin [Tue, 4 Mar 2003 21:12:04 +0000 (21:12 +0000)]
* include/vlc_common.h: on win32 we include malloc.h (otherwise alloca is
not declared).
* modules/access/file.c: use _lseeki64 instead of lseek on win32. This
should allow seeking on files > 1.2Gb (Hopefully closes #168).
Gildas Bazin [Tue, 4 Mar 2003 19:28:39 +0000 (19:28 +0000)]
* modules/audio_filter/resampler/bandlimited.c: fix bug that was affecting
quality badly + some clean-up.
Changed the module priority so it is now the default resampler.
ALL:
- the german translation requires two different translations of the word
File. I added a _ANS() function to the macosx version that gets the
translation of 1:File and strips the first two characters of this
alternate translation.
- updated all .po files to make sure we don't break anything
- committed the March 1 version of the german translation by Felix
Kuhne <FK@aenneburghardt.de>
Gildas Bazin [Tue, 4 Mar 2003 03:27:40 +0000 (03:27 +0000)]
* modules/audio_filter/resampler/bandlimited.[ch]: new high-quality
bandlimited interpolation resampler.
It is not yet enabled by default because it requires a bit more works
(not fully stable yet because of buffer overflows under certain conditions).
* src/audio_output/input.c: the resamplers are now always active (expcept
in spdif mode).
* modules/audio_filter/resampler/*: modified the resampler to return the
input buffer when no resampling is needed.
* NEWS:
- added remarks on m-audio fixes and other OSX specific fixes.
- added improved ID3 detection item
* README.MacOSX.rtf
- updated to reflect M-Audio fixes.
* ./extras/MacOSX/Resources/English.lproj/MainMenu.nib/*:
- widened the Browse.. button to allow for the german word: durchsuchen.
- about.dfm: the layout of the "About" dialog box is slightly different
- misc.cpp: toolbar buttons are translated too
- mainframe.dfm: removed the "Back" and "Eject" toolbar buttons, which
were rather useless, and added an "Eject disc" menu entry
Also hid the caption for all the toolbar buttons
- win32.cpp: Added a config option to display or not these captions
- preferences.cpp: small modification to support non-advanced mode
Gildas Bazin [Sat, 1 Mar 2003 19:25:13 +0000 (19:25 +0000)]
* install-win32, Makefile.am: added the html faq to the win32 package.
* toolbox, msvc/*: few fixes to the msvc project files generation.
(compiling plugins won't work yet because there are a few hacks that
need to be done in order to compile dlls that use the c-runtime)
Olivier Teulière [Fri, 28 Feb 2003 04:31:24 +0000 (04:31 +0000)]
Internationalization now works for the win32 interface (thanks Gildas).
I've voluntarily disabled the translation of the toolbar buttons
strings, because it looks really awful...
Gildas Bazin [Wed, 26 Feb 2003 19:39:43 +0000 (19:39 +0000)]
* configure.ac.in, Makefile.am, install-win32: fixed the package-win32 make
target, and included the locales in the installer script.
* src/libvlc.c: on win32 we look for the locales in vlc's directory.
Marc Ariberti [Wed, 26 Feb 2003 15:47:26 +0000 (15:47 +0000)]
* implementation of the 'autoplay file' button callback
* when clicking a link : follows the link and don't try to open it
* yopy does not always sees the '.' and '..', so workaround :
- all the hidden files are not displayed
- the '..' directory is each time added by hand
Marc Ariberti [Wed, 26 Feb 2003 15:44:22 +0000 (15:44 +0000)]
* small modification for linupy :
- added a pixmpa directory
- added a set_usize (how do we maximize cleanly a gtk-window ?)
- chdir to '.' instead of '/mnt' (should it be '~' or '/' ?)
Gildas Bazin [Wed, 26 Feb 2003 13:51:36 +0000 (13:51 +0000)]
* src/input/input_ext-dec.c: added a few sanity checks that avoid crashing
badly when we reach the end of the stream (decoder stream).
* modules/packetizer/mpegvideo.c: fixed a bug that was causing an infinite
loop when the end of the stream was reached.
Laurent Aimar [Tue, 25 Feb 2003 17:17:43 +0000 (17:17 +0000)]
* stream_output.* : added a flags variable to sout_buffer_t, allowing to
mark headers.
* httpd : added a way to use stream header, and changed the way that
stream data are stored (allow better client handling).
* http : use stream header, and add mime type detection by looking
at file extention (could be improved).
* ogg: fixed a segfault when removing a stream, mark header.
Gildas Bazin [Tue, 25 Feb 2003 17:15:32 +0000 (17:15 +0000)]
* configure.ac.in, modules/codec/Modules.am, modules/codec/libmpeg2.c:
Added a simple mpeg video decoder based on libmpeg2. It is mainly useful
for comparing the performance against our custom decoder as it is currently
missing some important features like the synchro stuff.
Laurent Aimar [Sun, 23 Feb 2003 18:07:30 +0000 (18:07 +0000)]
* all : added streaming support for crappy ms video codec into TS.
- Only vlc is able to read such TS.
- I use stream id 0xa0 and descriptor 0xa0, I hope there aren't used.
- DivX1/2/3, wmv1/2, h/i263 should be supported, others could be
quickly added.
- Please test.
Fixed seme seeking issues with http access module, fixed an error that
caused id3v2.4 tags at the end of the file to not work. Added checks to
avoid seeking off the ends of the file. Should close #325, please confirm
Derk-Jan Hartman [Fri, 21 Feb 2003 16:31:37 +0000 (16:31 +0000)]
DJ's first steps in C and vlc decoders ;)
* modules/audio_filter/converter/mpgatofixed32.c:
- fixed an issue that could cause glitches when switching from one stream
to another. the buffer wasn't entirely getting 0000 because multiple
channels were not taken into account when doing this.
* ALL:
- if float32 then clear the buffer with (float)0
Derk-Jan Hartman [Fri, 21 Feb 2003 03:49:51 +0000 (03:49 +0000)]
* VLC.app should show its version in the Finder now
Meeuh, one more place that needs version string updated before a release.
might be made automated ?