]> git.sesse.net Git - vlc/blob - ChangeLog
GCC 3.3.3 has strong type checking
[vlc] / ChangeLog
1 ------------------------------------------------------------------------
2 r9745 | titer | 2005-01-15 04:02:57 +0100 (Sat, 15 Jan 2005) | 2 lines
3 Changed paths:
4    M /trunk/modules/video_filter/motiondetect.c
5
6  motiondetect.c: gcc < 3 compile fix
7
8 ------------------------------------------------------------------------
9 r9744 | yoann | 2005-01-15 01:42:23 +0100 (Sat, 15 Jan 2005) | 2 lines
10 Changed paths:
11    M /trunk/TODO
12    M /trunk/modules/gui/wxwindows/playlist.cpp
13
14 * modules/gui/wxwindows/playlist.cpp: when duration is not known, don't display (--:--:--)
15
16 ------------------------------------------------------------------------
17 r9743 | yoann | 2005-01-14 19:01:36 +0100 (Fri, 14 Jan 2005) | 3 lines
18 Changed paths:
19    M /trunk/modules/access/directory.c
20    M /trunk/modules/gui/ncurses.c
21
22 * modules/access/directory.c: fix a segfault when reading an empty directory
23 * modules/gui/ncurses.c: fix a segfault when playlist is empty
24
25 ------------------------------------------------------------------------
26 r9742 | yoann | 2005-01-14 17:14:01 +0100 (Fri, 14 Jan 2005) | 3 lines
27 Changed paths:
28    M /trunk/modules/gui/ncurses.c
29
30 * modules/gui/ncurses.c: support for tree playlist in ncurses interface
31   use 'v' to toggle view
32
33 ------------------------------------------------------------------------
34 r9741 | gbazin | 2005-01-14 14:15:52 +0100 (Fri, 14 Jan 2005) | 1 line
35 Changed paths:
36    M /trunk/include/codecs.h
37    M /trunk/modules/demux/wav.c
38
39 * include/codecs.h, modules/demux/wav.c: patch by Matthew Romaine to handle WAVEFORMATEXTENSIBLE files more robustly.
40 ------------------------------------------------------------------------
41 r9740 | hartman | 2005-01-14 13:11:57 +0100 (Fri, 14 Jan 2005) | 2 lines
42 Changed paths:
43    M /trunk/modules/access/http.c
44
45 * so the ogg vorbis fix broke shoutcast streams :) fixing again.... (tested with all audio streams i know off)
46
47 ------------------------------------------------------------------------
48 r9739 | djc | 2005-01-14 00:28:36 +0100 (Fri, 14 Jan 2005) | 18 lines
49 Changed paths:
50    M /trunk/configure.ac
51    M /trunk/modules/video_filter/Modules.am
52    A /trunk/modules/video_filter/motiondetect.c
53
54 Added simple motion detect filter.
55 This filter uses a description file which follows this format :
56 x1,y1,x2,y2,level,downspeed,upspeed,mrl
57 ...
58 where x1,y1,x2,y2 describe a sensible rectangle, level is the minimum difference for an active pixel, downspeed an upspeed are to integers.
59 mrl is a mrl to go when the filter has detected movement in the rectangle.
60
61 This is fun with vlm. For example, you should try to launch vlc normaly with vlm and then type :
62 new camera broadcast
63 setup camera enabled
64 setup camera input mrl to your camera
65 setup camera option filter=motiondetect,transform
66 #setup camera option transform-type=vflip
67 #indeed, I did not reach to make this working
68 control camera play
69
70 Have fun ;)
71
72 ------------------------------------------------------------------------
73 r9738 | massiot | 2005-01-13 20:03:03 +0100 (Thu, 13 Jan 2005) | 3 lines
74 Changed paths:
75    M /trunk/modules/access_output/udp.c
76
77 * modules/access_out/udp.c: Issue a warning when two PCRs are put inside a
78   single UDP frame (may disturb some decoders).
79
80 ------------------------------------------------------------------------
81 r9737 | massiot | 2005-01-13 20:02:04 +0100 (Thu, 13 Jan 2005) | 2 lines
82 Changed paths:
83    M /trunk/src/misc/threads.c
84
85 * src/misc/threads.c: thread_id is in fact an _unsigned_ int.
86
87 ------------------------------------------------------------------------
88 r9736 | massiot | 2005-01-13 20:01:22 +0100 (Thu, 13 Jan 2005) | 3 lines
89 Changed paths:
90    M /trunk/src/input/es_out.c
91
92 * src/input/es_out.c: EN 300 472 allows the PTS of teletext streams to be
93   invalid.
94
95 ------------------------------------------------------------------------
96 r9735 | zorglub | 2005-01-13 19:45:11 +0100 (Thu, 13 Jan 2005) | 16 lines
97 Changed paths:
98    M /trunk/configure.ac
99    M /trunk/modules/gui/wxwindows/playlist.cpp
100    M /trunk/modules/services_discovery/Modules.am
101    A /trunk/modules/services_discovery/daap.c
102
103 * DAAP (iTunes shares) services discovery and access module using libopendaap
104
105 http://crazney.net/programs/itunes/libopendaap.html
106
107 Problems : 
108    - At the moment, the file is downloaded entirely in memory before being
109      played.
110      The library offers another possibility : download the file on
111      demand to a pipe, but I don't think it would be a very good idea
112      (portability issues ? where to download to ?).
113      I hope a "download on demand to memory" feature will be added
114    - Sometimes, it looses connection to the peers.
115
116 * Increased wx playlist font size
117
118
119 ------------------------------------------------------------------------
120 r9734 | gbazin | 2005-01-13 12:25:58 +0100 (Thu, 13 Jan 2005) | 1 line
121 Changed paths:
122    M /trunk/src/misc/configuration.c
123
124 * src/misc/configuration.c: fix config_GetType() to handle the new CONFIG_ITEM_MODULE_foo types.
125 ------------------------------------------------------------------------
126 r9733 | gbazin | 2005-01-13 10:37:43 +0100 (Thu, 13 Jan 2005) | 1 line
127 Changed paths:
128    M /trunk/configure.ac
129    M /trunk/modules/codec/theora.c
130
131 * modules/codec/theora.c: remove the need for theora_packet_iskeyframe().
132 ------------------------------------------------------------------------
133 r9732 | hartman | 2005-01-13 00:51:02 +0100 (Thu, 13 Jan 2005) | 2 lines
134 Changed paths:
135    M /trunk/extras/contrib/src/Patches/ffmpeg.patch.cvs
136
137 * <cough> broken patch </cough>
138
139 ------------------------------------------------------------------------
140 r9731 | yoann | 2005-01-12 17:24:44 +0100 (Wed, 12 Jan 2005) | 4 lines
141 Changed paths:
142    M /trunk/modules/gui/wxwindows/interface.cpp
143    M /trunk/modules/gui/wxwindows/timer.cpp
144    M /trunk/modules/gui/wxwindows/wxwindows.h
145
146 * modules/gui/wxwindows/interface.cpp: Add new buttons for DVDs and CDs:
147   - Menu, Previous Chapter, Next Chapter for DVDs
148   - Previous Track, Next Track for CDs
149
150 ------------------------------------------------------------------------
151 r9730 | hartman | 2005-01-12 17:07:20 +0100 (Wed, 12 Jan 2005) | 2 lines
152 Changed paths:
153    M /trunk/extras/contrib/src/Patches/ffmpeg.patch.cvs
154
155 * part of patch was applied upstream. Adapt....
156
157 ------------------------------------------------------------------------
158 r9729 | gbazin | 2005-01-12 15:27:35 +0100 (Wed, 12 Jan 2005) | 1 line
159 Changed paths:
160    A /trunk/modules/gui/wince/wince.rc
161
162 * modules/gui/wince/wince.rc: forgot to commit this file with the wince interface.
163 ------------------------------------------------------------------------
164 r9728 | zorglub | 2005-01-12 10:19:10 +0100 (Wed, 12 Jan 2005) | 2 lines
165 Changed paths:
166    M /trunk/modules/gui/wxwindows/playlist.cpp
167
168 Put callbacks after rebuild, avoids deadlock in rebuild
169
170 ------------------------------------------------------------------------
171 r9727 | fkuehne | 2005-01-11 18:42:08 +0100 (Tue, 11 Jan 2005) | 1 line
172 Changed paths:
173    M /trunk/extras/contrib/src/packages.mak
174
175 * 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.
176 ------------------------------------------------------------------------
177 r9726 | zorglub | 2005-01-11 17:52:42 +0100 (Tue, 11 Jan 2005) | 3 lines
178 Changed paths:
179    M /trunk/include/vlc_input.h
180    M /trunk/modules/access/directory.c
181    A /trunk/modules/gui/wxwindows/bitmaps/type_afile.xpm
182    A /trunk/modules/gui/wxwindows/bitmaps/type_cdda.xpm
183    M /trunk/modules/gui/wxwindows/bitmaps/type_directory.xpm
184    M /trunk/modules/gui/wxwindows/bitmaps/type_disc.xpm
185    M /trunk/modules/gui/wxwindows/bitmaps/type_net.xpm
186    A /trunk/modules/gui/wxwindows/bitmaps/type_node.xpm
187    A /trunk/modules/gui/wxwindows/bitmaps/type_vfile.xpm
188    M /trunk/modules/gui/wxwindows/interface.cpp
189    M /trunk/modules/gui/wxwindows/playlist.cpp
190    M /trunk/src/playlist/item.c
191    M /trunk/src/playlist/view.c
192
193 Add some icons
194 Fix autoswitching to category view
195
196 ------------------------------------------------------------------------
197 r9725 | hartman | 2005-01-11 17:36:12 +0100 (Tue, 11 Jan 2005) | 2 lines
198 Changed paths:
199    M /trunk/extras/contrib/src/Patches/theora.patch
200    M /trunk/extras/contrib/src/packages.mak
201
202 * newer theora: alpha4 version. new location, new patch
203
204 ------------------------------------------------------------------------
205 r9724 | massiot | 2005-01-11 17:32:50 +0100 (Tue, 11 Jan 2005) | 3 lines
206 Changed paths:
207    M /trunk/modules/access/dvb/access.c
208    M /trunk/modules/access/dvb/dvb.h
209    M /trunk/modules/access/dvb/en50221.c
210    M /trunk/modules/access/dvb/linux_dvb.c
211
212 * modules/access/dvb: Fixed numerous bugs related to the CAM configuration.
213   Reconfigure the frontend if no lock is acquired in 10s.
214
215 ------------------------------------------------------------------------
216 r9723 | hartman | 2005-01-11 17:17:44 +0100 (Tue, 11 Jan 2005) | 2 lines
217 Changed paths:
218    M /trunk/modules/access/http.c
219
220 * fix ogg streams.
221
222 ------------------------------------------------------------------------
223 r9722 | andrep | 2005-01-11 17:04:09 +0100 (Tue, 11 Jan 2005) | 3 lines
224 Changed paths:
225    M /trunk/configure.ac
226
227 * configure.ac: Require libtheora 1.0alpha4
228
229
230 ------------------------------------------------------------------------
231 r9721 | andrep | 2005-01-11 14:19:20 +0100 (Tue, 11 Jan 2005) | 3 lines
232 Changed paths:
233    M /trunk/modules/codec/cmml/intf.c
234
235 * cmml/intf.c: Fix refcount leak on main interface (thanks to gibalou for help)
236
237
238 ------------------------------------------------------------------------
239 r9720 | gbazin | 2005-01-11 13:02:57 +0100 (Tue, 11 Jan 2005) | 1 line
240 Changed paths:
241    M /trunk/modules/gui/wxwindows/preferences_widgets.cpp
242
243 * modules/gui/wxwindows/preferences_widgets.cpp: added update event for IntegerListConfigControl.
244 ------------------------------------------------------------------------
245 r9719 | hartman | 2005-01-11 12:51:03 +0100 (Tue, 11 Jan 2005) | 4 lines
246 Changed paths:
247    M /trunk/modules/access/http.c
248
249 * NSV uses a different mime type for audio only streams. Force the right demuxer...
250 (we are very much approaching the point where we need a proper mimetype match table within the code)
251
252
253 ------------------------------------------------------------------------
254 r9718 | andrep | 2005-01-11 10:17:56 +0100 (Tue, 11 Jan 2005) | 4 lines
255 Changed paths:
256    M /trunk/modules/codec/theora.c
257
258 * theora.c: Eliminate display artifacts when the very first frame of the
259   stream isn't a keyframe
260
261
262 ------------------------------------------------------------------------
263 r9717 | andrep | 2005-01-11 09:58:06 +0100 (Tue, 11 Jan 2005) | 3 lines
264 Changed paths:
265    M /trunk/modules/codec/theora.c
266
267 * theora.c: Fixed weird display artifacts when seeking on Theora videos
268
269
270 ------------------------------------------------------------------------
271 r9716 | bigben | 2005-01-10 22:08:45 +0100 (Mon, 10 Jan 2005) | 5 lines
272 Changed paths:
273    M /trunk/modules/access/v4l/v4l.c
274
275 * End of the implementation of the v4l-*options
276
277 If somebody who has a v4l device could actually test that... (at least if the default values for the options make sense).
278
279
280 ------------------------------------------------------------------------
281 r9715 | fkuehne | 2005-01-10 18:37:01 +0100 (Mon, 10 Jan 2005) | 1 line
282 Changed paths:
283    M /trunk/extras/contrib/src/packages.mak
284
285 * 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)
286 ------------------------------------------------------------------------
287 r9714 | sam | 2005-01-10 12:09:35 +0100 (Mon, 10 Jan 2005) | 2 lines
288 Changed paths:
289    M /trunk/configure.ac
290
291   * configure.ac: -lfreetype requires -lm.
292
293 ------------------------------------------------------------------------
294 r9713 | bigben | 2005-01-09 23:45:24 +0100 (Sun, 09 Jan 2005) | 6 lines
295 Changed paths:
296    M /trunk/modules/access/pvr/pvr.c
297    M /trunk/modules/access/v4l/v4l.c
298
299 * v4l.c:
300         - 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
301         - Only declaration for now, options don't make anything yet
302 * pvr.c: describe height as height, not width
303
304
305 ------------------------------------------------------------------------
306 r9711 | asmax | 2005-01-09 20:46:39 +0100 (Sun, 09 Jan 2005) | 2 lines
307 Changed paths:
308    M /trunk/modules/gui/skins2/Modules.am
309    A /trunk/modules/gui/skins2/macosx
310    A /trunk/modules/gui/skins2/macosx/macosx_dragdrop.cpp
311    A /trunk/modules/gui/skins2/macosx/macosx_dragdrop.hpp
312    A /trunk/modules/gui/skins2/macosx/macosx_factory.cpp
313    A /trunk/modules/gui/skins2/macosx/macosx_factory.hpp
314    A /trunk/modules/gui/skins2/macosx/macosx_graphics.cpp
315    A /trunk/modules/gui/skins2/macosx/macosx_graphics.hpp
316    A /trunk/modules/gui/skins2/macosx/macosx_loop.cpp
317    A /trunk/modules/gui/skins2/macosx/macosx_loop.hpp
318    A /trunk/modules/gui/skins2/macosx/macosx_timer.cpp
319    A /trunk/modules/gui/skins2/macosx/macosx_timer.hpp
320    A /trunk/modules/gui/skins2/macosx/macosx_tooltip.cpp
321    A /trunk/modules/gui/skins2/macosx/macosx_tooltip.hpp
322    A /trunk/modules/gui/skins2/macosx/macosx_window.cpp
323    A /trunk/modules/gui/skins2/macosx/macosx_window.hpp
324    M /trunk/modules/gui/skins2/src/os_factory.cpp
325
326 - all: skeleton for a MacOSX port of skins2 (happy new year ;)
327
328 ------------------------------------------------------------------------
329 r9710 | asmax | 2005-01-08 18:49:22 +0100 (Sat, 08 Jan 2005) | 4 lines
330 Changed paths:
331    M /trunk/src/playlist/playlist.c
332
333 - playlist.c: avoid a segfault when playlist_ViewFind() returns NULL.
334  Anyway I guess it should not happen so there is a bug in the playlist
335  code but I have no time to understand it...
336
337 ------------------------------------------------------------------------
338 r9709 | ipkiss | 2005-01-07 22:08:25 +0100 (Fri, 07 Jan 2005) | 2 lines
339 Changed paths:
340    M /trunk/TODO
341
342  * TODO: Added little hints for the OS X port of the skins
343
344 ------------------------------------------------------------------------
345 r9708 | massiot | 2005-01-07 21:21:59 +0100 (Fri, 07 Jan 2005) | 12 lines
346 Changed paths:
347    M /trunk/configure.ac
348    M /trunk/modules/access/dvb/access.c
349    M /trunk/modules/access/dvb/dvb.h
350    M /trunk/modules/access/dvb/en50221.c
351    M /trunk/modules/access/dvb/linux_dvb.c
352    M /trunk/modules/demux/ts.c
353
354 * modules/access/dvb:
355   - Rewrote QPSK frontend tuning functions, after reading the doc - it
356     should hopefully fix the infamous "Operation not permitted" problem.
357   - Permanently monitor the frontend status, and reinit it if it crashes.
358   - New --dvb-high-voltage option for very long cables.
359   - Moved all EN 50 221-related code from ts.c to en50221.c. We no longer
360     need the --ts-capmt-sysid option because the sysid is determined
361     automatically from the CAM.
362   - Also changed the way we send the CAPMTs to the CAM, hoping to fix a bug
363     with Aston professional CAMs which all of sudden stop descrambling
364     a program after a few days.
365
366 ------------------------------------------------------------------------
367 r9707 | massiot | 2005-01-07 21:04:46 +0100 (Fri, 07 Jan 2005) | 3 lines
368 Changed paths:
369    M /trunk/include/vlc_block.h
370    M /trunk/modules/access_output/udp.c
371    M /trunk/modules/mux/mpeg/ts.c
372
373 * modules/access_output/udp.c: When using --udp-group, do not send two PCRs
374   at once. This requires the export of the PCR block_flag.
375
376 ------------------------------------------------------------------------
377 r9706 | massiot | 2005-01-07 20:57:00 +0100 (Fri, 07 Jan 2005) | 3 lines
378 Changed paths:
379    M /trunk/modules/access/udp.c
380
381 * modules/access/udp.c: When udp is invoked as 'rtp:', only consider RTP
382   packets.
383
384 ------------------------------------------------------------------------
385 r9705 | massiot | 2005-01-07 20:55:48 +0100 (Fri, 07 Jan 2005) | 2 lines
386 Changed paths:
387    M /trunk/modules/access/pvr/pvr.c
388
389 * modules/access/pvr/pvr.c: Added --pvr-caching option.
390
391 ------------------------------------------------------------------------
392 r9702 | gbazin | 2005-01-07 15:05:03 +0100 (Fri, 07 Jan 2005) | 1 line
393 Changed paths:
394    M /trunk/modules/audio_output/waveout.c
395
396 * modules/audio_output/waveout.c: increase the audio buffer size under WinCE.
397 ------------------------------------------------------------------------
398 r9701 | gbazin | 2005-01-07 10:54:01 +0100 (Fri, 07 Jan 2005) | 1 line
399 Changed paths:
400    M /trunk/include/aout_internal.h
401
402 * include/aout_internal.h: fixed old memory leak when alloca() isn't available.
403 ------------------------------------------------------------------------
404 r9700 | gbazin | 2005-01-07 01:19:43 +0100 (Fri, 07 Jan 2005) | 1 line
405 Changed paths:
406    M /trunk/evc/vlc.vcw
407
408
409 ------------------------------------------------------------------------
410 r9699 | gbazin | 2005-01-07 01:19:09 +0100 (Fri, 07 Jan 2005) | 1 line
411 Changed paths:
412    M /trunk/configure.ac
413
414 * configure.ac: added wince plugin to the build system.
415 ------------------------------------------------------------------------
416 r9698 | gbazin | 2005-01-07 00:52:00 +0100 (Fri, 07 Jan 2005) | 2 lines
417 Changed paths:
418    A /trunk/modules/gui/wince
419    A /trunk/modules/gui/wince/Modules.am
420    A /trunk/modules/gui/wince/bitmaps
421    A /trunk/modules/gui/wince/bitmaps/toolbar1.bmp
422    A /trunk/modules/gui/wince/bitmaps/toolbar2.bmp
423    A /trunk/modules/gui/wince/bitmaps/toolbar3.bmp
424    A /trunk/modules/gui/wince/bitmaps/vlc16x16.ico
425    A /trunk/modules/gui/wince/fileinfo.cpp
426    A /trunk/modules/gui/wince/interface.cpp
427    A /trunk/modules/gui/wince/iteminfo.cpp
428    A /trunk/modules/gui/wince/menus.cpp
429    A /trunk/modules/gui/wince/messages.cpp
430    A /trunk/modules/gui/wince/open.cpp
431    A /trunk/modules/gui/wince/playlist.cpp
432    A /trunk/modules/gui/wince/preferences.cpp
433    A /trunk/modules/gui/wince/preferences_widgets.cpp
434    A /trunk/modules/gui/wince/preferences_widgets.h
435    A /trunk/modules/gui/wince/subtitles.cpp
436    A /trunk/modules/gui/wince/timer.cpp
437    A /trunk/modules/gui/wince/video.cpp
438    A /trunk/modules/gui/wince/wince.cpp
439    A /trunk/modules/gui/wince/wince.h
440
441 * 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).
442
443 ------------------------------------------------------------------------
444 r9697 | fkuehne | 2005-01-07 00:40:18 +0100 (Fri, 07 Jan 2005) | 3 lines
445 Changed paths:
446    M /trunk/po/POTFILES.in
447    M /trunk/po/da.po
448    M /trunk/po/de.po
449    M /trunk/po/en_GB.po
450    M /trunk/po/es.po
451    M /trunk/po/fr.po
452    M /trunk/po/hu.po
453    M /trunk/po/it.po
454    M /trunk/po/ja.po
455    M /trunk/po/nl.po
456    M /trunk/po/no.po
457    M /trunk/po/pl.po
458    M /trunk/po/pt_BR.po
459    M /trunk/po/ru.po
460    M /trunk/po/sv.po
461    M /trunk/po/vlc.pot
462
463 * ALL: updated the po-files
464 * da.po: update to the Danish translation by Jonas Larsen and Morten Brix Pedersen
465 * de.po: got some stuff in sync to the German translation of play-howto
466 ------------------------------------------------------------------------
467 r9696 | gbazin | 2005-01-06 23:05:22 +0100 (Thu, 06 Jan 2005) | 1 line
468 Changed paths:
469    M /trunk/modules/codec/vorbis.c
470
471 * modules/codec/vorbis.c: fixed tremor output.
472 ------------------------------------------------------------------------
473 r9695 | fkuehne | 2005-01-06 20:54:24 +0100 (Thu, 06 Jan 2005) | 1 line
474 Changed paths:
475    M /trunk/modules/gui/macosx/playlist.m
476
477 * fixed wrong grammar ('1 items in list')
478 ------------------------------------------------------------------------
479 r9694 | fkuehne | 2005-01-06 18:58:07 +0100 (Thu, 06 Jan 2005) | 4 lines
480 Changed paths:
481    M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
482    M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
483    M /trunk/modules/gui/macosx/controls.h
484    M /trunk/modules/gui/macosx/controls.m
485    M /trunk/modules/gui/macosx/intf.h
486    M /trunk/modules/gui/macosx/intf.m
487    M /trunk/modules/gui/macosx/open.h
488    M /trunk/modules/gui/macosx/open.m
489
490 * controls.m: call openFileGeneric via VLCMain and not directly from VLCOpen
491 * controls.h: removed "o_open"
492 * 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
493 * MainMenu.nib: we don't need instances of VLCOpen and VLCOutput anymore
494 ------------------------------------------------------------------------
495 r9693 | titer | 2005-01-06 16:15:24 +0100 (Thu, 06 Jan 2005) | 2 lines
496 Changed paths:
497    M /trunk/modules/control/http.c
498
499  control/http.c: gcc < 3 compile fix
500
501 ------------------------------------------------------------------------
502 r9692 | gbazin | 2005-01-05 23:45:36 +0100 (Wed, 05 Jan 2005) | 1 line
503 Changed paths:
504    M /trunk/modules/access/file.c
505    M /trunk/src/misc/cpu.c
506    M /trunk/src/misc/modules.c
507
508 * src/misc/modules.c,cpu.c, modules/access/file.c: WinCE fixes.
509 ------------------------------------------------------------------------
510 r9691 | gbazin | 2005-01-05 23:42:57 +0100 (Wed, 05 Jan 2005) | 1 line
511 Changed paths:
512    M /trunk/src/input/stream.c
513
514 * src/input/stream.c: decrease memory requirements for WinCE.
515 ------------------------------------------------------------------------
516 r9690 | gbazin | 2005-01-05 23:24:30 +0100 (Wed, 05 Jan 2005) | 1 line
517 Changed paths:
518    M /trunk/toolbox
519
520 * toolbox: added an evc ARMV4 target.
521 ------------------------------------------------------------------------
522 r9689 | gbazin | 2005-01-05 23:23:13 +0100 (Wed, 05 Jan 2005) | 1 line
523 Changed paths:
524    M /trunk/evc/libvlc.vcp.in
525    M /trunk/evc/plugins.vcp.in
526    M /trunk/evc/vlc.vcp.in
527
528 * evc/*: added an ARMV4 target.
529 ------------------------------------------------------------------------
530 r9688 | gbazin | 2005-01-05 22:14:53 +0100 (Wed, 05 Jan 2005) | 1 line
531 Changed paths:
532    M /trunk/configure.ac
533
534 * configure.ac: fix Dirac detection (patch by Anuradha Suraparaju).
535 ------------------------------------------------------------------------
536 r9687 | djc | 2005-01-05 01:19:09 +0100 (Wed, 05 Jan 2005) | 8 lines
537 Changed paths:
538    M /trunk/modules/control/http.c
539    A /trunk/share/http/cone_minus.png
540    A /trunk/share/http/cone_plus.png
541    M /trunk/share/http/index.html
542    M /trunk/share/http/style.css
543
544 Work to support new playlist in http interface.
545 + correct a bug in the <vlc id="foreach" param1="integer" /> macro
546 + add a <vlc id="stack" /> to print the rpn stack in debug messages
547 + add the != operator in rpn evaluation
548
549 Compatibility with old pages should be respected...
550
551
552 ------------------------------------------------------------------------
553 r9686 | fkuehne | 2005-01-04 00:01:42 +0100 (Tue, 04 Jan 2005) | 1 line
554 Changed paths:
555    M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
556    M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
557    M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
558    A /trunk/extras/MacOSX/Resources/English.lproj/Open.nib
559    A /trunk/extras/MacOSX/Resources/English.lproj/Open.nib/classes.nib
560    A /trunk/extras/MacOSX/Resources/English.lproj/Open.nib/info.nib
561    A /trunk/extras/MacOSX/Resources/English.lproj/Open.nib/keyedobjects.nib
562    M /trunk/extras/MacOSX/vlc.pbproj/project.pbxproj
563    M /trunk/modules/gui/macosx/controls.m
564    M /trunk/modules/gui/macosx/intf.h
565    M /trunk/modules/gui/macosx/intf.m
566    M /trunk/modules/gui/macosx/open.h
567    M /trunk/modules/gui/macosx/open.m
568
569 * seperated the open, sout and sub-open dialogues from the main nib
570 ------------------------------------------------------------------------
571 r9685 | fkuehne | 2005-01-03 21:10:38 +0100 (Mon, 03 Jan 2005) | 1 line
572 Changed paths:
573    M /trunk/modules/gui/macosx/prefs.h
574    M /trunk/modules/gui/macosx/prefs.m
575
576 * declared the shared instance properly (forgot that yesterday)
577 ------------------------------------------------------------------------
578 r9684 | djc | 2005-01-02 23:45:36 +0100 (Sun, 02 Jan 2005) | 2 lines
579 Changed paths:
580    M /trunk/src/playlist/sort.c
581
582 Fix a bug when shuffling playlist with 1 item
583
584 ------------------------------------------------------------------------
585 r9683 | fkuehne | 2005-01-02 21:01:50 +0100 (Sun, 02 Jan 2005) | 2 lines
586 Changed paths:
587    M /trunk/THANKS
588    M /trunk/po/da.po
589
590 * po/da.po: update to the Danish translation by Jonas Larsen and Morten Brix Pedersen
591 * THANKS: added Morten Brix Pedersen
592 ------------------------------------------------------------------------
593 r9682 | fkuehne | 2005-01-02 19:58:53 +0100 (Sun, 02 Jan 2005) | 1 line
594 Changed paths:
595    M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
596    M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
597    M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
598    A /trunk/extras/MacOSX/Resources/English.lproj/Preferences.nib
599    A /trunk/extras/MacOSX/Resources/English.lproj/Preferences.nib/classes.nib
600    A /trunk/extras/MacOSX/Resources/English.lproj/Preferences.nib/info.nib
601    A /trunk/extras/MacOSX/Resources/English.lproj/Preferences.nib/keyedobjects.nib
602    M /trunk/extras/MacOSX/vlc.pbproj/project.pbxproj
603    M /trunk/modules/gui/macosx/intf.m
604    M /trunk/modules/gui/macosx/prefs.m
605
606 * moved the preferences-window to a seperate nib-file
607 ------------------------------------------------------------------------
608 r9681 | fkuehne | 2005-01-01 19:13:51 +0100 (Sat, 01 Jan 2005) | 2 lines
609 Changed paths:
610    M /trunk/THANKS
611
612 * give credit to Jonas Larsen for creating the Danish l10n
613 * replace all "@" with " at "
614 ------------------------------------------------------------------------
615 r9680 | fkuehne | 2005-01-01 18:54:05 +0100 (Sat, 01 Jan 2005) | 1 line
616 Changed paths:
617    M /trunk/extras/contrib/src/Makefile
618
619 * build libiconv without i18n-support, so it can be compiled without gettext -- gettext will be compiled afterwards, so it can take advantage of libiconv
620 ------------------------------------------------------------------------
621 r9679 | fkuehne | 2005-01-01 17:29:51 +0100 (Sat, 01 Jan 2005) | 1 line
622 Changed paths:
623    M /trunk/extras/contrib/src/Makefile
624
625 * make sure gettext is built before libiconv, since it is needed for its compilation
626 ------------------------------------------------------------------------
627 r9678 | fkuehne | 2005-01-01 16:41:08 +0100 (Sat, 01 Jan 2005) | 2 lines
628 Changed paths:
629    M /trunk/extras/contrib/src/packages.mak
630
631 * use "heanet.dl.sourceforge.net" for downloading FreeType, since www.freetype.org does not respond
632 * 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)
633 ------------------------------------------------------------------------
634 r9677 | zorglub | 2004-12-29 17:15:50 +0100 (Wed, 29 Dec 2004) | 2 lines
635 Changed paths:
636    M /trunk/modules/video_output/image.c
637
638 Reuse the encoder
639
640 ------------------------------------------------------------------------