]> git.sesse.net Git - vlc/blobdiff - ChangeLog
* mosaic call back help
[vlc] / ChangeLog
index e3db8ef812a701107822c9c02f263d1c969bda23..861c646646bcef06b169733c6571c2eafb416d90 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
-2004-01-01 Thursday 15:56  rocky
+------------------------------------------------------------------------
+r9745 | titer | 2005-01-15 04:02:57 +0100 (Sat, 15 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/modules/video_filter/motiondetect.c
 
- RenderRV16 handles scaling. But seems to slow to render subtitles.
+ motiondetect.c: gcc < 3 compile fix
 
-2004-01-01 Thursday 14:33  zorglub
+------------------------------------------------------------------------
+r9744 | yoann | 2005-01-15 01:42:23 +0100 (Sat, 15 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/TODO
+   M /trunk/modules/gui/wxwindows/playlist.cpp
 
- Updated brazilian portuguese translation
+* modules/gui/wxwindows/playlist.cpp: when duration is not known, don't display (--:--:--)
 
-2004-01-01 Thursday 13:54  rocky
+------------------------------------------------------------------------
+r9743 | yoann | 2005-01-14 19:01:36 +0100 (Fri, 14 Jan 2005) | 3 lines
+Changed paths:
+   M /trunk/modules/access/directory.c
+   M /trunk/modules/gui/ncurses.c
 
- Remove a magic number.
+* modules/access/directory.c: fix a segfault when reading an empty directory
+* modules/gui/ncurses.c: fix a segfault when playlist is empty
 
-2004-01-01 Thursday 13:51  rocky
+------------------------------------------------------------------------
+r9742 | yoann | 2005-01-14 17:14:01 +0100 (Fri, 14 Jan 2005) | 3 lines
+Changed paths:
+   M /trunk/modules/gui/ncurses.c
 
- Add RV16 rendering. With transparancy, but still only Y plane is done.
+* modules/gui/ncurses.c: support for tree playlist in ncurses interface
+  use 'v' to toggle view
 
+------------------------------------------------------------------------
+r9741 | gbazin | 2005-01-14 14:15:52 +0100 (Fri, 14 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/include/codecs.h
+   M /trunk/modules/demux/wav.c
+
+* include/codecs.h, modules/demux/wav.c: patch by Matthew Romaine to handle WAVEFORMATEXTENSIBLE files more robustly.
+------------------------------------------------------------------------
+r9740 | hartman | 2005-01-14 13:11:57 +0100 (Fri, 14 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/modules/access/http.c
+
+* so the ogg vorbis fix broke shoutcast streams :) fixing again.... (tested with all audio streams i know off)
+
+------------------------------------------------------------------------
+r9739 | djc | 2005-01-14 00:28:36 +0100 (Fri, 14 Jan 2005) | 18 lines
+Changed paths:
+   M /trunk/configure.ac
+   M /trunk/modules/video_filter/Modules.am
+   A /trunk/modules/video_filter/motiondetect.c
+
+Added simple motion detect filter.
+This filter uses a description file which follows this format :
+x1,y1,x2,y2,level,downspeed,upspeed,mrl
+...
+where x1,y1,x2,y2 describe a sensible rectangle, level is the minimum difference for an active pixel, downspeed an upspeed are to integers.
+mrl is a mrl to go when the filter has detected movement in the rectangle.
+
+This is fun with vlm. For example, you should try to launch vlc normaly with vlm and then type :
+new camera broadcast
+setup camera enabled
+setup camera input mrl to your camera
+setup camera option filter=motiondetect,transform
+#setup camera option transform-type=vflip
+#indeed, I did not reach to make this working
+control camera play
+
+Have fun ;)
+
+------------------------------------------------------------------------
+r9738 | massiot | 2005-01-13 20:03:03 +0100 (Thu, 13 Jan 2005) | 3 lines
+Changed paths:
+   M /trunk/modules/access_output/udp.c
+
+* modules/access_out/udp.c: Issue a warning when two PCRs are put inside a
+  single UDP frame (may disturb some decoders).
+
+------------------------------------------------------------------------
+r9737 | massiot | 2005-01-13 20:02:04 +0100 (Thu, 13 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/src/misc/threads.c
+
+* src/misc/threads.c: thread_id is in fact an _unsigned_ int.
+
+------------------------------------------------------------------------
+r9736 | massiot | 2005-01-13 20:01:22 +0100 (Thu, 13 Jan 2005) | 3 lines
+Changed paths:
+   M /trunk/src/input/es_out.c
+
+* src/input/es_out.c: EN 300 472 allows the PTS of teletext streams to be
+  invalid.
+
+------------------------------------------------------------------------
+r9735 | zorglub | 2005-01-13 19:45:11 +0100 (Thu, 13 Jan 2005) | 16 lines
+Changed paths:
+   M /trunk/configure.ac
+   M /trunk/modules/gui/wxwindows/playlist.cpp
+   M /trunk/modules/services_discovery/Modules.am
+   A /trunk/modules/services_discovery/daap.c
+
+* DAAP (iTunes shares) services discovery and access module using libopendaap
+
+http://crazney.net/programs/itunes/libopendaap.html
+
+Problems : 
+   - At the moment, the file is downloaded entirely in memory before being
+     played.
+     The library offers another possibility : download the file on
+     demand to a pipe, but I don't think it would be a very good idea
+     (portability issues ? where to download to ?).
+     I hope a "download on demand to memory" feature will be added
+   - Sometimes, it looses connection to the peers.
+
+* Increased wx playlist font size
+
+
+------------------------------------------------------------------------
+r9734 | gbazin | 2005-01-13 12:25:58 +0100 (Thu, 13 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/src/misc/configuration.c
+
+* src/misc/configuration.c: fix config_GetType() to handle the new CONFIG_ITEM_MODULE_foo types.
+------------------------------------------------------------------------
+r9733 | gbazin | 2005-01-13 10:37:43 +0100 (Thu, 13 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/configure.ac
+   M /trunk/modules/codec/theora.c
+
+* modules/codec/theora.c: remove the need for theora_packet_iskeyframe().
+------------------------------------------------------------------------
+r9732 | hartman | 2005-01-13 00:51:02 +0100 (Thu, 13 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/extras/contrib/src/Patches/ffmpeg.patch.cvs
+
+* <cough> broken patch </cough>
+
+------------------------------------------------------------------------
+r9731 | yoann | 2005-01-12 17:24:44 +0100 (Wed, 12 Jan 2005) | 4 lines
+Changed paths:
+   M /trunk/modules/gui/wxwindows/interface.cpp
+   M /trunk/modules/gui/wxwindows/timer.cpp
+   M /trunk/modules/gui/wxwindows/wxwindows.h
+
+* modules/gui/wxwindows/interface.cpp: Add new buttons for DVDs and CDs:
+  - Menu, Previous Chapter, Next Chapter for DVDs
+  - Previous Track, Next Track for CDs
+
+------------------------------------------------------------------------
+r9730 | hartman | 2005-01-12 17:07:20 +0100 (Wed, 12 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/extras/contrib/src/Patches/ffmpeg.patch.cvs
+
+* part of patch was applied upstream. Adapt....
+
+------------------------------------------------------------------------
+r9729 | gbazin | 2005-01-12 15:27:35 +0100 (Wed, 12 Jan 2005) | 1 line
+Changed paths:
+   A /trunk/modules/gui/wince/wince.rc
+
+* modules/gui/wince/wince.rc: forgot to commit this file with the wince interface.
+------------------------------------------------------------------------
+r9728 | zorglub | 2005-01-12 10:19:10 +0100 (Wed, 12 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/modules/gui/wxwindows/playlist.cpp
+
+Put callbacks after rebuild, avoids deadlock in rebuild
+
+------------------------------------------------------------------------
+r9727 | fkuehne | 2005-01-11 18:42:08 +0100 (Tue, 11 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/extras/contrib/src/packages.mak
+
+* changed the download-link of gettext temporarily to the videolan-main-server, since the current GNU-mirror does not provide the 0.14.1-release. The responsible admin is contacted.
+------------------------------------------------------------------------
+r9726 | zorglub | 2005-01-11 17:52:42 +0100 (Tue, 11 Jan 2005) | 3 lines
+Changed paths:
+   M /trunk/include/vlc_input.h
+   M /trunk/modules/access/directory.c
+   A /trunk/modules/gui/wxwindows/bitmaps/type_afile.xpm
+   A /trunk/modules/gui/wxwindows/bitmaps/type_cdda.xpm
+   M /trunk/modules/gui/wxwindows/bitmaps/type_directory.xpm
+   M /trunk/modules/gui/wxwindows/bitmaps/type_disc.xpm
+   M /trunk/modules/gui/wxwindows/bitmaps/type_net.xpm
+   A /trunk/modules/gui/wxwindows/bitmaps/type_node.xpm
+   A /trunk/modules/gui/wxwindows/bitmaps/type_vfile.xpm
+   M /trunk/modules/gui/wxwindows/interface.cpp
+   M /trunk/modules/gui/wxwindows/playlist.cpp
+   M /trunk/src/playlist/item.c
+   M /trunk/src/playlist/view.c
+
+Add some icons
+Fix autoswitching to category view
+
+------------------------------------------------------------------------
+r9725 | hartman | 2005-01-11 17:36:12 +0100 (Tue, 11 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/extras/contrib/src/Patches/theora.patch
+   M /trunk/extras/contrib/src/packages.mak
+
+* newer theora: alpha4 version. new location, new patch
+
+------------------------------------------------------------------------
+r9724 | massiot | 2005-01-11 17:32:50 +0100 (Tue, 11 Jan 2005) | 3 lines
+Changed paths:
+   M /trunk/modules/access/dvb/access.c
+   M /trunk/modules/access/dvb/dvb.h
+   M /trunk/modules/access/dvb/en50221.c
+   M /trunk/modules/access/dvb/linux_dvb.c
+
+* modules/access/dvb: Fixed numerous bugs related to the CAM configuration.
+  Reconfigure the frontend if no lock is acquired in 10s.
+
+------------------------------------------------------------------------
+r9723 | hartman | 2005-01-11 17:17:44 +0100 (Tue, 11 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/modules/access/http.c
+
+* fix ogg streams.
+
+------------------------------------------------------------------------
+r9722 | andrep | 2005-01-11 17:04:09 +0100 (Tue, 11 Jan 2005) | 3 lines
+Changed paths:
+   M /trunk/configure.ac
+
+* configure.ac: Require libtheora 1.0alpha4
+
+
+------------------------------------------------------------------------
+r9721 | andrep | 2005-01-11 14:19:20 +0100 (Tue, 11 Jan 2005) | 3 lines
+Changed paths:
+   M /trunk/modules/codec/cmml/intf.c
+
+* cmml/intf.c: Fix refcount leak on main interface (thanks to gibalou for help)
+
+
+------------------------------------------------------------------------
+r9720 | gbazin | 2005-01-11 13:02:57 +0100 (Tue, 11 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/modules/gui/wxwindows/preferences_widgets.cpp
+
+* modules/gui/wxwindows/preferences_widgets.cpp: added update event for IntegerListConfigControl.
+------------------------------------------------------------------------
+r9719 | hartman | 2005-01-11 12:51:03 +0100 (Tue, 11 Jan 2005) | 4 lines
+Changed paths:
+   M /trunk/modules/access/http.c
+
+* NSV uses a different mime type for audio only streams. Force the right demuxer...
+(we are very much approaching the point where we need a proper mimetype match table within the code)
+
+
+------------------------------------------------------------------------
+r9718 | andrep | 2005-01-11 10:17:56 +0100 (Tue, 11 Jan 2005) | 4 lines
+Changed paths:
+   M /trunk/modules/codec/theora.c
+
+* theora.c: Eliminate display artifacts when the very first frame of the
+  stream isn't a keyframe
+
+
+------------------------------------------------------------------------
+r9717 | andrep | 2005-01-11 09:58:06 +0100 (Tue, 11 Jan 2005) | 3 lines
+Changed paths:
+   M /trunk/modules/codec/theora.c
+
+* theora.c: Fixed weird display artifacts when seeking on Theora videos
+
+
+------------------------------------------------------------------------
+r9716 | bigben | 2005-01-10 22:08:45 +0100 (Mon, 10 Jan 2005) | 5 lines
+Changed paths:
+   M /trunk/modules/access/v4l/v4l.c
+
+* End of the implementation of the v4l-*options
+
+If somebody who has a v4l device could actually test that... (at least if the default values for the options make sense).
+
+
+------------------------------------------------------------------------
+r9715 | fkuehne | 2005-01-10 18:37:01 +0100 (Mon, 10 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/extras/contrib/src/packages.mak
+
+* changed the GNU mirror once again, since the Irish one I choose previously is as bad as the GNU-main server -- let's use the LEO-server of the technical university of Munich (Germany), which is highly reliable (also an OpenOffice, Gentoo, Debian mirror)
+------------------------------------------------------------------------
+r9714 | sam | 2005-01-10 12:09:35 +0100 (Mon, 10 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/configure.ac
+
+  * configure.ac: -lfreetype requires -lm.
+
+------------------------------------------------------------------------
+r9713 | bigben | 2005-01-09 23:45:24 +0100 (Sun, 09 Jan 2005) | 6 lines
+Changed paths:
+   M /trunk/modules/access/pvr/pvr.c
+   M /trunk/modules/access/v4l/v4l.c
+
+* v4l.c:
+       - Add --v4l-* options for all the parametters that can be set from the MRL, so we have a complete Panel in the wx interface and some doc in the command line
+       - Only declaration for now, options don't make anything yet
+* pvr.c: describe height as height, not width
+
+
+------------------------------------------------------------------------
+r9711 | asmax | 2005-01-09 20:46:39 +0100 (Sun, 09 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/modules/gui/skins2/Modules.am
+   A /trunk/modules/gui/skins2/macosx
+   A /trunk/modules/gui/skins2/macosx/macosx_dragdrop.cpp
+   A /trunk/modules/gui/skins2/macosx/macosx_dragdrop.hpp
+   A /trunk/modules/gui/skins2/macosx/macosx_factory.cpp
+   A /trunk/modules/gui/skins2/macosx/macosx_factory.hpp
+   A /trunk/modules/gui/skins2/macosx/macosx_graphics.cpp
+   A /trunk/modules/gui/skins2/macosx/macosx_graphics.hpp
+   A /trunk/modules/gui/skins2/macosx/macosx_loop.cpp
+   A /trunk/modules/gui/skins2/macosx/macosx_loop.hpp
+   A /trunk/modules/gui/skins2/macosx/macosx_timer.cpp
+   A /trunk/modules/gui/skins2/macosx/macosx_timer.hpp
+   A /trunk/modules/gui/skins2/macosx/macosx_tooltip.cpp
+   A /trunk/modules/gui/skins2/macosx/macosx_tooltip.hpp
+   A /trunk/modules/gui/skins2/macosx/macosx_window.cpp
+   A /trunk/modules/gui/skins2/macosx/macosx_window.hpp
+   M /trunk/modules/gui/skins2/src/os_factory.cpp
+
+- all: skeleton for a MacOSX port of skins2 (happy new year ;)
+
+------------------------------------------------------------------------
+r9710 | asmax | 2005-01-08 18:49:22 +0100 (Sat, 08 Jan 2005) | 4 lines
+Changed paths:
+   M /trunk/src/playlist/playlist.c
+
+- playlist.c: avoid a segfault when playlist_ViewFind() returns NULL.
+ Anyway I guess it should not happen so there is a bug in the playlist
+ code but I have no time to understand it...
+
+------------------------------------------------------------------------
+r9709 | ipkiss | 2005-01-07 22:08:25 +0100 (Fri, 07 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/TODO
+
+ * TODO: Added little hints for the OS X port of the skins
+
+------------------------------------------------------------------------
+r9708 | massiot | 2005-01-07 21:21:59 +0100 (Fri, 07 Jan 2005) | 12 lines
+Changed paths:
+   M /trunk/configure.ac
+   M /trunk/modules/access/dvb/access.c
+   M /trunk/modules/access/dvb/dvb.h
+   M /trunk/modules/access/dvb/en50221.c
+   M /trunk/modules/access/dvb/linux_dvb.c
+   M /trunk/modules/demux/ts.c
+
+* modules/access/dvb:
+  - Rewrote QPSK frontend tuning functions, after reading the doc - it
+    should hopefully fix the infamous "Operation not permitted" problem.
+  - Permanently monitor the frontend status, and reinit it if it crashes.
+  - New --dvb-high-voltage option for very long cables.
+  - Moved all EN 50 221-related code from ts.c to en50221.c. We no longer
+    need the --ts-capmt-sysid option because the sysid is determined
+    automatically from the CAM.
+  - Also changed the way we send the CAPMTs to the CAM, hoping to fix a bug
+    with Aston professional CAMs which all of sudden stop descrambling
+    a program after a few days.
+
+------------------------------------------------------------------------
+r9707 | massiot | 2005-01-07 21:04:46 +0100 (Fri, 07 Jan 2005) | 3 lines
+Changed paths:
+   M /trunk/include/vlc_block.h
+   M /trunk/modules/access_output/udp.c
+   M /trunk/modules/mux/mpeg/ts.c
+
+* modules/access_output/udp.c: When using --udp-group, do not send two PCRs
+  at once. This requires the export of the PCR block_flag.
+
+------------------------------------------------------------------------
+r9706 | massiot | 2005-01-07 20:57:00 +0100 (Fri, 07 Jan 2005) | 3 lines
+Changed paths:
+   M /trunk/modules/access/udp.c
+
+* modules/access/udp.c: When udp is invoked as 'rtp:', only consider RTP
+  packets.
+
+------------------------------------------------------------------------
+r9705 | massiot | 2005-01-07 20:55:48 +0100 (Fri, 07 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/modules/access/pvr/pvr.c
+
+* modules/access/pvr/pvr.c: Added --pvr-caching option.
+
+------------------------------------------------------------------------
+r9702 | gbazin | 2005-01-07 15:05:03 +0100 (Fri, 07 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/modules/audio_output/waveout.c
+
+* modules/audio_output/waveout.c: increase the audio buffer size under WinCE.
+------------------------------------------------------------------------
+r9701 | gbazin | 2005-01-07 10:54:01 +0100 (Fri, 07 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/include/aout_internal.h
+
+* include/aout_internal.h: fixed old memory leak when alloca() isn't available.
+------------------------------------------------------------------------
+r9700 | gbazin | 2005-01-07 01:19:43 +0100 (Fri, 07 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/evc/vlc.vcw
+
+
+------------------------------------------------------------------------
+r9699 | gbazin | 2005-01-07 01:19:09 +0100 (Fri, 07 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/configure.ac
+
+* configure.ac: added wince plugin to the build system.
+------------------------------------------------------------------------
+r9698 | gbazin | 2005-01-07 00:52:00 +0100 (Fri, 07 Jan 2005) | 2 lines
+Changed paths:
+   A /trunk/modules/gui/wince
+   A /trunk/modules/gui/wince/Modules.am
+   A /trunk/modules/gui/wince/bitmaps
+   A /trunk/modules/gui/wince/bitmaps/toolbar1.bmp
+   A /trunk/modules/gui/wince/bitmaps/toolbar2.bmp
+   A /trunk/modules/gui/wince/bitmaps/toolbar3.bmp
+   A /trunk/modules/gui/wince/bitmaps/vlc16x16.ico
+   A /trunk/modules/gui/wince/fileinfo.cpp
+   A /trunk/modules/gui/wince/interface.cpp
+   A /trunk/modules/gui/wince/iteminfo.cpp
+   A /trunk/modules/gui/wince/menus.cpp
+   A /trunk/modules/gui/wince/messages.cpp
+   A /trunk/modules/gui/wince/open.cpp
+   A /trunk/modules/gui/wince/playlist.cpp
+   A /trunk/modules/gui/wince/preferences.cpp
+   A /trunk/modules/gui/wince/preferences_widgets.cpp
+   A /trunk/modules/gui/wince/preferences_widgets.h
+   A /trunk/modules/gui/wince/subtitles.cpp
+   A /trunk/modules/gui/wince/timer.cpp
+   A /trunk/modules/gui/wince/video.cpp
+   A /trunk/modules/gui/wince/wince.cpp
+   A /trunk/modules/gui/wince/wince.h
+
+* modules/gui/wince/*: New Windows CE interface by Cedric Marodon <cedric_marodon at yahoo dot fr> (ported from the vlcpocketpc project by myself after some heavy code cleanup).
+
+------------------------------------------------------------------------
+r9697 | fkuehne | 2005-01-07 00:40:18 +0100 (Fri, 07 Jan 2005) | 3 lines
+Changed paths:
+   M /trunk/po/POTFILES.in
+   M /trunk/po/da.po
+   M /trunk/po/de.po
+   M /trunk/po/en_GB.po
+   M /trunk/po/es.po
+   M /trunk/po/fr.po
+   M /trunk/po/hu.po
+   M /trunk/po/it.po
+   M /trunk/po/ja.po
+   M /trunk/po/nl.po
+   M /trunk/po/no.po
+   M /trunk/po/pl.po
+   M /trunk/po/pt_BR.po
+   M /trunk/po/ru.po
+   M /trunk/po/sv.po
+   M /trunk/po/vlc.pot
+
+* ALL: updated the po-files
+* da.po: update to the Danish translation by Jonas Larsen and Morten Brix Pedersen
+* de.po: got some stuff in sync to the German translation of play-howto
+------------------------------------------------------------------------
+r9696 | gbazin | 2005-01-06 23:05:22 +0100 (Thu, 06 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/modules/codec/vorbis.c
+
+* modules/codec/vorbis.c: fixed tremor output.
+------------------------------------------------------------------------
+r9695 | fkuehne | 2005-01-06 20:54:24 +0100 (Thu, 06 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/modules/gui/macosx/playlist.m
+
+* fixed wrong grammar ('1 items in list')
+------------------------------------------------------------------------
+r9694 | fkuehne | 2005-01-06 18:58:07 +0100 (Thu, 06 Jan 2005) | 4 lines
+Changed paths:
+   M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
+   M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
+   M /trunk/modules/gui/macosx/controls.h
+   M /trunk/modules/gui/macosx/controls.m
+   M /trunk/modules/gui/macosx/intf.h
+   M /trunk/modules/gui/macosx/intf.m
+   M /trunk/modules/gui/macosx/open.h
+   M /trunk/modules/gui/macosx/open.m
+
+* controls.m: call openFileGeneric via VLCMain and not directly from VLCOpen
+* controls.h: removed "o_open"
+* intf.*, open.*: make sure the open-nib is loaded only once, don't load it at launch time but dynamic and do it in VLCMain, so VLCOpen does not know about it anymore
+* MainMenu.nib: we don't need instances of VLCOpen and VLCOutput anymore
+------------------------------------------------------------------------
+r9693 | titer | 2005-01-06 16:15:24 +0100 (Thu, 06 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/modules/control/http.c
+
+ control/http.c: gcc < 3 compile fix
+
+------------------------------------------------------------------------
+r9692 | gbazin | 2005-01-05 23:45:36 +0100 (Wed, 05 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/modules/access/file.c
+   M /trunk/src/misc/cpu.c
+   M /trunk/src/misc/modules.c
+
+* src/misc/modules.c,cpu.c, modules/access/file.c: WinCE fixes.
+------------------------------------------------------------------------
+r9691 | gbazin | 2005-01-05 23:42:57 +0100 (Wed, 05 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/src/input/stream.c
+
+* src/input/stream.c: decrease memory requirements for WinCE.
+------------------------------------------------------------------------
+r9690 | gbazin | 2005-01-05 23:24:30 +0100 (Wed, 05 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/toolbox
+
+* toolbox: added an evc ARMV4 target.
+------------------------------------------------------------------------
+r9689 | gbazin | 2005-01-05 23:23:13 +0100 (Wed, 05 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/evc/libvlc.vcp.in
+   M /trunk/evc/plugins.vcp.in
+   M /trunk/evc/vlc.vcp.in
+
+* evc/*: added an ARMV4 target.
+------------------------------------------------------------------------
+r9688 | gbazin | 2005-01-05 22:14:53 +0100 (Wed, 05 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/configure.ac
+
+* configure.ac: fix Dirac detection (patch by Anuradha Suraparaju).
+------------------------------------------------------------------------
+r9687 | djc | 2005-01-05 01:19:09 +0100 (Wed, 05 Jan 2005) | 8 lines
+Changed paths:
+   M /trunk/modules/control/http.c
+   A /trunk/share/http/cone_minus.png
+   A /trunk/share/http/cone_plus.png
+   M /trunk/share/http/index.html
+   M /trunk/share/http/style.css
+
+Work to support new playlist in http interface.
++ correct a bug in the <vlc id="foreach" param1="integer" /> macro
++ add a <vlc id="stack" /> to print the rpn stack in debug messages
++ add the != operator in rpn evaluation
+
+Compatibility with old pages should be respected...
+
+
+------------------------------------------------------------------------
+r9686 | fkuehne | 2005-01-04 00:01:42 +0100 (Tue, 04 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
+   M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
+   M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
+   A /trunk/extras/MacOSX/Resources/English.lproj/Open.nib
+   A /trunk/extras/MacOSX/Resources/English.lproj/Open.nib/classes.nib
+   A /trunk/extras/MacOSX/Resources/English.lproj/Open.nib/info.nib
+   A /trunk/extras/MacOSX/Resources/English.lproj/Open.nib/keyedobjects.nib
+   M /trunk/extras/MacOSX/vlc.pbproj/project.pbxproj
+   M /trunk/modules/gui/macosx/controls.m
+   M /trunk/modules/gui/macosx/intf.h
+   M /trunk/modules/gui/macosx/intf.m
+   M /trunk/modules/gui/macosx/open.h
+   M /trunk/modules/gui/macosx/open.m
+
+* seperated the open, sout and sub-open dialogues from the main nib
+------------------------------------------------------------------------
+r9685 | fkuehne | 2005-01-03 21:10:38 +0100 (Mon, 03 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/modules/gui/macosx/prefs.h
+   M /trunk/modules/gui/macosx/prefs.m
+
+* declared the shared instance properly (forgot that yesterday)
+------------------------------------------------------------------------
+r9684 | djc | 2005-01-02 23:45:36 +0100 (Sun, 02 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/src/playlist/sort.c
+
+Fix a bug when shuffling playlist with 1 item
+
+------------------------------------------------------------------------
+r9683 | fkuehne | 2005-01-02 21:01:50 +0100 (Sun, 02 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/THANKS
+   M /trunk/po/da.po
+
+* po/da.po: update to the Danish translation by Jonas Larsen and Morten Brix Pedersen
+* THANKS: added Morten Brix Pedersen
+------------------------------------------------------------------------
+r9682 | fkuehne | 2005-01-02 19:58:53 +0100 (Sun, 02 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
+   M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
+   M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
+   A /trunk/extras/MacOSX/Resources/English.lproj/Preferences.nib
+   A /trunk/extras/MacOSX/Resources/English.lproj/Preferences.nib/classes.nib
+   A /trunk/extras/MacOSX/Resources/English.lproj/Preferences.nib/info.nib
+   A /trunk/extras/MacOSX/Resources/English.lproj/Preferences.nib/keyedobjects.nib
+   M /trunk/extras/MacOSX/vlc.pbproj/project.pbxproj
+   M /trunk/modules/gui/macosx/intf.m
+   M /trunk/modules/gui/macosx/prefs.m
+
+* moved the preferences-window to a seperate nib-file
+------------------------------------------------------------------------
+r9681 | fkuehne | 2005-01-01 19:13:51 +0100 (Sat, 01 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/THANKS
+
+* give credit to Jonas Larsen for creating the Danish l10n
+* replace all "@" with " at "
+------------------------------------------------------------------------
+r9680 | fkuehne | 2005-01-01 18:54:05 +0100 (Sat, 01 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/extras/contrib/src/Makefile
+
+* build libiconv without i18n-support, so it can be compiled without gettext -- gettext will be compiled afterwards, so it can take advantage of libiconv
+------------------------------------------------------------------------
+r9679 | fkuehne | 2005-01-01 17:29:51 +0100 (Sat, 01 Jan 2005) | 1 line
+Changed paths:
+   M /trunk/extras/contrib/src/Makefile
+
+* make sure gettext is built before libiconv, since it is needed for its compilation
+------------------------------------------------------------------------
+r9678 | fkuehne | 2005-01-01 16:41:08 +0100 (Sat, 01 Jan 2005) | 2 lines
+Changed paths:
+   M /trunk/extras/contrib/src/packages.mak
+
+* use "heanet.dl.sourceforge.net" for downloading FreeType, since www.freetype.org does not respond
+* use "ftp.heanet.ie" instead of "ftp.gnu.org" as GNU mirror, since the main-server does not respond (I'll revoke this change, when the main-server is usable again)
+------------------------------------------------------------------------
+r9677 | zorglub | 2004-12-29 17:15:50 +0100 (Wed, 29 Dec 2004) | 2 lines
+Changed paths:
+   M /trunk/modules/video_output/image.c
+
+Reuse the encoder
+
+------------------------------------------------------------------------