* modules/codec/ffmpeg/encoder.c: compilation fix for ffmpeg 0.4.8 (not sure it's...
[vlc.git] / doc / ChangeLog-2001
blob2f8877cb03a9bcf5e54dd8a27f96c1614e093e1b
1 ------------------------------------------------------------------------
2 r533 | massiot | 2000-12-30 01:38:19 +0100 (Sat, 30 Dec 2000) | 2 lines
3 Changed paths:
4    M /trunk/src/input/input_netlist.c
6 Comments for Henri.
8 ------------------------------------------------------------------------
9 r534 | massiot | 2001-01-02 15:03:30 +0100 (Tue, 02 Jan 2001) | 2 lines
10 Changed paths:
11    M /trunk/src/video_parser/video_parser.c
13 Better display of the fps.
15 ------------------------------------------------------------------------
16 r535 | massiot | 2001-01-04 19:47:18 +0100 (Thu, 04 Jan 2001) | 4 lines
17 Changed paths:
18    M /trunk/src/audio_decoder/audio_decoder.c
19    M /trunk/src/video_output/video_output.c
21 * Fixed a deadlock (the vout unlocked a mutex locked by another thread,
22 grrrr, I'll kill someone) ;
23 * Put config.h in front of others in audio_decoder.c.
25 ------------------------------------------------------------------------
26 r537 | bozo | 2001-01-05 00:18:21 +0100 (Fri, 05 Jan 2001) | 4 lines
27 Changed paths:
28    M /trunk/plugins/sdl/intf_sdl.c
29    M /trunk/plugins/sdl/vout_sdl.c
30    M /trunk/src/video_output/video_output.c
32   - fixed pitch bug;
33   - fixed segfault, it was probably a memory corruption but I'm not sure :) ;
34   - video_output.c : compute picture size even if b_need_render == 0;
36 ------------------------------------------------------------------------
37 r538 | sam | 2001-01-05 14:57:12 +0100 (Fri, 05 Jan 2001) | 23 lines
38 Changed paths:
39    A /trunk/include/modules.h
40    A /trunk/include/modules_config.h
41    A /trunk/include/modules_inner.h
42    A /trunk/src/misc/modules.c
45  . Added files needed for the forthcoming module management.
47  Notes:
49    Plugins are now called modules, because we will be able to compile
50    them either as a dynamic plugin, or within the program. And, more
51    important, I can commit this without having to break the vlc :)
53    I tried to be as clear as possible in my comments, please tell me
54    if a few prototypes still have an unclear beahaviour.
56    Current features:
57     . none, files haven't even been added to the Makefile yet.
59    Future features:
60     . dynamic loading (done)
61     . built-in modules (still to do)
62     . automatic unloading of plugins (done)
63     . dynamic configuration (still to do)
64     . automatic choosing of the most appropriate plugin for a given
65        task (still to do but well prepared)
67 ------------------------------------------------------------------------
68 r539 | sam | 2001-01-05 15:24:06 +0100 (Fri, 05 Jan 2001) | 4 lines
69 Changed paths:
70    M /trunk/Makefile.in
71    M /trunk/configure
72    M /trunk/configure.in
73    A /trunk/plugins/null
74    A /trunk/plugins/null/null.c
77  . added the Null Module, the module that does nothing but that is going
78     to be of great help for debugging my module code.
80 ------------------------------------------------------------------------
81 r540 | sam | 2001-01-05 15:28:42 +0100 (Fri, 05 Jan 2001) | 4 lines
82 Changed paths:
83    M /trunk/include/modules.h
84    A /trunk/include/modules_core.h
85    M /trunk/src/misc/modules.c
88  . splitted modules.h into modules.h and modules_core.h to enable
89     clean compilation of the Null Module.
91 ------------------------------------------------------------------------
92 r541 | sam | 2001-01-05 15:45:47 +0100 (Fri, 05 Jan 2001) | 7 lines
93 Changed paths:
94    M /trunk/include/beos_window.h
95    M /trunk/include/config.h.in
96    M /trunk/include/int_types.h
97    M /trunk/include/keystrokes.h
98    M /trunk/include/threads.h
99    M /trunk/plugins/alsa/alsa.c
100    M /trunk/plugins/alsa/aout_alsa.c
101    M /trunk/plugins/sdl/intf_sdl.c
102    M /trunk/plugins/sdl/sdl.c
103    M /trunk/plugins/x11/vout_x11.c
104    M /trunk/src/ac3_decoder/ac3_bit_stream.h
105    M /trunk/src/ac3_decoder/ac3_decoder.h
106    M /trunk/src/ac3_decoder/ac3_decoder_thread.h
107    M /trunk/src/ac3_decoder/ac3_downmix.c
108    M /trunk/src/ac3_decoder/ac3_exponent.c
109    M /trunk/src/ac3_decoder/ac3_internal.h
110    M /trunk/src/ac3_decoder/ac3_mantissa.c
111    M /trunk/src/ac3_decoder/ac3_parse.c
112    M /trunk/src/audio_decoder/adec_bit_stream.h
113    M /trunk/src/audio_decoder/adec_generic.h
114    M /trunk/src/audio_decoder/adec_test.c
115    M /trunk/src/audio_decoder/audio_decoder.h
116    M /trunk/src/input/input.c
117    M /trunk/src/interface/interface.c
118    M /trunk/src/interface/intf_cmd.c
119    M /trunk/src/interface/main.c
122  . this is a coding style patch which removes all "foo(bar){" constructions
123    and most of the tabulations.
124  . also, fixed a bug in the default subtitle track.
125  . and made a few error messages more explicit, ie. changed "error: %s" to
126    "foo error: couldn't initialize bar (%s)"
128 ------------------------------------------------------------------------
129 r542 | sam | 2001-01-05 15:46:37 +0100 (Fri, 05 Jan 2001) | 10 lines
130 Changed paths:
131    M /trunk/plugins/sdl/vout_sdl.c
132    M /trunk/src/interface/intf_ctrl.c
133    M /trunk/src/lpcm_decoder/lpcm_decoder.h
134    M /trunk/src/lpcm_decoder/lpcm_decoder_thread.c
135    M /trunk/src/lpcm_decoder/lpcm_decoder_thread.h
136    M /trunk/src/misc/mtime.c
137    M /trunk/src/misc/netutils.c
138    M /trunk/src/misc/playlist.c
139    M /trunk/src/misc/plugins.c
140    M /trunk/src/spu_decoder/spu_decoder.c
141    M /trunk/src/video_decoder/vdec_idctmmx.S
142    M /trunk/src/video_decoder/vdec_motion.c
143    M /trunk/src/video_decoder/vdec_motion_inner.c
144    M /trunk/src/video_decoder/vdec_motion_inner_mmx.c
145    M /trunk/src/video_output/video_output.c
146    M /trunk/src/video_output/video_text.c
149 (previous commit foired)
151  . this is a coding style patch which removes all "foo(bar){" constructions
152    and most of the tabulations.
153  . also, fixed a bug in the default subtitle track.
154  . and made a few error messages more explicit, ie. changed "error: %s" to
155    "foo error: couldn't initialize bar (%s)"
156  . and removed a warning in intf_ctrl.c which isn't used anyway.
158 ------------------------------------------------------------------------
159 r543 | sam | 2001-01-05 19:06:33 +0100 (Fri, 05 Jan 2001) | 7 lines
160 Changed paths:
161    M /trunk/Makefile.in
162    M /trunk/include/main.h
163    M /trunk/include/modules.h
164    M /trunk/src/interface/interface.c
165    M /trunk/src/interface/main.c
166    M /trunk/src/misc/modules.c
167    M /trunk/src/misc/plugins.c
170  . src/misc/modules.c is in a workable state now.
172   To test it, run ./configure with the --enable-null flag, which will
173   compile the Null Module as a plugin. Watch the memory usage at the
174   launch and when the plugin is released.
176 ------------------------------------------------------------------------
177 r544 | massiot | 2001-01-05 19:46:45 +0100 (Fri, 05 Jan 2001) | 9 lines
178 Changed paths:
179    M /trunk/Makefile.in
180    M /trunk/configure
181    M /trunk/configure.in
182    M /trunk/include/common.h
183    M /trunk/include/debug.h
184    M /trunk/include/defs.h.in
185    M /trunk/include/interface.h
186    M /trunk/plugins/beos/aout_beos.cpp
187    M /trunk/plugins/beos/intf_beos.cpp
188    M /trunk/plugins/fb/intf_fb.c
189    M /trunk/plugins/ggi/intf_ggi.c
190    M /trunk/plugins/glide/intf_glide.c
191    M /trunk/plugins/gnome/intf_gnome.c
192    M /trunk/plugins/mga/intf_mga.c
193    M /trunk/plugins/sdl/intf_sdl.c
194    M /trunk/plugins/x11/intf_x11.c
195    M /trunk/plugins/x11/vout_x11.c
196    M /trunk/src/ac3_decoder/ac3_decoder_thread.c
197    M /trunk/src/audio_decoder/audio_decoder.c
198    M /trunk/src/generic_decoder/generic_decoder.c
199    M /trunk/src/input/input_netlist.c
200    M /trunk/src/input/input_ps.c
201    M /trunk/src/input/input_ts.c
202    M /trunk/src/input/mpeg_system.c
203    M /trunk/src/interface/intf_ctrl.c
204    M /trunk/src/interface/main.c
205    M /trunk/src/lpcm_decoder/lpcm_decoder_thread.c
206    M /trunk/src/misc/netutils.c
207    M /trunk/src/spu_decoder/spu_decoder.c
208    M /trunk/src/video_decoder/vdec_idct.c
209    M /trunk/src/video_decoder/vdec_motion.c
210    M /trunk/src/video_decoder/vdec_motion_inner.c
211    M /trunk/src/video_decoder/vdec_motion_inner_mmx.c
212    M /trunk/src/video_decoder/video_decoder.c
213    M /trunk/src/video_parser/video_fifo.c
214    M /trunk/src/video_parser/video_parser.c
215    M /trunk/src/video_parser/vpar_blocks.c
216    M /trunk/src/video_parser/vpar_headers.c
218 BSD port, including :
219 * --enable-sdl and some others are now --with-sdl[=name] to supply an
220 optional library name ;
221 * deleted all unnecessary #include <sys/uio.h> ;
222 * /usr/include is now searched when looking for libraries and headers.
224 It seems to compile and run on BSD. Under Linux Sam's latest commit makes
225 vlc crash on startup, so I can't really tell, but hey it compiles.
227 ------------------------------------------------------------------------
228 r545 | henri | 2001-01-06 04:16:00 +0100 (Sat, 06 Jan 2001) | 4 lines
229 Changed paths:
230    M /trunk/src/input/input_netlist.c
233 Fixed initialization of payload_start and payload_end
234 It should be finished now.
236 ------------------------------------------------------------------------
237 r546 | henri | 2001-01-06 06:44:45 +0100 (Sat, 06 Jan 2001) | 3 lines
238 Changed paths:
239    M /trunk/src/input/input_netlist.c
242 Fixed a typo than prevented from building ...
244 ------------------------------------------------------------------------
245 r547 | sam | 2001-01-06 08:23:32 +0100 (Sat, 06 Jan 2001) | 8 lines
246 Changed paths:
247    M /trunk/INSTALL
248    M /trunk/Makefile.in
249    M /trunk/configure
250    M /trunk/configure.in
251    M /trunk/include/common.h
252    M /trunk/include/defs.h.in
253    M /trunk/src/interface/intf_msg.c
254    M /trunk/src/misc/modules.c
257  . should compile & run on Solaris with ./configure --disable-dsp
258     (tested on puma)
259  . removed most SYS_SOLARIS #ifdef's in favour of more generic tests
260  . updated example ./configure line in INSTALL file
261  . now we only load modules that end with ".so"
262  . null module is compiled by default
264 ------------------------------------------------------------------------
265 r548 | benny | 2001-01-06 09:04:46 +0100 (Sat, 06 Jan 2001) | 2 lines
266 Changed paths:
267    M /trunk/Makefile.in
269 Fixed solaris libraries
271 ------------------------------------------------------------------------
272 r549 | benny | 2001-01-06 09:05:17 +0100 (Sat, 06 Jan 2001) | 2 lines
273 Changed paths:
274    M /trunk/src/misc/netutils.c
276 Fixed compilation pb under solaris 2.6
278 ------------------------------------------------------------------------
279 r550 | henri | 2001-01-07 04:56:40 +0100 (Sun, 07 Jan 2001) | 8 lines
280 Changed paths:
281    M /trunk/include/threads.h
282    M /trunk/plugins/alsa/alsa.c
283    M /trunk/plugins/alsa/aout_alsa.c
284    M /trunk/src/audio_output/audio_output.c
285    M /trunk/src/input/input.c
286    M /trunk/src/input/input_dec.c
287    M /trunk/src/input/input_netlist.c
288    M /trunk/src/input/input_programs.c
289    M /trunk/src/interface/intf_msg.c
290    M /trunk/src/misc/modules.c
291    M /trunk/src/video_output/video_output.c
292    M /trunk/src/video_parser/video_fifo.c
293    M /trunk/src/video_parser/video_parser.c
294    M /trunk/src/video_parser/vpar_headers.c
297 - Added vlc_mutex_destroy and vlc_cond_destroy function, for pthreads.
298 - Used them before quitting, every lock and cond is destroyed
299 - Checked the return value of malloc and realloc in input_programs
300 - Cosmetic changes
302 TODO: add vlc_*_destroy for beos and C_thread
304 ------------------------------------------------------------------------
305 r551 | henri | 2001-01-07 05:31:18 +0100 (Sun, 07 Jan 2001) | 5 lines
306 Changed paths:
307    M /trunk/include/threads.h
308    M /trunk/src/audio_output/audio_output.c
309    M /trunk/src/input/input.c
310    M /trunk/src/input/input_programs.c
311    M /trunk/src/misc/modules.c
312    M /trunk/src/video_output/video_output.c
313    M /trunk/src/video_parser/video_parser.c
316 - Order : if a then b are initialized, release b then a ;
317 - Typos ;
318 - Cosmetic changes.
320 ------------------------------------------------------------------------
321 r552 | benny | 2001-01-07 06:41:50 +0100 (Sun, 07 Jan 2001) | 2 lines
322 Changed paths:
323    M /trunk/src/video_output/video_output.c
325 Optimisation de BinaryLog
327 ------------------------------------------------------------------------
328 r553 | benny | 2001-01-07 07:40:29 +0100 (Sun, 07 Jan 2001) | 3 lines
329 Changed paths:
330    M /trunk/src/video_output/video_output.c
332 Hum, ouais bon ben euhh, j'avais fume, donc je repare mes conneries et je
333 vais me coucher.
335 ------------------------------------------------------------------------
336 r556 | octplane | 2001-01-07 16:58:33 +0100 (Sun, 07 Jan 2001) | 2 lines
337 Changed paths:
338    M /trunk/plugins/sdl/vout_sdl.c
340 NoSEGfault Kl?\239?\191?\189dge added.
342 ------------------------------------------------------------------------
343 r557 | sam | 2001-01-07 17:17:59 +0100 (Sun, 07 Jan 2001) | 37 lines
344 Changed paths:
345    M /trunk/Makefile.in
346    M /trunk/debian/rules
347    M /trunk/include/audio_output.h
348    M /trunk/include/modules.h
349    D /trunk/include/modules_config.h
350    M /trunk/plugins/alsa/alsa.c
351    M /trunk/plugins/alsa/aout_alsa.c
352    M /trunk/plugins/beos/aout_beos.cpp
353    M /trunk/plugins/beos/beos.cpp
354    M /trunk/plugins/dsp/aout_dsp.c
355    M /trunk/plugins/dsp/dsp.c
356    M /trunk/plugins/dummy/aout_dummy.c
357    M /trunk/plugins/dummy/dummy.c
358    M /trunk/plugins/esd/aout_esd.c
359    M /trunk/plugins/esd/esd.c
360    M /trunk/plugins/null/null.c
361    M /trunk/plugins/yuvmmx/video_yuv_asm.h
362    M /trunk/src/audio_output/audio_output.c
363    M /trunk/src/input/input_programs.c
364    M /trunk/src/misc/modules.c
366  . all plugins now compile with -fPIC.
368  . made the audio_output API a bit simpler.
370  . got rid of modules_config.h.
372  . fixed `make install' rule.
374  . fixed warnings in the MMX YUV compilation.
376  . probably fixed a bug in the input : pp_foo structures were free()d at
377    the end, but this was useless since the last call to realloc() is
378    equivalent to free(), and two consecutive calls to free() aren't a
379    goo idea.
381  . we check that the version number match and that we don't already have
382    a module by that name when loading a new module.
384  . all public module_* functions now properly lock the module bank.
386  . the audio_output now uses the new module API ; EsounD and DSP modules
387    have been ported, which should be enough for Henri to port the ALSA one.
390    The new plugin API is now much simpler ; it's now just a matter of
391 calling module_Need( p_main->p_module_bank, MODULE_CAPABILITY_FOO, p_data );
392 and if successful we get the best module. Capabilities can be ORed, so that
393 one can ask for a plugin that does VOUT _and_ INTF actions for instance.
395    It's not complete yet though -- by making it generic I had to do a few
396 ugly casts here and there, which I am going to fix ASAP. Also, command line
397 selection of a plugin does not work yet.
399    The switch to the new plugin API has probably broken the BeOS audio
400 output ; we can either wait until the whole vlc has switched to the new
401 plugins, or create a separate beos_sound.so that conforms to the new API.
403 ------------------------------------------------------------------------
404 r558 | sam | 2001-01-07 18:07:02 +0100 (Sun, 07 Jan 2001) | 4 lines
405 Changed paths:
406    M /trunk/Makefile.in
407    M /trunk/debian/.cvsignore
408    A /trunk/lib
409    A /trunk/lib/.cvsignore
411  . added a .cvsignore file in lib/ so that the directory doesn't get
412    removed whenever one does a cvs update -dP
413  . fixed debian/.cvsignore because of a new version of debhelper
415 ------------------------------------------------------------------------
416 r559 | bozo | 2001-01-08 02:07:21 +0100 (Mon, 08 Jan 2001) | 2 lines
417 Changed paths:
418    M /trunk/plugins/sdl/intf_sdl.c
419    M /trunk/plugins/sdl/vout_sdl.c
421   - cleaning of SDL Lock/Unlock Surface.
423 ------------------------------------------------------------------------
424 r560 | sam | 2001-01-08 19:16:33 +0100 (Mon, 08 Jan 2001) | 13 lines
425 Changed paths:
426    M /trunk/src/input/input_programs.c
427    M /trunk/src/input/mpeg_system.c
428    M /trunk/src/interface/interface.c
429    M /trunk/src/interface/intf_msg.c
430    M /trunk/src/video_output/video_output.c
433  . Added a missing mutex_unlock in video_output.c
434  . Moved a mutex_destroy after the thread cancellation to prevent
435    possible problems
436  . Added a missing #ifdef in intf_msg.c which prevented compilation
437    with --enable-debug
438  . Fixed a bug in the input that prevented to quit properly in certain
439    cases (some ES were not deleted because their index was skipped when
440    the former one was deleted, well Meuuh should know what I mean)
442   There is still a segfault when quitting, most presumably in the
443  audio output. I couldn't find what causes it yet.
445 ------------------------------------------------------------------------
446 r561 | bozo | 2001-01-08 23:42:50 +0100 (Mon, 08 Jan 2001) | 6 lines
447 Changed paths:
448    M /trunk/plugins/sdl/intf_sdl.c
449    M /trunk/plugins/sdl/vout_sdl.c
451   - fixed colors' bug (TODO: write a function in vout that recalculate colors
452     from RGB masks);
453   - cleaning of the fullscreen switch, still sucks but the surface is not
454     reallocated and that's good (thanks to the magic function
455     SDL_WM_ToggleFullScreen provided by sdl library :).
457 ------------------------------------------------------------------------
458 r562 | bozo | 2001-01-08 23:56:06 +0100 (Mon, 08 Jan 2001) | 2 lines
459 Changed paths:
460    M /trunk/plugins/sdl/vout_sdl.c
462   - maybe found the fullscreen bug, please test :)
464 ------------------------------------------------------------------------
465 r563 | sam | 2001-01-09 22:03:47 +0100 (Tue, 09 Jan 2001) | 5 lines
466 Changed paths:
467    M /trunk/configure
468    M /trunk/configure.in
469    M /trunk/include/audio_output.h
470    M /trunk/include/common.h
471    M /trunk/include/defs.h.in
472    M /trunk/include/input_ext-dec.h
475  . fixed a warning under FreeBSD (dlerror() is a const char*, not a char*).
476  . made configure script look for the bswap assembly instruction (using
477    AC_TRY_COMPILE makes sure the compiler will really accept it).
479 ------------------------------------------------------------------------
480 r564 | octplane | 2001-01-09 23:30:26 +0100 (Tue, 09 Jan 2001) | 3 lines
481 Changed paths:
482    M /trunk/plugins/sdl/sdl.c
483    M /trunk/plugins/sdl/vout_sdl.c
485 .Added 8bits palette SDL support.
486 .Tried to add it to stable, failed, probably because of the initialisation codes which are differents...
488 ------------------------------------------------------------------------
489 r565 | sam | 2001-01-10 00:29:15 +0100 (Wed, 10 Jan 2001) | 3 lines
490 Changed paths:
491    M /trunk/plugins/sdl/vout_sdl.c
494  . just removed a forgotten debug message in the setpalette code
496 ------------------------------------------------------------------------
497 r566 | sam | 2001-01-10 03:33:59 +0100 (Wed, 10 Jan 2001) | 10 lines
498 Changed paths:
499    M /trunk/Makefile.in
500    M /trunk/include/modules.h
501    M /trunk/include/modules_core.h
502    M /trunk/include/modules_inner.h
503    M /trunk/plugins/dsp/aout_dsp.c
504    M /trunk/plugins/dsp/dsp.c
505    M /trunk/plugins/esd/aout_esd.c
506    M /trunk/plugins/esd/esd.c
507    M /trunk/plugins/null/null.c
508    M /trunk/src/misc/modules.c
509    M /trunk/src/misc/plugins.c
512  . complete commenting of modules_core.h and small modifications
513  . separated MODULE_CONFIG_START and ADD_WINDOW (Henri, beware)
514  . fixed a very, very old bug that caused namespace collision between
515    plugins (Henri, beware: call your aout_getplugin function like this,
516    not alsa_aout_getplugin)
517  . removed the Debian specific clean rules from the Makefile, since they
518    are already handled by the debian/rules script.
519  . tidied a few compilation rules (-lfoo should always be at the end)
521 ------------------------------------------------------------------------
522 r567 | massiot | 2001-01-10 17:24:11 +0100 (Wed, 10 Jan 2001) | 4 lines
523 Changed paths:
524    M /trunk/Makefile.in
525    M /trunk/include/input_ext-dec.h
526    M /trunk/src/input/input_ext-dec.c
527    M /trunk/src/input/input_ps.c
529 * Placed a callback to the decoder in the bitstream structure ;
530 * Fixed a purify bug in input_ps.c ;
531 * Added -mcpu=pentiumpro in the Makefile.
533 ------------------------------------------------------------------------
534 r568 | massiot | 2001-01-10 20:22:11 +0100 (Wed, 10 Jan 2001) | 5 lines
535 Changed paths:
536    M /trunk/include/input_ext-dec.h
537    M /trunk/src/input/input.h
538    M /trunk/src/input/input_dec.c
539    D /trunk/src/input/input_dec.h
540    M /trunk/src/input/input_ext-dec.c
541    M /trunk/src/input/input_programs.c
542    M /trunk/src/input/input_ps.c
543    M /trunk/src/input/mpeg_system.c
544    M /trunk/src/input/mpeg_system.h
545    M /trunk/src/video_decoder/video_parser.h
546    M /trunk/src/video_parser/video_parser.c
547    M /trunk/src/video_parser/vpar_synchro.c
549 * Changed code for handling b_die in bitstream ;
550 * Move input_ext-dec.h to input.h ;
551 * New input_NullPacket function ;
552 * Fixed init bugs in input and vpar ;
554 ------------------------------------------------------------------------
555 r569 | sam | 2001-01-10 20:48:26 +0100 (Wed, 10 Jan 2001) | 4 lines
556 Changed paths:
557    M /trunk/src/video_parser/vpar_synchro.c
560  . fixed a missing #ifdef STATS
561     *grin*
563 ------------------------------------------------------------------------
564 r570 | sam | 2001-01-11 16:35:35 +0100 (Thu, 11 Jan 2001) | 9 lines
565 Changed paths:
566    M /trunk/include/common.h
567    M /trunk/include/input_ext-dec.h
570  . moved swab32 from input_ext-dec.h to common.h. We probably won't need
571    it anymore really soon, since ntohl() and htonl() seem to be properly
572    optimized when gcc is passed the right optimization flags.
574  . fixed GetBits32 and RemoveBits32. I know the #ifdefs are useless since
575    we only support u32 words, but it's a safe reminder. Comments appreciated
576    on this fix since I may have b0rked something -- it runs well here though.
578 ------------------------------------------------------------------------
579 r571 | sam | 2001-01-11 18:44:48 +0100 (Thu, 11 Jan 2001) | 12 lines
580 Changed paths:
581    M /trunk/include/audio_output.h
582    D /trunk/src/audio_decoder/adec_bit_stream.h
583    M /trunk/src/audio_decoder/adec_generic.c
584    M /trunk/src/audio_decoder/adec_generic.h
585    M /trunk/src/audio_decoder/adec_layer1.c
586    M /trunk/src/audio_decoder/adec_layer1.h
587    M /trunk/src/audio_decoder/adec_layer2.c
588    M /trunk/src/audio_decoder/adec_layer2.h
589    M /trunk/src/audio_decoder/adec_math.c
590    M /trunk/src/audio_decoder/adec_test.c
591    M /trunk/src/audio_decoder/audio_decoder.c
592    M /trunk/src/audio_decoder/audio_decoder.h
593    M /trunk/src/spu_decoder/spu_decoder.c
594    M /trunk/src/spu_decoder/spu_decoder.h
597   . moved the MPEG audio decoder to the new bitstream
599     I wasn't sure whether the bits counting method was effective to
600   skip ancillary data at the end of a frame, but I kept it for
601   safety. There is still a lot to optimize in the bit counting, like
602   unrolling the first iteration of some loops, but I don't know if
603   it would be worth it. The other solution would have been to look for
604   a startcode after eache frame, without caring about the ancillary bits.
606   . cleaning in the SPU decoder.
608 ------------------------------------------------------------------------
609 r572 | massiot | 2001-01-12 12:36:49 +0100 (Fri, 12 Jan 2001) | 2 lines
610 Changed paths:
611    M /trunk/include/input_ext-dec.h
613 * Fixed 32 bits bitstream bugs.
615 ------------------------------------------------------------------------
616 r573 | henri | 2001-01-12 13:48:24 +0100 (Fri, 12 Jan 2001) | 9 lines
617 Changed paths:
618    M /trunk/Makefile.in
619    M /trunk/plugins/alsa/alsa.c
620    M /trunk/plugins/alsa/aout_alsa.c
623 Done :
624 - ported the alsa plugin to the news vlc module API
625 - cosmetic changes
627 To do :
628 - check if it works with the latest alsa release
629 - add features ... prepare for 4 or more speakers
631 ------------------------------------------------------------------------
632 r574 | sam | 2001-01-12 14:15:42 +0100 (Fri, 12 Jan 2001) | 3 lines
633 Changed paths:
634    M /trunk/plugins/beos/aout_beos.cpp
635    M /trunk/plugins/beos/beos.cpp
636    M /trunk/plugins/dsp/aout_dsp.c
638   . Attempt to port the BeOS audio plugin to the new module API. Will
639     probably need a few fixes to work or even compile.
641 ------------------------------------------------------------------------
642 r575 | sam | 2001-01-12 15:49:55 +0100 (Fri, 12 Jan 2001) | 3 lines
643 Changed paths:
644    M /trunk/src/input/input_dec.c
645    M /trunk/src/input/input_programs.c
647  . destroy fifo mutex and cond variables _after_ they are used for
648    the last time. henri, that'll be one binouze.
650 ------------------------------------------------------------------------
651 r576 | massiot | 2001-01-12 18:33:18 +0100 (Fri, 12 Jan 2001) | 13 lines
652 Changed paths:
653    M /trunk/include/config.h.in
654    M /trunk/include/input_ext-dec.h
655    M /trunk/src/input/input_dec.c
656    M /trunk/src/input/input_programs.c
657    M /trunk/src/spu_decoder/spu_decoder.c
658    M /trunk/src/video_parser/video_parser.c
660 * Changed default values :
661 INPUT_PTS_DELAY down to 200 ms ;
662 video heap down from 10 to 5 pictures ;
663 decoder fifo size from 1023 to 511 PES ;
664 * Fixed various bugs in 32 bit-versions of input_ext-dec.h ;
665 * Fixed a bug in GetChunk() ;
666 * Renamed GetByte, GetWord, ShowWord to _GetByte, _GetWord, _ShowWord ;
667 * Moved decoder_fifo-specific code from programs.c to dec.c ;
668 * Fixed bugs in program.c that prevented vlc to close all decoders ;
669 * Gave sam a lesson for the use of the bitstream in spu_decoder.c :ppp ;
670 * Made the video parser unlock the reference pictures before quitting
671 (still one left, yaknow why ?)
673 ------------------------------------------------------------------------
674 r577 | sam | 2001-01-13 13:57:21 +0100 (Sat, 13 Jan 2001) | 16 lines
675 Changed paths:
676    M /trunk/Makefile.in
677    M /trunk/configure
678    M /trunk/configure.in
679    M /trunk/include/audio_output.h
680    M /trunk/include/common.h
681    M /trunk/include/input_ext-dec.h
682    M /trunk/include/modules.h
683    A /trunk/include/video_decoder.h
684    M /trunk/plugins/alsa/aout_alsa.c
685    M /trunk/plugins/beos/aout_beos.cpp
686    M /trunk/plugins/dsp/aout_dsp.c
687    M /trunk/plugins/dummy/aout_dummy.c
688    M /trunk/plugins/dummy/dummy.c
689    M /trunk/plugins/esd/aout_esd.c
690    A /trunk/plugins/idct
691    A /trunk/plugins/idct/idct.c
692    A /trunk/plugins/idct/idct.h
693    A /trunk/plugins/idct/idct_common.c
694    A /trunk/plugins/idct/idctclassic.c
695    A /trunk/plugins/idct/idctmmx.c
696    A /trunk/plugins/idct/idctmmx_asm.S
697    M /trunk/src/audio_output/audio_output.c
698    M /trunk/src/misc/modules.c
699    D /trunk/src/video_decoder/vdec_idct.c
700    D /trunk/src/video_decoder/vdec_idct.h
701    D /trunk/src/video_decoder/vdec_idctmmx.S
702    D /trunk/src/video_decoder/video_decoder.h
703    M /trunk/src/video_decoder/video_parser.h
704    M /trunk/src/video_parser/video_fifo.c
705    M /trunk/src/video_parser/video_parser.c
706    M /trunk/src/video_parser/vpar_blocks.c
707    M /trunk/src/video_parser/vpar_headers.c
708    M /trunk/src/video_parser/vpar_synchro.c
711  . the IDCT functions are now located in modules : the classic IDCT,
712    our optimized IDCT, and MMX IDCT.
713  . cosmetic changes for modules (pf_* instead of p_*)
714  . fixes to the BeOS and dummy modules
716    WARNING: a new directory has been added, which means you have to
717    use `cvs update -dP' to update ; files have been removed , which means
718    you either have to run `make distclean' or remove the .deps directory,
719    and the configure script has changed, which means you have to run it
720    again. Don't complain before having checked this :)
722    Note about the IDCT modules: there is no way to choose the one we
723    use, but you may remove the module in lib/ to prevent it from being
724    loaded. The preference order is : MMX, Optimized, Classic.
726 ------------------------------------------------------------------------
727 r578 | sam | 2001-01-13 13:57:47 +0100 (Sat, 13 Jan 2001) | 3 lines
728 Changed paths:
729    A /trunk/src/video_decoder/vdec_idct.h
732  . second part of the commit
734 ------------------------------------------------------------------------
735 r579 | stef | 2001-01-14 08:08:00 +0100 (Sun, 14 Jan 2001) | 4 lines
736 Changed paths:
737    M /trunk/Makefile.in
738    M /trunk/include/config.h.in
739    M /trunk/include/input_ext-intf.h
740    M /trunk/include/main.h
741    A /trunk/src/input/dvd_ifo.c
742    A /trunk/src/input/dvd_ifo.h
743    M /trunk/src/input/input.c
744    A /trunk/src/input/input_dvd.c
745    A /trunk/src/input/input_dvd.h
746    M /trunk/src/interface/interface.c
747    M /trunk/src/interface/main.c
749 . Beginning of dvd_input.
750 . Parsing of ifo file almost completed.
751 . Still does not work well.
753 ------------------------------------------------------------------------
754 r580 | stef | 2001-01-15 04:26:56 +0100 (Mon, 15 Jan 2001) | 14 lines
755 Changed paths:
756    M /trunk/src/input/dvd_ifo.c
757    M /trunk/src/input/dvd_ifo.h
758    M /trunk/src/input/input_dvd.c
760 . Correction of bugs in ifo parsing. Now the structures should be well
761 initialized. It remains some segfaults but it globally works.
762 . DVD mode is enabled with option --dvd. For the moment, it only read
763 the first vts and find the movie if it is at the beginning of the title
764 set.
766 Coming soon:
767 . udf filesystem management to access over 2Gb zones.
768 . detection of the offset to the movie inside a vts when it is not at
769 the beginning.
771 Is there a chance that using fopen/fseek function instead of open/lseek
772 system calls solve the 2Gb issue ?
774 ------------------------------------------------------------------------
775 r581 | sam | 2001-01-15 07:18:23 +0100 (Mon, 15 Jan 2001) | 19 lines
776 Changed paths:
777    M /trunk/Makefile.in
778    M /trunk/include/modules.h
779    M /trunk/plugins/beos/vout_beos.cpp
780    M /trunk/plugins/fb/vout_fb.c
781    M /trunk/plugins/gnome/intf_gnome.c
782    M /trunk/plugins/gnome/vout_gnome.c
783    M /trunk/plugins/idct/idct.c
784    M /trunk/plugins/idct/idct_common.c
785    M /trunk/plugins/idct/idctclassic.c
786    M /trunk/plugins/idct/idctmmx.c
787    M /trunk/plugins/mga/intf_mga.c
788    M /trunk/plugins/mga/vout_mga.c
789    M /trunk/plugins/sdl/intf_sdl.c
790    M /trunk/plugins/sdl/vout_sdl.c
791    M /trunk/plugins/x11/intf_x11.c
792    M /trunk/plugins/x11/vout_x11.c
793    M /trunk/src/input/input.c
794    M /trunk/src/input/input.h
795    M /trunk/src/input/input_dec.c
796    M /trunk/src/interface/interface.c
797    M /trunk/src/interface/main.c
798    M /trunk/src/misc/modules.c
799    M /trunk/src/misc/playlist.c
800    M /trunk/src/misc/plugins.c
801    M /trunk/src/video_output/video_output.c
804  . fixed the bug-that-made-the-vlc-segfault-on-exit, which means that
805    more than ever, ?\239?\191?\189 le client ne segfaulte pas ?\239?\191?\189.
807  . there was still a problem upon quitting: sometimes the null packet
808    wasn't big enough to reach a decoder breakpoint, so I now create 10
809    of them (since I can't make it bigger) to be sure. Meuuh, what do
810    you think ?
812  . fixed the Makefile to spare a few variables here and there.
814  . reduced module hide delay, removed loading of the audio output
815    plugins since they are now modules.
817  . changed a few intf_Msg to intf_DbgMsg, and added "vout:", "intf:",
818    and so on in a few other messages.
820  . removed unused includes in the idct modules.
822 ------------------------------------------------------------------------
823 r582 | sam | 2001-01-15 07:56:30 +0100 (Mon, 15 Jan 2001) | 2 lines
824 Changed paths:
825    M /trunk/src/input/input.h
827  . correction d'un poliotage de copier-coller
829 ------------------------------------------------------------------------
830 r583 | sam | 2001-01-15 09:07:31 +0100 (Mon, 15 Jan 2001) | 3 lines
831 Changed paths:
832    M /trunk/src/input/input.h
835    OK, so I foired input.h once again. But this one works. For real.
837 ------------------------------------------------------------------------
838 r584 | reno | 2001-01-15 13:42:58 +0100 (Mon, 15 Jan 2001) | 3 lines
839 Changed paths:
840    M /trunk/plugins/sdl/intf_sdl.c
841    M /trunk/plugins/sdl/vout_sdl.c
843 * Fixed close button support in SDL
844 * Fixed --width and --height support in SDL
846 ------------------------------------------------------------------------
847 r585 | massiot | 2001-01-15 14:25:09 +0100 (Mon, 15 Jan 2001) | 2 lines
848 Changed paths:
849    M /trunk/src/video_decoder/video_parser.h
850    M /trunk/src/video_decoder/vpar_headers.h
851    M /trunk/src/video_parser/video_parser.c
852    M /trunk/src/video_parser/vpar_synchro.c
854 * Implemented video_parser bitstream callback for PTS/DTS.
856 ------------------------------------------------------------------------
857 r586 | massiot | 2001-01-15 19:02:49 +0100 (Mon, 15 Jan 2001) | 2 lines
858 Changed paths:
859    M /trunk/src/video_decoder/vpar_headers.h
860    M /trunk/src/video_decoder/vpar_synchro.h
861    M /trunk/src/video_parser/vpar_headers.c
862    M /trunk/src/video_parser/vpar_synchro.c
864 * Finally fixed repeat_first_field and co. (pas encore tout compris...)
866 ------------------------------------------------------------------------
867 r587 | massiot | 2001-01-15 20:54:34 +0100 (Mon, 15 Jan 2001) | 4 lines
868 Changed paths:
869    M /trunk/src/video_decoder/vpar_synchro.h
870    M /trunk/src/video_parser/vpar_headers.c
871    M /trunk/src/video_parser/vpar_synchro.c
873 * Fixed a bug in the frame rate handling ;
874 * Fixed a bug in the DTS/PTS ordering.
875 Our pts are _at last_ accurate.
877 ------------------------------------------------------------------------
878 r588 | sam | 2001-01-16 03:16:38 +0100 (Tue, 16 Jan 2001) | 14 lines
879 Changed paths:
880    M /trunk/Makefile.in
881    M /trunk/include/modules.h
882    M /trunk/include/tests.h
883    M /trunk/include/video_output.h
884    M /trunk/plugins/alsa/alsa.c
885    M /trunk/plugins/dsp/dsp.c
886    M /trunk/plugins/esd/esd.c
887    M /trunk/plugins/idct/idct.c
888    M /trunk/plugins/idct/idctclassic.c
889    M /trunk/plugins/idct/idctmmx.c
890    M /trunk/plugins/null/null.c
891    A /trunk/plugins/yuv/transforms_common.h
892    A /trunk/plugins/yuv/transforms_yuv.c
893    A /trunk/plugins/yuv/transforms_yuv.h
894    A /trunk/plugins/yuv/transforms_yuvmmx.c
895    A /trunk/plugins/yuv/transforms_yuvmmx.h
896    A /trunk/plugins/yuv/video_common.h
897    M /trunk/plugins/yuv/video_yuv.c
898    D /trunk/plugins/yuv/video_yuv.h
899    D /trunk/plugins/yuv/video_yuv15.c
900    D /trunk/plugins/yuv/video_yuv16.c
901    D /trunk/plugins/yuv/video_yuv24.c
902    D /trunk/plugins/yuv/video_yuv32.c
903    D /trunk/plugins/yuv/video_yuv8.c
904    D /trunk/plugins/yuv/video_yuv_macros.h
905    D /trunk/plugins/yuv/video_yuv_macros_8bpp.h
906    A /trunk/plugins/yuv/video_yuvmmx.c
907    M /trunk/plugins/yuv/yuv.c
908    A /trunk/plugins/yuv/yuvmmx.c
909    D /trunk/plugins/yuvmmx
910    M /trunk/src/interface/main.c
911    M /trunk/src/misc/modules.c
912    M /trunk/src/misc/plugins.c
913    M /trunk/src/misc/tests.c
914    M /trunk/src/video_output/video_yuv.c
916  . merged the YUV plugins in the same directory to avoid too much code
917    duplication
918  . YUV transformations now use the new module API ; now only the vout
919    and interface still depend on the old plugin API
920  . changed TestMMX to TestCPU because we will be able to test for other
921    specific extensions (3DNow, SSE) for the forthcoming IDCT we'll
922    borrow to mpeg2dec (as usual :P)
923  . don't show "hiding module" messages anymore except in debug mode
924  . swapped C IDCT and Classic IDCT scores since the classic one seems
925    to be faster ; anyway you should use the MMX one
926  . fixed a Makefile bug under BeOS
927  . tried to fix the cpuid code so that it compiles under BeOS (Polux, can
928    you test it when you have time ?)
930 ------------------------------------------------------------------------
931 r589 | stef | 2001-01-16 05:41:20 +0100 (Tue, 16 Jan 2001) | 11 lines
932 Changed paths:
933    M /trunk/src/input/dvd_ifo.c
934    M /trunk/src/input/dvd_ifo.h
935    M /trunk/src/input/input.c
936    M /trunk/src/input/input_dvd.c
938 . Now use of 64 bits offsets to parse the whole DVD. So we have all the
939 available information
940 . Fixed a bug in parsing of VTS attributes
941 . Fixed a bug in input.c that made input plugin initialize even though
942 no stream is reachable (thanks Sam)
944 I hope I'll be able to get the position of the movie soon.
946 Meuuh : the seek function of the plugin now take off_t as argument which
947 could be a problem later. Maybe it should take off64_t or time argument.
949 ------------------------------------------------------------------------
950 r590 | sam | 2001-01-16 06:04:25 +0100 (Tue, 16 Jan 2001) | 24 lines
951 Changed paths:
952    M /trunk/debian/vlc.1
953    M /trunk/include/config.h.in
954    M /trunk/plugins/alsa/aout_alsa.c
955    M /trunk/plugins/dsp/aout_dsp.c
956    M /trunk/plugins/dummy/aout_dummy.c
957    M /trunk/plugins/esd/aout_esd.c
958    M /trunk/plugins/idct/idct.c
959    M /trunk/plugins/idct/idctclassic.c
960    M /trunk/plugins/idct/idctmmx.c
961    M /trunk/plugins/yuv/transforms_yuv.c
962    M /trunk/plugins/yuv/transforms_yuvmmx.c
963    M /trunk/plugins/yuv/video_yuv.c
964    M /trunk/plugins/yuv/video_yuvmmx.c
965    M /trunk/src/input/input.c
966    M /trunk/src/interface/main.c
969  [ include/config.h.in has changed, don't forget tu run ./configure ]
971  . fixed the --aout, --idct and --yuv flags
972  . updated manpage and --(long)help output to reflect that change
973  . removed a few unneeded #includes here and there
974  . cosmetic changes in error messages in input.c
976    Currently available flags are now :
978      --aout dummy
979             esd
980             dsp
981             alsa
983      --idct idct
984             idctclassic
985             idctmmx
987      --yuv yuv
988            yuvmmx
990   --vout works like before, but still uses the old plugin system for now.
992 ------------------------------------------------------------------------
993 r591 | sam | 2001-01-16 14:26:46 +0100 (Tue, 16 Jan 2001) | 3 lines
994 Changed paths:
995    M /trunk/Makefile.in
996    M /trunk/configure
997    M /trunk/configure.in
998    A /trunk/plugins/idct/idct_mmxext.c
999    A /trunk/plugins/idct/idctmmxext.c
1001  . added files for the SSE (MMX on steroids) IDCT. Meuuh, you should just
1002    need to touch plugins/idct/idct_mmxext.c (ok, the filenames suck).
1004 ------------------------------------------------------------------------
1005 r592 | massiot | 2001-01-16 14:27:14 +0100 (Tue, 16 Jan 2001) | 2 lines
1006 Changed paths:
1007    M /trunk/src/video_decoder/vpar_synchro.h
1008    M /trunk/src/video_parser/vpar_synchro.c
1010 * Change for the forthcoming fast forward and slow motion support.
1012 ------------------------------------------------------------------------
1013 r593 | sam | 2001-01-16 15:05:38 +0100 (Tue, 16 Jan 2001) | 4 lines
1014 Changed paths:
1015    M /trunk/plugins/idct/idctmmxext.c
1018  . add check for MMX EXT extensions, which doesn't work, which is a good
1019    thing since there is no MMX EXT IDCT yet :)
1021 ------------------------------------------------------------------------
1022 r594 | sam | 2001-01-16 17:09:52 +0100 (Tue, 16 Jan 2001) | 6 lines
1023 Changed paths:
1024    M /trunk/include/main.h
1025    M /trunk/include/tests.h
1026    M /trunk/plugins/idct/idctmmx.c
1027    M /trunk/plugins/idct/idctmmxext.c
1028    M /trunk/plugins/yuv/video_yuvmmx.c
1029    M /trunk/src/interface/main.c
1030    M /trunk/src/misc/tests.c
1032  . a few changes in the CPU extensions detection code, borrowed from the
1033    kernel and from mpeg2dec. I still don't know how to detect if code
1034    compiled with -mcpu=pentiumpro will run, since the cpuid arcanes are
1035    quite obtuse to me. Perhaps we should also have a way not to load modules
1036    if they have been compiled with a different CPU to avoid segfaults.
1038 ------------------------------------------------------------------------
1039 r595 | massiot | 2001-01-16 18:59:23 +0100 (Tue, 16 Jan 2001) | 5 lines
1040 Changed paths:
1041    A /trunk/include/attributes.h
1042    M /trunk/include/mmx.h
1043    M /trunk/src/video_decoder/vdec_motion_inner_mmx.c
1044    A /trunk/src/video_decoder/vdec_motion_inner_mmxext.c
1045    M /trunk/src/video_parser/vpar_headers.c
1046    M /trunk/src/video_parser/vpar_synchro.c
1048 * Borrowed livid's latest libmmx and MMXEXT MC. Not in the Makefile => to
1049 test it, replace vdec_motion_inner_mmx.c by vdec_motion_inner_mmxext.c.
1051 I'm interested in performance feedback.
1053 ------------------------------------------------------------------------
1054 r596 | massiot | 2001-01-16 19:06:01 +0100 (Tue, 16 Jan 2001) | 3 lines
1055 Changed paths:
1056    M /trunk/configure
1057    M /trunk/configure.in
1058    M /trunk/src/video_parser/vpar_headers.c
1059    M /trunk/src/video_parser/vpar_synchro.c
1061 * Reverted something that wasn't supposed to go into the cvs :p
1062 * Removed -fargument-noalias-global which causes problems with as (???).
1064 ------------------------------------------------------------------------
1065 r597 | octplane | 2001-01-16 19:35:54 +0100 (Tue, 16 Jan 2001) | 6 lines
1066 Changed paths:
1067    M /trunk/Makefile.in
1068    A /trunk/plugins/sdl/aout_sdl.c
1069    M /trunk/plugins/sdl/sdl.c
1070    D /trunk/plugins/sdl/video_yuv.c
1071    D /trunk/plugins/sdl/video_yuv.h
1072    D /trunk/plugins/sdl/video_yuv_macros.h
1073    D /trunk/plugins/sdl/video_yuvall.c
1075 - Added SDL sound support. Sounds a bit laggy sometimes but my streams are ill.
1076   please try.
1077 - modified configure.in and all that stuff. Re-run configure
1078 - SDL audio, video and interface are all part of the same .so now.
1079 - remove YUV old files :->
1081 ------------------------------------------------------------------------
1082 r598 | octplane | 2001-01-16 22:00:20 +0100 (Tue, 16 Jan 2001) | 3 lines
1083 Changed paths:
1084    M /trunk/plugins/alsa/aout_alsa.c
1085    M /trunk/plugins/sdl/aout_sdl.c
1087 - minor cosmetic changes :P
1088 - modified alsa and sdl default level to 50.
1090 ------------------------------------------------------------------------
1091 r599 | sam | 2001-01-16 22:13:02 +0100 (Tue, 16 Jan 2001) | 3 lines
1092 Changed paths:
1093    M /trunk/plugins/sdl/aout_sdl.c
1096  . --aout sdl now works
1098 ------------------------------------------------------------------------
1099 r600 | octplane | 2001-01-16 22:26:43 +0100 (Tue, 16 Jan 2001) | 2 lines
1100 Changed paths:
1101    M /trunk/plugins/sdl/aout_sdl.c
1103 - small tweak in the copy handling, reduce CPU usage.
1105 ------------------------------------------------------------------------
1106 r601 | stef | 2001-01-17 01:52:22 +0100 (Wed, 17 Jan 2001) | 2 lines
1107 Changed paths:
1108    M /trunk/src/input/dvd_ifo.c
1109    M /trunk/src/input/dvd_ifo.h
1111 * Minor changes
1113 ------------------------------------------------------------------------
1114 r602 | sam | 2001-01-17 18:25:13 +0100 (Wed, 17 Jan 2001) | 4 lines
1115 Changed paths:
1116    M /trunk/include/modules_inner.h
1117    M /trunk/plugins/sdl/aout_sdl.c
1118    M /trunk/plugins/sdl/sdl.c
1121  . removed a few useless malloc() and unused variables in the audio SDL stuff
1122  . prepared the work for built-in modules (not yet finished)
1124 ------------------------------------------------------------------------
1125 r603 | massiot | 2001-01-17 19:17:31 +0100 (Wed, 17 Jan 2001) | 4 lines
1126 Changed paths:
1127    M /trunk/Makefile.in
1128    M /trunk/include/modules.h
1129    M /trunk/plugins/idct/idct.c
1130    M /trunk/plugins/idct/idct.h
1131    M /trunk/plugins/idct/idct_common.c
1132    D /trunk/plugins/idct/idct_mmxext.c
1133    M /trunk/plugins/idct/idctclassic.c
1134    M /trunk/plugins/idct/idctmmx.c
1135    D /trunk/plugins/idct/idctmmx_asm.S
1136    M /trunk/plugins/idct/idctmmxext.c
1137    M /trunk/src/video_decoder/vdec_idct.h
1138    M /trunk/src/video_decoder/video_parser.h
1139    M /trunk/src/video_decoder/vpar_blocks.h
1140    M /trunk/src/video_decoder/vpar_headers.h
1141    M /trunk/src/video_parser/video_parser.c
1142    M /trunk/src/video_parser/vpar_blocks.c
1143    M /trunk/src/video_parser/vpar_headers.c
1145 * Borrowed LiViD's MMX and MMX EXT IDCT.
1147 This might break things. Expect a performance increase.
1149 ------------------------------------------------------------------------
1150 r604 | sam | 2001-01-18 06:13:23 +0100 (Thu, 18 Jan 2001) | 17 lines
1151 Changed paths:
1152    M /trunk/INSTALL
1153    M /trunk/Makefile.in
1154    M /trunk/configure
1155    M /trunk/configure.in
1156    M /trunk/debian/vlc.1
1157    M /trunk/include/common.h
1158    M /trunk/include/config.h.in
1159    M /trunk/include/modules.h
1160    A /trunk/include/vdec_motion.h
1161    A /trunk/include/vpar_blocks.h
1162    M /trunk/plugins/idct/idct.c
1163    M /trunk/plugins/idct/idctclassic.c
1164    M /trunk/plugins/idct/idctmmx.c
1165    A /trunk/plugins/motion
1166    A /trunk/plugins/motion/motion.c
1167    A /trunk/plugins/motion/motionmmx.c
1168    A /trunk/plugins/motion/motionmmxext.c
1169    A /trunk/plugins/motion/vdec_motion_common.c
1170    A /trunk/plugins/motion/vdec_motion_inner.c
1171    A /trunk/plugins/motion/vdec_motion_inner_mmx.c
1172    A /trunk/plugins/motion/vdec_motion_inner_mmxext.c
1173    M /trunk/plugins/yuv/video_yuv.c
1174    M /trunk/plugins/yuv/yuv.c
1175    M /trunk/plugins/yuv/yuvmmx.c
1176    M /trunk/src/input/input_programs.c
1177    M /trunk/src/interface/main.c
1178    M /trunk/src/misc/modules.c
1179    D /trunk/src/video_decoder/vdec_motion.c
1180    D /trunk/src/video_decoder/vdec_motion.h
1181    D /trunk/src/video_decoder/vdec_motion_inner.c
1182    D /trunk/src/video_decoder/vdec_motion_inner_mmx.c
1183    D /trunk/src/video_decoder/vdec_motion_inner_mmxext.c
1184    M /trunk/src/video_decoder/video_decoder.c
1185    M /trunk/src/video_decoder/video_parser.h
1186    D /trunk/src/video_decoder/vpar_blocks.h
1187    M /trunk/src/video_parser/video_fifo.c
1188    M /trunk/src/video_parser/video_parser.c
1189    M /trunk/src/video_parser/vpar_blocks.c
1190    M /trunk/src/video_parser/vpar_headers.c
1191    M /trunk/src/video_parser/vpar_synchro.c
1194     The motion compensation routines are now modules as well ; choose your
1195   implementation with `--motion motion', `--motion motionmmx' or
1196   `--motion motionmmxext'. Of course, the best implementation is chosen
1197   if you don't ask for any. There doesn't seem to be any performance hit
1198   due to the move to shared libs, which is a good thing. Please test
1199   actively if you have time, though.
1201     Updated --help result, manpage, INSTALL document, and a few files.
1203     I moved vdec_motion.h and vpar_blocks.h back to /include because they
1204   will be needed to build motion compensation modules, but perhaps we don't
1205   need to export everything which is in these files.
1207     /src/video_decoder/ now has only one .c file, perhaps it could now be
1208   merged with video_parser ?
1210 ------------------------------------------------------------------------
1211 r605 | massiot | 2001-01-18 18:40:06 +0100 (Thu, 18 Jan 2001) | 2 lines
1212 Changed paths:
1213    M /trunk/include/common.h
1214    M /trunk/include/input_ext-dec.h
1215    M /trunk/src/input/input.h
1216    M /trunk/src/input/input_ext-dec.c
1217    M /trunk/src/video_parser/vpar_synchro.c
1219 * 32-bit aligned bitstream (not that fast).
1221 ------------------------------------------------------------------------
1222 r606 | sam | 2001-01-19 19:17:36 +0100 (Fri, 19 Jan 2001) | 10 lines
1223 Changed paths:
1224    M /trunk/configure
1225    M /trunk/configure.in
1226    M /trunk/debian/changelog
1227    M /trunk/debian/control
1228    D /trunk/debian/dirs
1229    M /trunk/debian/rules
1230    D /trunk/debian/vlc-esd.files
1231    D /trunk/debian/vlc-fb.files
1232    D /trunk/debian/vlc-ggi.files
1233    D /trunk/debian/vlc-glide.files
1234    D /trunk/debian/vlc-gnome.files
1235    M /trunk/debian/vlc-gnome.menu
1236    D /trunk/debian/vlc-sdl.files
1237    M /trunk/debian/vlc.copyright
1238    A /trunk/debian/vlc.dirs
1239    M /trunk/debian/vlc.menu
1240    M /trunk/vlc.spec
1243  . changed program version to 0.2.5 (preparing 0.3.0 release).
1244  . changed codename to Urumov
1245  . cleaned a lot of stuff in the Debian package generation.
1247   If anyone objects with the versioning scheme, let's fight in the
1248   dirt and sort that out. Or change it yourself.
1250   Debian packages can be tried here: http://armitage.via.ecp.fr/~sam/vlc/
1252 ------------------------------------------------------------------------
1253 r607 | sam | 2001-01-20 05:19:02 +0100 (Sat, 20 Jan 2001) | 3 lines
1254 Changed paths:
1255    M /trunk/include/input_ext-dec.h
1258  . the infamous Saturday morning mighty one-liner patch that fixes subtitles
1260 ------------------------------------------------------------------------
1261 r608 | sam | 2001-01-20 14:08:33 +0100 (Sat, 20 Jan 2001) | 2 lines
1262 Changed paths:
1263    M /trunk/include/input_ext-dec.h
1265  . really fixed GetChunk now.
1267 ------------------------------------------------------------------------
1268 r609 | stef | 2001-01-20 21:59:44 +0100 (Sat, 20 Jan 2001) | 5 lines
1269 Changed paths:
1270    M /trunk/Makefile.in
1271    A /trunk/src/input/css_table.h
1272    A /trunk/src/input/dvd_css.c
1273    A /trunk/src/input/dvd_css.h
1274    M /trunk/src/input/dvd_ifo.c
1275    M /trunk/src/input/dvd_ifo.h
1276    M /trunk/src/input/input.c
1277    M /trunk/src/input/input_dvd.c
1278    M /trunk/src/input/input_dvd.h
1280 * Beginning of support for encrypted DVDs.
1281 * It only tests encryption and authenticates disc.
1283 The decryption does not work now et it is very ugly but I'm working on it.
1285 ------------------------------------------------------------------------
1286 r610 | massiot | 2001-01-21 02:36:26 +0100 (Sun, 21 Jan 2001) | 2 lines
1287 Changed paths:
1288    M /trunk/include/input_ext-dec.h
1289    M /trunk/include/vpar_blocks.h
1290    M /trunk/src/video_decoder/video_parser.h
1291    M /trunk/src/video_parser/vpar_blocks.c
1292    M /trunk/src/video_parser/vpar_headers.c
1294 * Various miscellaneous minor optimizations of the video parser.
1296 ------------------------------------------------------------------------
1297 r611 | stef | 2001-01-21 10:20:27 +0100 (Sun, 21 Jan 2001) | 5 lines
1298 Changed paths:
1299    M /trunk/src/input/dvd_css.c
1300    M /trunk/src/input/dvd_css.h
1301    M /trunk/src/input/input_dvd.c
1303 *Some cleaning in the dvd authentification code
1305 Now it generates a valid title key, but there is no sector descrambler
1306 yet.
1308 ------------------------------------------------------------------------
1309 r612 | stef | 2001-01-22 06:20:44 +0100 (Mon, 22 Jan 2001) | 5 lines
1310 Changed paths:
1311    M /trunk/configure
1312    M /trunk/configure.in
1313    M /trunk/include/defs.h.in
1314    M /trunk/src/input/dvd_css.c
1315    M /trunk/src/input/dvd_css.h
1316    M /trunk/src/input/input_dvd.c
1317    M /trunk/src/input/input_dvd.h
1319 *Check for the needed headers for DVD ioctls
1321 I have only tested it on my computer ; so I don't know if it work
1322 elsewhere, particularly on BSD and BeOS.
1324 ------------------------------------------------------------------------
1325 r613 | massiot | 2001-01-22 16:49:55 +0100 (Mon, 22 Jan 2001) | 2 lines
1326 Changed paths:
1327    M /trunk/Makefile.in
1328    M /trunk/configure
1329    M /trunk/configure.in
1331 * Tuned up optimization flags.
1333 ------------------------------------------------------------------------
1334 r614 | massiot | 2001-01-22 19:04:10 +0100 (Mon, 22 Jan 2001) | 2 lines
1335 Changed paths:
1336    M /trunk/include/input_ext-dec.h
1337    M /trunk/src/input/input_ext-dec.c
1339 * Minor bitstream optimization.
1341 ------------------------------------------------------------------------
1342 r615 | massiot | 2001-01-22 20:40:54 +0100 (Mon, 22 Jan 2001) | 2 lines
1343 Changed paths:
1344    M /trunk/Makefile.in
1346 * Tuned up optimizations.
1348 ------------------------------------------------------------------------
1349 r616 | massiot | 2001-01-23 11:15:13 +0100 (Tue, 23 Jan 2001) | 2 lines
1350 Changed paths:
1351    M /trunk/configure
1352    M /trunk/configure.in
1354 * Completely removed BIZARRE_OPTIMS.
1356 ------------------------------------------------------------------------
1357 r617 | massiot | 2001-01-23 14:22:58 +0100 (Tue, 23 Jan 2001) | 3 lines
1358 Changed paths:
1359    M /trunk/TODO
1360    M /trunk/plugins/x11/vout_x11.c
1362 * Fixed backwards moves ;
1363 * Updated TODO list.
1365 ------------------------------------------------------------------------
1366 r618 | massiot | 2001-01-24 20:05:55 +0100 (Wed, 24 Jan 2001) | 2 lines
1367 Changed paths:
1368    M /trunk/Makefile.in
1369    M /trunk/include/input_ext-dec.h
1370    M /trunk/include/input_ext-intf.h
1371    M /trunk/include/stream_control.h
1372    M /trunk/src/input/input.c
1373    M /trunk/src/input/input.h
1374    A /trunk/src/input/input_clock.c
1375    M /trunk/src/input/input_programs.c
1376    M /trunk/src/input/mpeg_system.c
1377    M /trunk/src/video_decoder/video_parser.h
1378    M /trunk/src/video_decoder/vpar_headers.h
1379    M /trunk/src/video_parser/video_parser.c
1380    M /trunk/src/video_parser/vpar_synchro.c
1382 * Hooks for fast forward and slow motion support.
1384 ------------------------------------------------------------------------
1385 r619 | sam | 2001-01-25 22:57:54 +0100 (Thu, 25 Jan 2001) | 3 lines
1386 Changed paths:
1387    D /trunk/Makefile
1390  . removed Makefile -- I can't understand why it reappeared.
1392 ------------------------------------------------------------------------
1393 r621 | massiot | 2001-01-26 15:47:16 +0100 (Fri, 26 Jan 2001) | 2 lines
1394 Changed paths:
1395    M /trunk/src/video_parser/vpar_blocks.c
1397 * Fix for field pictures.
1399 ------------------------------------------------------------------------
1400 r622 | massiot | 2001-01-26 16:38:21 +0100 (Fri, 26 Jan 2001) | 2 lines
1401 Changed paths:
1402    M /trunk/src/input/input_ext-dec.c
1404 * Removed dead code.
1406 ------------------------------------------------------------------------
1407 r625 | stef | 2001-01-29 07:10:10 +0100 (Mon, 29 Jan 2001) | 7 lines
1408 Changed paths:
1409    M /trunk/src/input/dvd_css.c
1410    M /trunk/src/input/dvd_css.h
1411    M /trunk/src/input/dvd_ifo.c
1412    M /trunk/src/input/dvd_ifo.h
1413    M /trunk/src/input/input_dvd.c
1415 -CSS support kludged for current DVD input.
1416 It is very slow now but will be more adapted to the forthcoming DVD
1417 input.
1418 It should read the first title of many DVDs but has been tested with few.
1420 -Beginning of ifo commands to implement DVD navigation.
1422 ------------------------------------------------------------------------
1423 r626 | stef | 2001-01-29 07:28:19 +0100 (Mon, 29 Jan 2001) | 2 lines
1424 Changed paths:
1425    M /trunk/src/input/input_dvd.c
1427 * Correction of two errors.
1429 ------------------------------------------------------------------------
1430 r627 | sam | 2001-01-30 06:48:23 +0100 (Tue, 30 Jan 2001) | 4 lines
1431 Changed paths:
1432    M /trunk/include/input_ext-intf.h
1433    M /trunk/src/input/input_dvd.c
1434    M /trunk/src/input/input_ps.c
1435    M /trunk/src/input/mpeg_system.c
1436    M /trunk/src/interface/main.c
1438  . not a very nice hack, but will probably spare us a few user complaints: if
1439   no -a option is specified, the vlc will play the first audio type it finds,
1440   so there is no need to specify "-a ac3" for a DVD anymore.
1442 ------------------------------------------------------------------------
1443 r628 | massiot | 2001-01-30 20:19:02 +0100 (Tue, 30 Jan 2001) | 2 lines
1444 Changed paths:
1445    M /trunk/src/input/input_dvd.c
1447 * Fix for assholes who don't have a dvd players. :pppp
1449 ------------------------------------------------------------------------
1450 r630 | sam | 2001-01-31 04:42:39 +0100 (Wed, 31 Jan 2001) | 17 lines
1451 Changed paths:
1452    M /trunk/configure
1453    M /trunk/configure.in
1454    M /trunk/debian/changelog
1455    M /trunk/debian/vlc.1
1456    M /trunk/include/config.h.in
1457    M /trunk/plugins/sdl/intf_sdl.c
1458    M /trunk/plugins/sdl/vout_sdl.c
1459    M /trunk/src/interface/interface.c
1460    M /trunk/src/interface/main.c
1461    M /trunk/vlc.spec
1464  . version 0.2.50 for the Linux Expo
1465  . --overlay and --fulscreen options (only work with --vout sdl)
1466  . the vlc exits after the end of the stream, which prevents from having
1467    to kill it and relaunch it during a presentation, just script it like :
1469       for i in ~/mpeg/* ; do vlc --fullscreen --overlay --vout sdl $i ; done
1472  Yes, I know the --overlay stuff is fucking ugly. But *I* am not the one
1473   who redefines vout_sys_t in an interface-related source file. I won't
1474   change it until the vout/intf is finished being rewritten.
1476  Additional information: if "--overlay --fulscreen" doesn't center your
1477   picture, try with your screen geometry, eg:
1478   "--overlay --fullscreen --width 1024 --height 768"
1480 ------------------------------------------------------------------------
1481 r631 | sam | 2001-02-04 04:06:30 +0100 (Sun, 04 Feb 2001) | 6 lines
1482 Changed paths:
1483    M /trunk/Makefile.in
1484    M /trunk/TODO
1485    D /trunk/src/video_output/video_yuv_mmx.S
1486    A /trunk/todo.pl
1489  . removed obsolete video_yuv_mmx.S
1490  . updated the TODO list and wrote a small todo.pl parser to make it
1491    easier to see which items remain to be done
1492  . `make snapshot' now creates vlc-*.tar.gz and vlc-*-nocss.tar.gz
1494 ------------------------------------------------------------------------
1495 r632 | nitrox | 2001-02-05 16:50:57 +0100 (Mon, 05 Feb 2001) | 4 lines
1496 Changed paths:
1497    M /trunk/plugins/sdl/intf_sdl.c
1498    M /trunk/plugins/sdl/vout_sdl.c
1500 . Mouse pointer hidden/shown with middle button in SDL output
1501 . Default is shown.
1502 . Default in fullscreen is hidden.
1504 ------------------------------------------------------------------------
1505 r633 | sam | 2001-02-05 22:00:23 +0100 (Mon, 05 Feb 2001) | 5 lines
1506 Changed paths:
1507    M /trunk/Makefile.in
1508    M /trunk/debian/changelog
1509    M /trunk/debian/control
1510    M /trunk/debian/rules
1511    M /trunk/plugins/sdl/aout_sdl.c
1512    M /trunk/plugins/sdl/vout_sdl.c
1514  . disabled SDL parachute to let the vlc dump a core instead of staying stuck
1515  . patched 2 debian bugs
1516     (see http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=vlc)
1517  . improved the snapshot generation
1519 ------------------------------------------------------------------------
1520 r634 | nitrox | 2001-02-06 01:56:55 +0100 (Tue, 06 Feb 2001) | 3 lines
1521 Changed paths:
1522    M /trunk/include/video_output.h
1523    M /trunk/plugins/sdl/intf_sdl.c
1524    M /trunk/plugins/sdl/vout_sdl.c
1525    M /trunk/src/video_output/video_output.c
1527 . Fixed a FIXME in SDL: p_vout->p_sys is no more used in intf_sdl.c
1528 . Used instead p_vout->i_changes like in x11
1530 ------------------------------------------------------------------------
1531 r635 | massiot | 2001-02-06 18:17:04 +0100 (Tue, 06 Feb 2001) | 2 lines
1532 Changed paths:
1533    M /trunk/src/video_parser/vpar_headers.c
1535 Fixed a bug in period calculation for progressive sequences.
1537 ------------------------------------------------------------------------
1538 r636 | massiot | 2001-02-07 16:32:26 +0100 (Wed, 07 Feb 2001) | 3 lines
1539 Changed paths:
1540    M /trunk/include/input_ext-intf.h
1541    M /trunk/src/input/input.h
1542    M /trunk/src/input/input_clock.c
1543    M /trunk/src/input/input_programs.c
1544    M /trunk/src/input/input_ps.c
1545    M /trunk/src/input/mpeg_system.c
1546    M /trunk/src/misc/modules.c
1547    M /trunk/src/video_parser/video_parser.c
1549 * Centralized clock management, preparing for stream navigation ;
1550 * Fixed a bug in the management of the first video PTS.
1552 ------------------------------------------------------------------------
1553 r637 | massiot | 2001-02-07 18:44:52 +0100 (Wed, 07 Feb 2001) | 4 lines
1554 Changed paths:
1555    M /trunk/include/input_ext-intf.h
1556    M /trunk/include/stream_control.h
1557    M /trunk/plugins/sdl/intf_sdl.c
1558    M /trunk/src/input/input.c
1559    M /trunk/src/input/input.h
1560    M /trunk/src/input/input_clock.c
1561    A /trunk/src/input/input_ext-intf.c
1562    M /trunk/src/input/mpeg_system.c
1564 * Functional fast forward and slow motion API ;
1565 * Dirty hack in the SDL intf to bind "a" (fAst forward), "s" (Slow motion)
1566 and "p" (Play).
1568 ------------------------------------------------------------------------
1569 r638 | massiot | 2001-02-07 18:51:27 +0100 (Wed, 07 Feb 2001) | 2 lines
1570 Changed paths:
1571    M /trunk/Makefile.in
1573 /me <- pogno who modifies Makefile instead of Makefile.in :p
1575 ------------------------------------------------------------------------
1576 r639 | massiot | 2001-02-07 18:56:21 +0100 (Wed, 07 Feb 2001) | 2 lines
1577 Changed paths:
1578    M /trunk/src/input/input_clock.c
1580 Another mistake.
1582 ------------------------------------------------------------------------
1583 r640 | reno | 2001-02-08 01:46:12 +0100 (Thu, 08 Feb 2001) | 4 lines
1584 Changed paths:
1585    M /trunk/include/stream_control.h
1586    M /trunk/plugins/sdl/intf_sdl.c
1587    M /trunk/src/input/input_ext-intf.c
1589 We can now choose the speed of forward (between 32/1 and 1/8)
1591 Thanks to Meuuh, he's MORTEL ;)
1593 ------------------------------------------------------------------------
1594 r641 | reno | 2001-02-08 02:06:11 +0100 (Thu, 08 Feb 2001) | 2 lines
1595 Changed paths:
1596    M /trunk/plugins/sdl/intf_sdl.c
1598 Cosmetics changes
1600 ------------------------------------------------------------------------
1601 r642 | stef | 2001-02-08 02:34:42 +0100 (Thu, 08 Feb 2001) | 14 lines
1602 Changed paths:
1603    M /trunk/src/input/css_table.h
1604    M /trunk/src/input/dvd_css.c
1605    M /trunk/src/input/dvd_css.h
1606    M /trunk/src/input/dvd_ifo.c
1607    M /trunk/src/input/dvd_ifo.h
1608    M /trunk/src/input/input_dvd.c
1609    M /trunk/src/input/input_dvd.h
1610    M /trunk/src/input/input_netlist.c
1611    M /trunk/src/input/input_netlist.h
1612    M /trunk/src/input/mpeg_system.c
1614 -New method using netlist to read packets on DVD device by sectors of
1615 2048 bytes.
1616 -Some modifications in netlist to make it work with DVD.
1617 -Fixed ?\239?\191?\189 bug in mpeg_system.c
1619 We use INPUT_READ_ONCE many times in the input code. I think that
1620 we should replace it with a field in input_thread_t to give more
1621 flexibility to modules. I have done it in DVD plugin but it can't work
1622 if input.c is limited by INPUT_READ_ONCE.
1624 The DVD method is slower than input_ps ; but there are things to
1625 improve.
1626 CSS descrambling is broken.
1628 ------------------------------------------------------------------------
1629 r643 | sam | 2001-02-08 05:43:28 +0100 (Thu, 08 Feb 2001) | 21 lines
1630 Changed paths:
1631    M /trunk/Makefile.in
1632    M /trunk/configure
1633    M /trunk/configure.in
1634    M /trunk/include/common.h
1635    M /trunk/include/config.h.in
1636    A /trunk/include/input.h
1637    M /trunk/include/input_ext-intf.h
1638    A /trunk/include/input_netlist.h
1639    A /trunk/include/intf_plst.h
1640    M /trunk/include/modules.h
1641    A /trunk/include/mpeg_system.h
1642    D /trunk/include/playlist.h
1643    A /trunk/plugins/dvd
1644    A /trunk/plugins/dvd/css_table.h
1645    A /trunk/plugins/dvd/dvd.c
1646    A /trunk/plugins/dvd/dvd_css.c
1647    A /trunk/plugins/dvd/dvd_css.h
1648    A /trunk/plugins/dvd/dvd_ifo.c
1649    A /trunk/plugins/dvd/dvd_ifo.h
1650    A /trunk/plugins/dvd/input_dvd.c
1651    A /trunk/plugins/dvd/input_dvd.h
1652    A /trunk/plugins/mpeg
1653    A /trunk/plugins/mpeg/input_ps.c
1654    A /trunk/plugins/mpeg/input_ps.h
1655    A /trunk/plugins/mpeg/input_ts.c
1656    A /trunk/plugins/mpeg/ps.c
1657    A /trunk/plugins/mpeg/ts.c
1658    M /trunk/plugins/sdl/aout_sdl.c
1659    M /trunk/plugins/sdl/intf_sdl.c
1660    D /trunk/src/input/css_table.h
1661    D /trunk/src/input/dvd_css.c
1662    D /trunk/src/input/dvd_css.h
1663    D /trunk/src/input/dvd_ifo.c
1664    D /trunk/src/input/dvd_ifo.h
1665    M /trunk/src/input/input.c
1666    D /trunk/src/input/input.h
1667    D /trunk/src/input/input_netlist.h
1668    M /trunk/src/input/input_programs.c
1669    D /trunk/src/input/input_ps.c
1670    D /trunk/src/input/input_ps.h
1671    D /trunk/src/input/input_ts.c
1672    M /trunk/src/input/mpeg_system.c
1673    D /trunk/src/input/mpeg_system.h
1674    M /trunk/src/interface/interface.c
1675    A /trunk/src/interface/intf_plst.c
1676    M /trunk/src/interface/main.c
1677    M /trunk/src/misc/modules.c
1678    D /trunk/src/misc/playlist.c
1681    This commit is a bit early, but it'll save Stef, Henri and me much
1682  time later, when we don't have to backport modifications to input_*.c
1684    What's new :
1685     - playlist works again (still the old wrong way like Meuuh doesn't
1686     like, but this is going to change within a few hours)
1687     - input_ps, input_ts and input_dvd are now plugins, located in
1688     plugins/mpeg/ and plugins/dvd/
1690    What's broken :
1691     - audio output might be broken on some streams ; have to investigate
1693    What has changed :
1694     - fast/slow keys are now A/Z instead of A/S since S was already
1695     linked to the scale/noscale toggle.
1696     - `--dvd' doesn't work anymore, for the moment try to use :
1697      vlc --input dvd /dev/dvd
1698     - module bank is now less verbose ; use `--warn 1' to turn back
1699     verbosity on
1701 ------------------------------------------------------------------------
1702 r644 | stef | 2001-02-08 07:41:56 +0100 (Thu, 08 Feb 2001) | 4 lines
1703 Changed paths:
1704    M /trunk/plugins/dvd/dvd_css.c
1705    M /trunk/plugins/dvd/input_dvd.c
1706    D /trunk/src/input/input_dvd.c
1707    D /trunk/src/input/input_dvd.h
1709 -solved bug with cssdescrambling. The vlc might segfault with dvd
1710 plugins. I will fix that soon.
1711 -minor modification in pluginification.
1713 ------------------------------------------------------------------------
1714 r645 | sam | 2001-02-08 08:24:25 +0100 (Thu, 08 Feb 2001) | 10 lines
1715 Changed paths:
1716    M /trunk/include/common.h
1717    M /trunk/include/input_ext-intf.h
1718    M /trunk/include/intf_plst.h
1719    M /trunk/include/modules.h
1720    M /trunk/plugins/mpeg/input_ps.c
1721    M /trunk/src/input/input.c
1722    M /trunk/src/input/input_ext-intf.c
1723    M /trunk/src/interface/interface.c
1724    M /trunk/src/interface/intf_plst.c
1725    M /trunk/src/misc/plugins.c
1728  . moved the playlist handling from input/input.c to interface/interface.c
1729  . fixed a few warnings at compile-time
1730  . fixed sound channel selection in playlist mode
1731  . added a color message in the plugin bank because on peut bien d?\239?\191?\189conner
1732    cinq minutes, quand-m?\239?\191?\189me
1733  . we now spawn a new input thread for each file
1734  . added a missing pf_close() because it's always cool to close files
1735    after we read them
1737 ------------------------------------------------------------------------
1738 r646 | stef | 2001-02-08 09:08:03 +0100 (Thu, 08 Feb 2001) | 2 lines
1739 Changed paths:
1740    M /trunk/plugins/dvd/dvd_ifo.c
1741    M /trunk/plugins/dvd/input_dvd.c
1743 *** empty log message ***
1745 ------------------------------------------------------------------------
1746 r647 | massiot | 2001-02-08 12:22:41 +0100 (Thu, 08 Feb 2001) | 4 lines
1747 Changed paths:
1748    M /trunk/plugins/dvd/input_dvd.c
1750 Fixed a compile probleme on machine without a dvd player :ppppp
1751 Maybe it would be a good idea to compile the DVD plugin on machines which
1752 have one ? :pppp
1754 ------------------------------------------------------------------------
1755 r648 | massiot | 2001-02-08 14:08:03 +0100 (Thu, 08 Feb 2001) | 2 lines
1756 Changed paths:
1757    M /trunk/include/input_ext-intf.h
1758    M /trunk/plugins/sdl/intf_sdl.c
1759    M /trunk/src/input/input.c
1760    M /trunk/src/input/input_clock.c
1761    M /trunk/src/input/input_ext-intf.c
1763 * Pause function implemented ('p' key).
1765 ------------------------------------------------------------------------
1766 r649 | massiot | 2001-02-08 14:52:35 +0100 (Thu, 08 Feb 2001) | 3 lines
1767 Changed paths:
1768    M /trunk/include/input.h
1769    M /trunk/include/input_ext-dec.h
1770    M /trunk/include/input_ext-intf.h
1771    M /trunk/include/modules.h
1772    M /trunk/include/stream_control.h
1773    M /trunk/plugins/mpeg/input_ps.c
1774    M /trunk/plugins/sdl/intf_sdl.c
1775    M /trunk/src/input/input.c
1776    M /trunk/src/input/input_clock.c
1777    M /trunk/src/input/input_dec.c
1778    M /trunk/src/input/input_ext-dec.c
1779    M /trunk/src/input/input_ext-intf.c
1780    M /trunk/src/input/input_programs.c
1781    M /trunk/src/input/mpeg_system.c
1783 * Implemented basic stream navigation function, and bound Jump forward
1784   and jump Backward in the SDL intf. Enjoy !
1786 ------------------------------------------------------------------------
1787 r650 | massiot | 2001-02-08 18:44:13 +0100 (Thu, 08 Feb 2001) | 5 lines
1788 Changed paths:
1789    M /trunk/Makefile.in
1790    M /trunk/include/input.h
1791    M /trunk/include/input_ext-dec.h
1792    M /trunk/include/input_ext-intf.h
1793    M /trunk/plugins/dvd/dvd_css.c
1794    M /trunk/plugins/dvd/dvd_ifo.c
1795    M /trunk/plugins/dvd/dvd_ifo.h
1796    M /trunk/plugins/dvd/input_dvd.c
1797    M /trunk/plugins/mpeg/input_ps.c
1798    M /trunk/src/input/input_ext-intf.c
1799    M /trunk/src/input/input_netlist.c
1800    M /trunk/src/input/input_programs.c
1801    M /trunk/src/input/mpeg_system.c
1802    M /trunk/src/video_parser/video_parser.c
1804 * Portability : changed off64_t to off_t and activated appropriate
1805   GNU/Linux options ;
1806 * Changed fseek() to fseeko() for 64-bit offsets ;
1807 * Reset frame predictors on a stream discontinuity.
1809 ------------------------------------------------------------------------
1810 r651 | sam | 2001-02-09 00:40:26 +0100 (Fri, 09 Feb 2001) | 5 lines
1811 Changed paths:
1812    M /trunk/TODO
1813    M /trunk/include/intf_plst.h
1814    M /trunk/src/interface/interface.c
1815    M /trunk/src/interface/intf_plst.c
1816    M /trunk/src/interface/main.c
1819  . added comments to src/interface/intf_plst.c and include/intf_plst.h
1820    so that people understand how the playlist works.
1821  . updated the TODO list (34 items to do, 41 done !)
1823 ------------------------------------------------------------------------
1824 r652 | stef | 2001-02-09 04:51:42 +0100 (Fri, 09 Feb 2001) | 4 lines
1825 Changed paths:
1826    M /trunk/configure
1827    M /trunk/configure.in
1828    M /trunk/include/defs.h.in
1829    M /trunk/plugins/dvd/dvd_css.c
1830    M /trunk/plugins/dvd/dvd_ifo.c
1831    M /trunk/plugins/dvd/dvd_ifo.h
1832    M /trunk/plugins/dvd/input_dvd.c
1834 -Some functions to prepare ifo commands utilisation to move in the
1835 structures of DVDs
1836 -Change in configure to avoid compiling css functions on BSD.
1838 ------------------------------------------------------------------------
1839 r653 | stef | 2001-02-09 19:34:01 +0100 (Fri, 09 Feb 2001) | 2 lines
1840 Changed paths:
1841    M /trunk/plugins/dvd/dvd_css.c
1843 -Fixed a bug in #define that prevented from using ioctls
1845 ------------------------------------------------------------------------
1846 r654 | sam | 2001-02-11 02:15:12 +0100 (Sun, 11 Feb 2001) | 37 lines
1847 Changed paths:
1848    M /trunk/Makefile.in
1849    M /trunk/configure
1850    M /trunk/configure.in
1851    M /trunk/include/config.h.in
1852    M /trunk/include/interface.h
1853    M /trunk/include/main.h
1854    M /trunk/include/modules.h
1855    D /trunk/include/plugins.h
1856    M /trunk/include/video_output.h
1857    M /trunk/plugins/gnome/gnome.c
1858    A /trunk/plugins/gnome/gnome_callbacks.c
1859    A /trunk/plugins/gnome/gnome_callbacks.h
1860    A /trunk/plugins/gnome/gnome_interface.c
1861    A /trunk/plugins/gnome/gnome_interface.h
1862    A /trunk/plugins/gnome/gnome_support.c
1863    A /trunk/plugins/gnome/gnome_support.h
1864    A /trunk/plugins/gnome/gnome_sys.h
1865    M /trunk/plugins/gnome/intf_gnome.c
1866    D /trunk/plugins/gnome/intf_gnome.h
1867    D /trunk/plugins/gnome/intf_gnome_callbacks.c
1868    D /trunk/plugins/gnome/intf_gnome_callbacks.h
1869    D /trunk/plugins/gnome/intf_gnome_interface.c
1870    D /trunk/plugins/gnome/intf_gnome_interface.h
1871    D /trunk/plugins/gnome/intf_gnome_support.c
1872    D /trunk/plugins/gnome/intf_gnome_support.h
1873    D /trunk/plugins/gnome/intf_gnome_thread.h
1874    D /trunk/plugins/gnome/vout_gnome.c
1875    D /trunk/plugins/sdl/intf_sdl.c
1876    M /trunk/plugins/sdl/sdl.c
1877    M /trunk/plugins/sdl/vout_sdl.c
1878    M /trunk/plugins/yuv/video_yuv.c
1879    M /trunk/plugins/yuv/video_yuvmmx.c
1880    M /trunk/src/ac3_decoder/ac3_decoder_thread.c
1881    M /trunk/src/ac3_decoder/ac3_exponent.c
1882    M /trunk/src/audio_decoder/audio_decoder.c
1883    M /trunk/src/audio_output/audio_output.c
1884    M /trunk/src/input/input.c
1885    M /trunk/src/interface/interface.c
1886    A /trunk/src/interface/intf_channels.c
1887    A /trunk/src/interface/intf_channels.h
1888    M /trunk/src/interface/intf_cmd.c
1889    M /trunk/src/interface/intf_ctrl.c
1890    M /trunk/src/interface/intf_msg.c
1891    M /trunk/src/interface/intf_plst.c
1892    M /trunk/src/interface/main.c
1893    M /trunk/src/lpcm_decoder/lpcm_decoder.c
1894    M /trunk/src/lpcm_decoder/lpcm_decoder_thread.c
1895    M /trunk/src/misc/modules.c
1896    D /trunk/src/misc/plugins.c
1897    M /trunk/src/spu_decoder/spu_decoder.c
1898    M /trunk/src/video_decoder/video_decoder.c
1899    M /trunk/src/video_output/video_output.c
1900    M /trunk/src/video_output/video_spu.c
1901    M /trunk/src/video_output/video_yuv.c
1902    M /trunk/src/video_parser/video_fifo.c
1903    M /trunk/src/video_parser/video_parser.c
1904    M /trunk/src/video_parser/vpar_blocks.c
1905    M /trunk/src/video_parser/vpar_headers.c
1906    M /trunk/src/video_parser/vpar_synchro.c
1909   Beginning of Interface II
1910  ---------------------------
1912  * Plugins have completely disappeared, we now only use the new module API.
1913  * All intf and vout modules are now independant. So far, only the Gnome
1914    intf module and the SDL vout module have been ported. configure.in has
1915    been modified to reflect the changes (x11 and dummy aren't compiled by
1916    default anymore, while SDL and Gnome are).
1918   Note that this is _not_ Interface II, it's just a step forward. For
1919   instance, it lacks the whole message passing scheme.
1921   Things that should work:
1923  * Right-clicking on the SDL video output window brings the Gnome menu.
1924  * Pause, Play, Exit, About work from the menu or from the interface window.
1925  * The old SDL keys still work.
1927    Things that are broken or may be broken:
1929  * Xlib calls are not locked yet, which may lead to "Unexpected async reply"
1930    errors, and make the vlc segfault.
1931  * Sound only works for the first file.
1932  * The SDL vout_sdl.c file is absolutely ugly and kludgey.
1933  * The vlc immediately quits when no filename is given as an argument. Not
1934    a real bug, but still annoying.
1935  * The Gnome menu does not work in fullscreen mode.
1937    Things that will come soon, maybe tomorrow:
1939  * Complete navigation buttons (fast forward, slow, etc.).
1940  * File/Open menu to add files to the playlist.
1941  * Return of the X11 video output for those of us who do not have SDL.
1942  * Textmode interface for those of us who do not have Gnome.
1943  * aout and vout autospawn (maybe).
1945 ------------------------------------------------------------------------
1946 r655 | sam | 2001-02-12 01:20:37 +0100 (Mon, 12 Feb 2001) | 12 lines
1947 Changed paths:
1948    M /trunk/AUTHORS
1949    A /trunk/plugins/gnome/.cvsignore
1950    M /trunk/plugins/gnome/gnome_callbacks.c
1951    M /trunk/plugins/gnome/gnome_callbacks.h
1952    M /trunk/plugins/gnome/gnome_interface.c
1953    M /trunk/plugins/gnome/gnome_interface.h
1954    M /trunk/plugins/gnome/gnome_support.c
1955    M /trunk/plugins/gnome/gnome_sys.h
1956    M /trunk/plugins/gnome/intf_gnome.c
1957    A /trunk/plugins/gnome/intf_gnome.glade
1958    M /trunk/plugins/sdl/vout_sdl.c
1959    M /trunk/src/interface/interface.c
1960    M /trunk/src/video_output/video_output.c
1963  * The pure Gnome part of the Gnome interface has been rewritten from
1964    scratch, and the .glade file included as well. You can edit it by
1965    installing glade-gnome and doing `glade plugins/gnome/intf_gnome.glade',
1966    or directly by hand if you grok XML.
1967  * Files can now be loaded into vlc using the `Open' buttons. But for the
1968    moment you still have to launch vlc with at least one file, because it
1969    quits when the end of the playlist is reached.
1970  * Idle screen was disabled because it eats a lot of CPU and is mostly
1971    useless for the moment. And it gets activated when pause lasts for too
1972    long.
1974 ------------------------------------------------------------------------
1975 r656 | sam | 2001-02-12 08:52:40 +0100 (Mon, 12 Feb 2001) | 10 lines
1976 Changed paths:
1977    M /trunk/debian/vlc.1
1978    M /trunk/include/config.h.in
1979    M /trunk/plugins/dvd/input_dvd.c
1980    M /trunk/plugins/gnome/gnome_callbacks.c
1981    M /trunk/plugins/gnome/gnome_callbacks.h
1982    M /trunk/plugins/gnome/gnome_interface.c
1983    M /trunk/plugins/gnome/gnome_interface.h
1984    M /trunk/plugins/gnome/intf_gnome.glade
1985    M /trunk/plugins/mpeg/input_ps.c
1986    M /trunk/plugins/sdl/vout_sdl.c
1987    M /trunk/src/input/mpeg_system.c
1988    M /trunk/src/interface/main.c
1991   * Fixed my old stupid bug that disabled sound after having played the
1992     first playlist item.
1993   * Added `Prev' and `Next' buttons to the interface, with the beginning of
1994     a playlist window (still empty).
1995   * Added `Slow' and `Fast' buttons to the interface and popup menu.
1997   Ok, I promise it's the last time I check bloat in, from now the interface
1998   commits will be much cleaner and actually fix things :)
2000 ------------------------------------------------------------------------
2001 r657 | sam | 2001-02-12 10:39:15 +0100 (Mon, 12 Feb 2001) | 4 lines
2002 Changed paths:
2003    M /trunk/include/input_ext-intf.h
2004    M /trunk/plugins/gnome/gnome_callbacks.c
2005    M /trunk/plugins/sdl/vout_sdl.c
2006    M /trunk/src/input/input_ext-intf.c
2009  . removed tests against i_rate and i_new_rate calculation from the
2010    plugins and hid this complexity into input_ext-intf.c
2012 ------------------------------------------------------------------------
2013 r658 | stef | 2001-02-12 10:58:06 +0100 (Mon, 12 Feb 2001) | 6 lines
2014 Changed paths:
2015    M /trunk/plugins/dvd/dvd_css.c
2016    M /trunk/plugins/dvd/dvd_ifo.c
2017    M /trunk/plugins/dvd/input_dvd.c
2019 -Much cleaning in css code. It should work fine now.
2021 Most of DVD with movie in title 1 should work.
2023 To come : support for movie in other titles.
2025 ------------------------------------------------------------------------
2026 r659 | massiot | 2001-02-12 11:46:26 +0100 (Mon, 12 Feb 2001) | 2 lines
2027 Changed paths:
2028    M /trunk/src/video_parser/vpar_synchro.c
2030 * Fixed pause bug.
2032 ------------------------------------------------------------------------
2033 r660 | massiot | 2001-02-12 12:22:31 +0100 (Mon, 12 Feb 2001) | 2 lines
2034 Changed paths:
2035    M /trunk/include/config.h.in
2036    M /trunk/src/video_parser/vpar_synchro.c
2038 * Tried to enhance picture dating on timebase discontinuities.
2040 ------------------------------------------------------------------------
2041 r661 | massiot | 2001-02-12 14:20:15 +0100 (Mon, 12 Feb 2001) | 3 lines
2042 Changed paths:
2043    M /trunk/include/input.h
2044    M /trunk/src/input/input.c
2045    M /trunk/src/video_parser/vpar_synchro.c
2047 * We can now seek at position 0 :p ;
2048 * Fixed a typo in my previous commit.
2050 ------------------------------------------------------------------------
2051 r662 | massiot | 2001-02-12 19:18:18 +0100 (Mon, 12 Feb 2001) | 2 lines
2052 Changed paths:
2053    M /trunk/src/video_parser/vpar_synchro.c
2055 Removed enhancement because of an incompatibility with slow motion.
2057 ------------------------------------------------------------------------
2058 r663 | sam | 2001-02-13 05:29:46 +0100 (Tue, 13 Feb 2001) | 11 lines
2059 Changed paths:
2060    M /trunk/configure
2061    M /trunk/configure.in
2062    M /trunk/debian/vlc.1
2063    M /trunk/include/modules.h
2064    M /trunk/plugins/dummy/aout_dummy.c
2065    M /trunk/plugins/dummy/dummy.c
2066    M /trunk/plugins/dummy/intf_dummy.c
2067    M /trunk/plugins/dummy/vout_dummy.c
2068    M /trunk/plugins/gnome/gnome_callbacks.c
2069    M /trunk/plugins/gnome/gnome_callbacks.h
2070    M /trunk/plugins/gnome/gnome_interface.c
2071    M /trunk/plugins/gnome/gnome_sys.h
2072    M /trunk/plugins/gnome/intf_gnome.c
2073    M /trunk/plugins/gnome/intf_gnome.glade
2074    M /trunk/plugins/sdl/aout_sdl.c
2075    M /trunk/plugins/sdl/sdl.c
2076    M /trunk/plugins/sdl/vout_sdl.c
2077    M /trunk/src/input/input_ext-intf.c
2078    M /trunk/src/interface/main.c
2079    M /trunk/src/video_output/video_output.c
2080    M /trunk/src/video_output/video_yuv.c
2083  * added --intf option to vlc
2084  * started cleaning vout_sdl.c
2085  * the dummy plugin works again
2086  * added a slider to the Gnome interface so that we can browse through streams
2088   There is a problem with the slider: we sometimes get unexpected async
2089   replies, which would mean that we don't properly lock our Xlib calls.
2090   Which is true. But we also get these errors when using `--vout dummy'.
2091   I'll investigate.
2093 ------------------------------------------------------------------------
2094 r664 | sam | 2001-02-13 07:31:05 +0100 (Tue, 13 Feb 2001) | 6 lines
2095 Changed paths:
2096    M /trunk/plugins/motion/vdec_motion_common.c
2099  * Quick patch to avoid a segfault when arbitrarily seeking the stream.
2101   Meuuh: you probably have a better solution for this ; I simply don't
2102   know the video decoder well enough to do it myself.
2104 ------------------------------------------------------------------------
2105 r665 | stef | 2001-02-13 11:08:51 +0100 (Tue, 13 Feb 2001) | 15 lines
2106 Changed paths:
2107    D /trunk/plugins/dvd/css_table.h
2108    M /trunk/plugins/dvd/dvd_css.c
2109    M /trunk/plugins/dvd/dvd_css.h
2110    M /trunk/plugins/dvd/dvd_ifo.c
2111    M /trunk/plugins/dvd/dvd_ifo.h
2112    M /trunk/plugins/dvd/input_dvd.c
2114 -adaptation of DVD module to navigation slider. The seek has to be
2115 done on a multiple of 2048, and shopuld take care of the offset to the
2116 beginning of the stream. It works with most of my DVDs by fails to
2117 detect size of some streams.
2119 -change of the order of call to ifo and css functions in input_dvd.c,
2120 because we can't read ifo files before authentification on some DVDs.
2122 -changed location of some css tables.
2124 -we read ifo date and decrypt css keys for all titles now. It takes quite a
2125 long time to initialize with some DVDs (if you have 42 titles for
2126 instance). The key decryption might give a false value if the title is
2127 less than 10 Mb ; I'm working on that :)
2129 ------------------------------------------------------------------------
2130 r666 | massiot | 2001-02-13 14:01:15 +0100 (Tue, 13 Feb 2001) | 2 lines
2131 Changed paths:
2132    M /trunk/plugins/motion/vdec_motion_common.c
2133    M /trunk/src/video_decoder/vpar_headers.h
2134    M /trunk/src/video_parser/video_parser.c
2135    M /trunk/src/video_parser/vpar_blocks.c
2136    M /trunk/src/video_parser/vpar_headers.c
2138 * Really fixed MC segfault bug.
2140 ------------------------------------------------------------------------
2141 r667 | stef | 2001-02-14 05:11:01 +0100 (Wed, 14 Feb 2001) | 15 lines
2142 Changed paths:
2143    M /trunk/plugins/dvd/dvd_css.c
2144    M /trunk/plugins/dvd/dvd_ifo.c
2145    M /trunk/plugins/dvd/dvd_ifo.h
2146    M /trunk/plugins/dvd/input_dvd.c
2147    M /trunk/plugins/dvd/input_dvd.h
2149 -Changes in the way stream size in DVD mode is calculated. It is no
2150 longer such an ugly kludge and is much more accurate.
2152 -Changes in DVDSeek so that the interface slider is in 0 when we are at
2153 the beginning of the strem.
2155 -Try to detect the beginning of the movie in the middle of the title. It
2156 works for most of the DVDs but will begin in the middle of the movie
2157 with some others.
2159 -Calculate only the first title key in css mode because it might take a
2160 long time with some title. The search stops now when we have a key once
2161 whereas it did stop only when we had it twice before. It should not
2162 cause problems.
2164 ------------------------------------------------------------------------
2165 r668 | sam | 2001-02-14 08:48:18 +0100 (Wed, 14 Feb 2001) | 4 lines
2166 Changed paths:
2167    M /trunk/ChangeLog
2168    M /trunk/Makefile.in
2169    M /trunk/TODO
2170    M /trunk/configure
2171    M /trunk/configure.in
2172    M /trunk/debian/changelog
2173    M /trunk/plugins/dummy/dummy.c
2174    M /trunk/plugins/gnome/gnome.c
2175    M /trunk/plugins/gnome/gnome_callbacks.c
2176    M /trunk/plugins/gnome/gnome_callbacks.h
2177    M /trunk/plugins/gnome/gnome_interface.c
2178    M /trunk/plugins/gnome/gnome_interface.h
2179    M /trunk/plugins/gnome/gnome_sys.h
2180    M /trunk/plugins/gnome/intf_gnome.c
2181    M /trunk/plugins/gnome/intf_gnome.glade
2182    M /trunk/plugins/sdl/sdl.c
2183    D /trunk/plugins/x11/intf_x11.c
2184    M /trunk/plugins/x11/vout_x11.c
2185    M /trunk/plugins/x11/x11.c
2186    M /trunk/vlc.spec
2188  * updated version information to 0.2.60 -- today's release
2189  * started porting the X11 vout (still disabled)
2190  * a few unnoticeable changes in the Gnome intf
2192 ------------------------------------------------------------------------
2193 r669 | sam | 2001-02-14 15:31:07 +0100 (Wed, 14 Feb 2001) | 3 lines
2194 Changed paths:
2195    M /trunk/Makefile.dep
2196    M /trunk/Makefile.in
2199  * Should have fixed the dependency generater for some plugins.
2201 ------------------------------------------------------------------------
2202 r670 | henri | 2001-02-14 16:58:29 +0100 (Wed, 14 Feb 2001) | 16 lines
2203 Changed paths:
2204    M /trunk/include/input_netlist.h
2205    M /trunk/plugins/dvd/input_dvd.c
2206    M /trunk/plugins/mpeg/input_ts.c
2207    A /trunk/plugins/mpeg/input_ts.h
2208    M /trunk/src/input/input_netlist.c
2209    M /trunk/src/input/mpeg_system.c
2212 Begining of TS Input
2214 Done :
2215 - fixed netlist
2216 - embryo : support TS video trough file ( kludgy ... )
2218 Next :
2219 - Write DecodePSI and DemuxPSI, wich will clean the kludges off
2221 Then :
2222 - Write NetworkOpen ( shouldn't be difficult )
2224 Eventually :
2225 - Deal with lost/corrupt packets
2227 ------------------------------------------------------------------------
2228 r671 | sam | 2001-02-15 04:01:20 +0100 (Thu, 15 Feb 2001) | 4 lines
2229 Changed paths:
2230    M /trunk/configure
2231    M /trunk/configure.in
2232    M /trunk/plugins/sdl/vout_sdl.c
2233    M /trunk/plugins/x11/vout_x11.c
2236  * X11 output works again. It's just the output, but it works; I now need
2237    to clean the code and add event handling.
2239 ------------------------------------------------------------------------
2240 r672 | sam | 2001-02-15 08:59:38 +0100 (Thu, 15 Feb 2001) | 4 lines
2241 Changed paths:
2242    M /trunk/plugins/gnome/intf_gnome.c
2243    M /trunk/plugins/sdl/vout_sdl.c
2244    M /trunk/plugins/x11/vout_x11.c
2246  * removed useless includes in intf_gnome.c
2247  * made the vout_sdl.c functions static
2248  * ported vout_x11.c to the modules API; code isn't very nice yet though
2250 ------------------------------------------------------------------------
2251 r673 | stef | 2001-02-15 22:03:27 +0100 (Thu, 15 Feb 2001) | 4 lines
2252 Changed paths:
2253    M /trunk/plugins/dvd/dvd.c
2254    M /trunk/plugins/dvd/dvd_css.c
2255    M /trunk/plugins/dvd/dvd_css.h
2256    M /trunk/plugins/dvd/dvd_ifo.c
2257    M /trunk/plugins/dvd/dvd_ifo.h
2258    A /trunk/plugins/dvd/dvd_udf.c
2259    A /trunk/plugins/dvd/dvd_udf.h
2260    M /trunk/plugins/dvd/input_dvd.h
2262 -New more recent css authentication code.
2264 -Beginning of udf support (not in Makefile)
2266 ------------------------------------------------------------------------
2267 r674 | sam | 2001-02-16 07:37:09 +0100 (Fri, 16 Feb 2001) | 14 lines
2268 Changed paths:
2269    M /trunk/Makefile.in
2270    M /trunk/configure
2271    M /trunk/configure.in
2272    M /trunk/include/config.h.in
2273    M /trunk/include/input_ext-intf.h
2274    M /trunk/plugins/gnome/gnome_callbacks.c
2275    M /trunk/plugins/gnome/gnome_callbacks.h
2276    M /trunk/plugins/gnome/gnome_interface.c
2277    M /trunk/plugins/gnome/gnome_sys.h
2278    M /trunk/plugins/gnome/intf_gnome.c
2279    M /trunk/plugins/gnome/intf_gnome.glade
2280    M /trunk/plugins/sdl/vout_sdl.c
2281    A /trunk/plugins/text
2282    A /trunk/plugins/text/intf_ncurses.c
2283    A /trunk/plugins/text/ncurses.c
2284    M /trunk/plugins/x11/vout_x11.c
2285    M /trunk/src/input/input.c
2286    M /trunk/src/input/input_ext-intf.c
2287    M /trunk/src/interface/interface.c
2290  * Fixed a segfault in the input thread creation, as well as a possible
2291    deadlock. This happened mostly when opening non-existing files.
2292  * Created input_SetStatus to do input_SetRate's job. input_SetRate will
2293    be used to set an arbitrary rate, for people who want to read DVDs at
2294    1/2.71828 times the actual speed.
2295  * Stubs for the ncurses control interface. No working code yet, but the
2296    holes just need to be filled.
2297  * Improved X11 support. Still not as functional as before.
2298  * The output window now states the method name, so that people know whether
2299    they are using X11 or SDL.
2300  * The Gnome interface is now drag'n'drop aware, you can drop a file
2301    on it just like Xine does (or so I guess).
2303 ------------------------------------------------------------------------
2304 r675 | sam | 2001-02-16 10:25:04 +0100 (Fri, 16 Feb 2001) | 12 lines
2305 Changed paths:
2306    M /trunk/Makefile.in
2307    M /trunk/configure
2308    M /trunk/configure.in
2309    M /trunk/debian/changelog
2310    M /trunk/debian/control
2311    M /trunk/debian/rules
2312    M /trunk/plugins/dvd/input_dvd.c
2313    M /trunk/plugins/gnome/gnome_callbacks.c
2314    M /trunk/plugins/gnome/gnome_interface.c
2315    M /trunk/plugins/gnome/intf_gnome.glade
2316    M /trunk/plugins/mpeg/input_ps.c
2317    M /trunk/plugins/mpeg/input_ts.c
2318    M /trunk/src/input/input.c
2319    M /trunk/src/interface/interface.c
2320    M /trunk/vlc.spec
2323  * Upgraded version number to 0.2.61. Release is today.
2325  * Fixed package building (both RPMs and .debs).
2326  * Fixed `make snapshot' rule.
2327  * Added some magic to filename detection. To read a DVD you now just
2328    need to run 'vlc dvd:/dev/hdc' for instance. Same for file:// URIs.
2329  * Fixed a segfault in the slider when no stream was playing.
2330  * Made the slider go from 0 to 100 (instead of 99 :)
2331  * The vlc now doesn't exit when finished playing. As a side effect of
2332    the playlist code being very recent, it continuously loops.
2334 ------------------------------------------------------------------------
2335 r676 | sam | 2001-02-17 09:48:56 +0100 (Sat, 17 Feb 2001) | 11 lines
2336 Changed paths:
2337    M /trunk/plugins/beos/aout_beos.cpp
2338    M /trunk/plugins/beos/beos.cpp
2339    M /trunk/plugins/beos/intf_beos.cpp
2340    M /trunk/plugins/beos/vout_beos.cpp
2341    M /trunk/plugins/sdl/vout_sdl.c
2342    M /trunk/plugins/x11/vout_x11.c
2343    M /trunk/src/misc/modules.c
2346  * Tried to fix the BeOS interface and video output. Any BeOS developers
2347    listening ? I can't even test that code, it probably wants additional
2348    fixing.
2349  * Added a workaround in modules.c for broken libc's which happen to truncate
2350    filenames in dentry structures when using 64bits offsets. The kind of
2351    stuff you only see in RedHats <g>.
2352  * Made the SDL error messages a bit more useful.
2353  * The Gnome menu is now created when mouse is released, not when it
2354    is pressed. It may sound stupid, but it really makes a difference.
2356 ------------------------------------------------------------------------
2357 r677 | stef | 2001-02-18 02:42:05 +0100 (Sun, 18 Feb 2001) | 10 lines
2358 Changed paths:
2359    M /trunk/Makefile.in
2360    M /trunk/plugins/dvd/dvd_css.c
2361    M /trunk/plugins/dvd/dvd_ifo.c
2362    M /trunk/plugins/dvd/dvd_udf.c
2363    M /trunk/plugins/dvd/dvd_udf.h
2364    M /trunk/plugins/dvd/input_dvd.c
2365    M /trunk/plugins/dvd/input_dvd.h
2367 -UDF filesystem support so that we know the location of the first video
2368 related file with 100% reliability (great change that should make DVDs
2369 with binaries and extra stuff work with vlc).
2371 -Correction of a bug in ifo reading that falsified the adress of
2372 video titles.
2374 -Changed the method for selecting title at start. It is _not_ reliable
2375 though, but it is better than the preceding one.
2377 ------------------------------------------------------------------------
2378 r678 | polux | 2001-02-18 04:32:02 +0100 (Sun, 18 Feb 2001) | 12 lines
2379 Changed paths:
2380    M /trunk/Makefile.dep
2381    M /trunk/Makefile.in
2382    M /trunk/configure
2383    M /trunk/configure.in
2384    M /trunk/include/beos_window.h
2385    M /trunk/include/modules_core.h
2386    M /trunk/include/tests.h
2387    M /trunk/include/threads.h
2388    M /trunk/plugins/beos/aout_beos.cpp
2389    M /trunk/plugins/beos/beos.cpp
2390    M /trunk/plugins/beos/intf_beos.cpp
2391    M /trunk/plugins/beos/vout_beos.cpp
2392    M /trunk/src/input/input.c
2393    M /trunk/src/misc/modules.c
2394    M /trunk/src/video_parser/video_parser.c
2397    The BeOS port seems to work again.
2399    I used this command to play an unencrypted DVD, but maybe there is a
2400    better solution: ./vlc dvd:/dev/disk/ide/atapi/1/master/0/raw
2402    Current problems: gcc doesn't like MMX-EXT instructions, and refuses
2403    to have register %ebx being used in the main application. Grr.
2405    ,-- don't trust the CVS bot, it's Sam speaking here :)
2406   /
2408 ------------------------------------------------------------------------
2409 r679 | sam | 2001-02-18 11:24:20 +0100 (Sun, 18 Feb 2001) | 4 lines
2410 Changed paths:
2411    M /trunk/Makefile.in
2412    M /trunk/configure
2413    M /trunk/configure.in
2414    M /trunk/include/config.h.in
2415    M /trunk/plugins/fb/fb.c
2416    D /trunk/plugins/fb/intf_fb.c
2417    M /trunk/plugins/fb/vout_fb.c
2418    M /trunk/src/video_output/video_output.c
2421  * Ported the framebuffer plugin to the new module API. As for most of the
2422    other video output modules, keyboard doesn't work. Except ^C to quit.
2424 ------------------------------------------------------------------------
2425 r680 | sam | 2001-02-18 20:14:27 +0100 (Sun, 18 Feb 2001) | 12 lines
2426 Changed paths:
2427    A /trunk/CONTRIBUTORS
2428    M /trunk/Makefile.in
2429    M /trunk/configure.in
2430    M /trunk/plugins/ggi/ggi.c
2431    D /trunk/plugins/ggi/intf_ggi.c
2432    M /trunk/plugins/ggi/vout_ggi.c
2433    M /trunk/plugins/gnome/gnome_interface.c
2434    M /trunk/plugins/gnome/intf_gnome.glade
2437   * configure.in and Makefile.in patches for better SDL support and
2438     support for $(bindir) $(datadir) and $(libdir) stuff, courtesy
2439     of Arkadiusz Miskiewicz <misiek@pld.ORG.PL>
2440   * Ported ggi.so to the new modules API. As for the other modules, only
2441     the "q" key works. Moreover, VLC doesn't exit cleanly if you close the
2442     GGI window.
2443   * Deactivated non-working widgets in the Gnome interface.
2444   * Added CONTRIBUTORS file.
2446   Hint of the day: don't expect to code quite long in your bed when sleepy.
2448 ------------------------------------------------------------------------
2449 r681 | stef | 2001-02-19 04:12:26 +0100 (Mon, 19 Feb 2001) | 8 lines
2450 Changed paths:
2451    M /trunk/include/input_ext-intf.h
2452    M /trunk/plugins/dvd/dvd_ifo.c
2453    M /trunk/plugins/dvd/input_dvd.c
2454    M /trunk/plugins/dvd/input_dvd.h
2456 -Change in the code to detect beginning of movie. It is much better now
2457 but still fails with some DVD for which the movie is not the first
2458 Program.
2460 As a consequence some DVD that worked before don't work anymore.
2462 -Beginning of ideas to handle chapters and ES selection
2464 ------------------------------------------------------------------------
2465 r682 | sam | 2001-02-19 04:46:27 +0100 (Mon, 19 Feb 2001) | 3 lines
2466 Changed paths:
2467    M /trunk/include/beos_window.h
2468    M /trunk/plugins/beos/intf_beos.cpp
2469    M /trunk/plugins/beos/vout_beos.cpp
2472   * Drag and drop support under BeOS.
2474 ------------------------------------------------------------------------
2475 r683 | reno | 2001-02-19 09:02:33 +0100 (Mon, 19 Feb 2001) | 3 lines
2476 Changed paths:
2477    M /trunk/src/ac3_decoder/ac3_bit_stream.h
2478    M /trunk/src/ac3_decoder/ac3_mantissa.c
2479    M /trunk/src/ac3_decoder/ac3_parse.c
2481 * Add dither fix
2482 * Some cosmetic changes
2484 ------------------------------------------------------------------------
2485 r684 | massiot | 2001-02-19 20:08:59 +0100 (Mon, 19 Feb 2001) | 3 lines
2486 Changed paths:
2487    M /trunk/include/input_ext-intf.h
2488    M /trunk/plugins/motion/vdec_motion_common.c
2489    M /trunk/src/input/input.c
2490    M /trunk/src/input/mpeg_system.c
2491    M /trunk/src/video_decoder/video_decoder.c
2492    M /trunk/src/video_parser/vpar_blocks.c
2493    M /trunk/src/video_parser/vpar_headers.c
2495 * mux_rate parsing ;
2496 * Changed video decoder's error messages into warnings.
2498 ------------------------------------------------------------------------
2499 r685 | massiot | 2001-02-19 20:28:33 +0100 (Mon, 19 Feb 2001) | 4 lines
2500 Changed paths:
2501    M /trunk/plugins/sdl/vout_sdl.c
2502    M /trunk/src/video_output/video_output.c
2504 * Kludge of the kludge, removing an oddity in YUV initialisation, and
2505 activating YUV overlay on startup whenever hardware acceleration is
2506 available. Thanks for bearing with us, stay tuned.
2508 ------------------------------------------------------------------------
2509 r686 | stef | 2001-02-20 03:53:13 +0100 (Tue, 20 Feb 2001) | 10 lines
2510 Changed paths:
2511    M /trunk/include/input.h
2512    M /trunk/include/input_ext-intf.h
2513    M /trunk/include/modules.h
2514    M /trunk/plugins/dvd/dvd_css.c
2515    M /trunk/plugins/dvd/dvd_css.h
2516    M /trunk/plugins/dvd/dvd_ifo.c
2517    M /trunk/plugins/dvd/dvd_ifo.h
2518    M /trunk/plugins/dvd/input_dvd.c
2519    M /trunk/plugins/dvd/input_dvd.h
2520    M /trunk/plugins/gnome/gnome_callbacks.c
2521    M /trunk/plugins/gnome/intf_gnome.c
2522    M /trunk/plugins/mpeg/input_ps.c
2523    M /trunk/plugins/mpeg/input_ts.c
2524    M /trunk/src/input/input.c
2525    M /trunk/src/input/input_ext-intf.c
2526    M /trunk/src/input/input_programs.c
2529  First serie of changes in DVD module for the forthcoming interface menus
2530  There is a new capability in input type modules for setting the
2531 attributes of a new area. It is set to NULL for PS and TS plugins.
2532  It should be called for every title change, chapter change,
2533 audio mode change or spu channel change.
2535 But this part of code is not used at the moment, and is not completed
2536 yet.
2538 ------------------------------------------------------------------------
2539 r687 | stef | 2001-02-20 03:56:50 +0100 (Tue, 20 Feb 2001) | 2 lines
2540 Changed paths:
2541    M /trunk/plugins/dvd/dvd_ifo.c
2543 Removed flooding debug info :)
2545 ------------------------------------------------------------------------
2546 r688 | sam | 2001-02-20 08:49:13 +0100 (Tue, 20 Feb 2001) | 15 lines
2547 Changed paths:
2548    M /trunk/AUTHORS
2549    M /trunk/CONTRIBUTORS
2550    M /trunk/INSTALL
2551    M /trunk/Makefile.in
2552    M /trunk/configure
2553    M /trunk/configure.in
2554    M /trunk/debian/control
2555    M /trunk/debian/rules
2556    M /trunk/debian/vlc.docs
2557    M /trunk/include/modules_inner.h
2558    M /trunk/plugins/alsa/alsa.c
2559    M /trunk/plugins/alsa/aout_alsa.c
2560    M /trunk/plugins/beos/aout_beos.cpp
2561    M /trunk/plugins/beos/beos.cpp
2562    M /trunk/plugins/beos/intf_beos.cpp
2563    M /trunk/plugins/beos/vout_beos.cpp
2564    M /trunk/plugins/dsp/aout_dsp.c
2565    M /trunk/plugins/dsp/dsp.c
2566    M /trunk/plugins/dummy/aout_dummy.c
2567    M /trunk/plugins/dummy/dummy.c
2568    M /trunk/plugins/dummy/intf_dummy.c
2569    M /trunk/plugins/dummy/vout_dummy.c
2570    M /trunk/plugins/dvd/dvd.c
2571    M /trunk/plugins/dvd/dvd_css.c
2572    M /trunk/plugins/dvd/dvd_ifo.c
2573    A /trunk/plugins/dvd/dvd_ioctl.c
2574    A /trunk/plugins/dvd/dvd_ioctl.h
2575    M /trunk/plugins/dvd/dvd_udf.c
2576    M /trunk/plugins/dvd/input_dvd.c
2577    M /trunk/plugins/dvd/input_dvd.h
2578    M /trunk/plugins/esd/aout_esd.c
2579    M /trunk/plugins/esd/esd.c
2580    M /trunk/plugins/fb/fb.c
2581    M /trunk/plugins/fb/vout_fb.c
2582    M /trunk/plugins/ggi/ggi.c
2583    M /trunk/plugins/ggi/vout_ggi.c
2584    M /trunk/plugins/glide/glide.c
2585    D /trunk/plugins/glide/intf_glide.c
2586    M /trunk/plugins/glide/vout_glide.c
2587    M /trunk/plugins/gnome/gnome.c
2588    M /trunk/plugins/gnome/gnome_callbacks.c
2589    M /trunk/plugins/gnome/intf_gnome.c
2590    M /trunk/plugins/idct/idct.c
2591    M /trunk/plugins/idct/idctclassic.c
2592    M /trunk/plugins/idct/idctmmx.c
2593    M /trunk/plugins/idct/idctmmxext.c
2594    D /trunk/plugins/mga/intf_mga.c
2595    M /trunk/plugins/mga/mga.c
2596    M /trunk/plugins/mga/vout_mga.c
2597    M /trunk/plugins/mga/vout_mga.h
2598    M /trunk/plugins/motion/motion.c
2599    M /trunk/plugins/motion/motionmmx.c
2600    M /trunk/plugins/motion/motionmmxext.c
2601    M /trunk/plugins/mpeg/input_ps.c
2602    M /trunk/plugins/mpeg/input_ts.c
2603    M /trunk/plugins/mpeg/ps.c
2604    M /trunk/plugins/mpeg/ts.c
2605    M /trunk/plugins/null/null.c
2606    M /trunk/plugins/sdl/aout_sdl.c
2607    M /trunk/plugins/sdl/sdl.c
2608    M /trunk/plugins/sdl/vout_sdl.c
2609    M /trunk/plugins/text/intf_ncurses.c
2610    M /trunk/plugins/text/ncurses.c
2611    M /trunk/plugins/x11/vout_x11.c
2612    M /trunk/plugins/x11/x11.c
2613    M /trunk/plugins/yuv/video_yuv.c
2614    M /trunk/plugins/yuv/video_yuvmmx.c
2615    M /trunk/plugins/yuv/yuv.c
2616    M /trunk/plugins/yuv/yuvmmx.c
2617    M /trunk/src/interface/intf_msg.c
2618    M /trunk/src/misc/modules.c
2619    M /trunk/src/video_output/video_output.c
2620    M /trunk/src/video_output/video_text.c
2623   * Ported Glide and MGA plugins to the new module API. MGA never worked,
2624     so this didn't make it work better.
2625   * Started thinking about built-in modules, and added some code to
2626     make it easier eventually.
2627   * Added Oct in the AUTHORS file.
2628   * Fixed a mistake in configure.in.
2629   * All your base are belong to us.
2630   * Fixed a bug in src/misc/modules which prevented loading modules
2631     when launched from the Tracker.
2632   * Fixed a similar bug in src/video_output/video_text.c.
2633   * BeOS CSS support, thanks to Markus Kuespert <ltlBeBoy@beosmail.com>
2634     who ported the Linux DVD ioctls. We can now read encrypted DVDs
2635     under BeOS ! Woohoo.
2637 ------------------------------------------------------------------------
2638 r689 | stef | 2001-02-20 09:47:25 +0100 (Tue, 20 Feb 2001) | 3 lines
2639 Changed paths:
2640    M /trunk/include/input_ext-intf.h
2641    M /trunk/plugins/dvd/dvd_css.c
2642    M /trunk/plugins/dvd/input_dvd.c
2643    M /trunk/plugins/gnome/gnome_callbacks.c
2644    M /trunk/plugins/gnome/intf_gnome.c
2645    M /trunk/plugins/mpeg/input_ps.c
2646    M /trunk/src/input/input.c
2647    M /trunk/src/input/input_ext-intf.c
2648    M /trunk/src/input/input_programs.c
2650 Second step in area management ; everything is in place now to have
2651 title handling; it is coming :)
2653 ------------------------------------------------------------------------
2654 r690 | sam | 2001-02-20 10:10:36 +0100 (Tue, 20 Feb 2001) | 7 lines
2655 Changed paths:
2656    M /trunk/plugins/gnome/gnome_interface.c
2657    M /trunk/plugins/gnome/intf_gnome.c
2658    M /trunk/plugins/gnome/intf_gnome.glade
2659    M /trunk/src/input/input.c
2662  * Fixed a segfault in input.c when no input plugin was found for
2663    a given file.
2664  * Fixed a deadlock in the Gnome interface. Next time I'll initialize
2665    my mutexes, I promise.
2666  * Added Oct to the authors list in intf_gnome.glade :)
2668 ------------------------------------------------------------------------
2669 r691 | sam | 2001-02-20 12:34:01 +0100 (Tue, 20 Feb 2001) | 2 lines
2670 Changed paths:
2671    M /trunk/configure
2672    M /trunk/configure.in
2674  * Fixed a bash-ism in configure.in
2676 ------------------------------------------------------------------------
2677 r692 | reno | 2001-02-20 13:06:28 +0100 (Tue, 20 Feb 2001) | 4 lines
2678 Changed paths:
2679    M /trunk/Makefile.in
2680    M /trunk/src/ac3_decoder/ac3_bit_allocate.c
2681    M /trunk/src/ac3_decoder/ac3_bit_stream.h
2682    M /trunk/src/ac3_decoder/ac3_decoder.c
2683    M /trunk/src/ac3_decoder/ac3_decoder.h
2684    M /trunk/src/ac3_decoder/ac3_decoder_thread.c
2685    M /trunk/src/ac3_decoder/ac3_downmix.c
2686    A /trunk/src/ac3_decoder/ac3_downmix.h
2687    A /trunk/src/ac3_decoder/ac3_downmix_c.c
2688    M /trunk/src/ac3_decoder/ac3_exponent.c
2689    M /trunk/src/ac3_decoder/ac3_imdct.c
2690    M /trunk/src/ac3_decoder/ac3_internal.h
2691    M /trunk/src/ac3_decoder/ac3_mantissa.c
2692    M /trunk/src/ac3_decoder/ac3_parse.c
2693    M /trunk/src/ac3_decoder/ac3_rematrix.c
2695 * Move ac3 globals variables into structures
2696 * Adding authors
2697 * Prepared to add asm imdct and downmix
2699 ------------------------------------------------------------------------
2700 r693 | massiot | 2001-02-20 14:41:01 +0100 (Tue, 20 Feb 2001) | 3 lines
2701 Changed paths:
2702    M /trunk/configure
2703    M /trunk/configure.in
2705 On machines without dvd ioctl, remove the DVD plugin from the Makefile,
2706 fucking holy piece of *?\239?\191?\189$^%?\239?\191?\189 !
2708 ------------------------------------------------------------------------
2709 r694 | massiot | 2001-02-20 16:03:00 +0100 (Tue, 20 Feb 2001) | 2 lines
2710 Changed paths:
2711    M /trunk/include/video.h
2712    M /trunk/plugins/motion/vdec_motion_common.c
2713    M /trunk/src/video_output/video_output.c
2714    M /trunk/src/video_parser/video_parser.c
2716 Minor optimizations in the video decoder.
2718 ------------------------------------------------------------------------
2719 r695 | polux | 2001-02-20 18:08:02 +0100 (Tue, 20 Feb 2001) | 2 lines
2720 Changed paths:
2721    M /trunk/include/threads.h
2723 Added the BeOS code for vlc_mutex_destroy() and vlc_cond_destroy()
2725 ------------------------------------------------------------------------
2726 r696 | sam | 2001-02-21 00:30:15 +0100 (Wed, 21 Feb 2001) | 7 lines
2727 Changed paths:
2728    M /trunk/Makefile.in
2729    M /trunk/configure
2730    M /trunk/configure.in
2731    M /trunk/debian/changelog
2732    M /trunk/include/tests.h
2733    M /trunk/plugins/dvd/dvd_css.c
2734    M /trunk/plugins/dvd/dvd_ioctl.h
2735    M /trunk/plugins/dvd/input_dvd.c
2736    M /trunk/plugins/dvd/input_dvd.h
2737    M /trunk/plugins/gnome/intf_gnome.c
2740  * Updated version number to 0.2.62. Release tonight.
2742  * DVD plugin is still non-functional when you don't have DVD ioctls,
2743    but at least it compiles under BeOS as well.
2744  * Minor cosmetic changes here and there.
2746 ------------------------------------------------------------------------
2747 r697 | sam | 2001-02-21 01:47:49 +0100 (Wed, 21 Feb 2001) | 4 lines
2748 Changed paths:
2749    M /trunk/AUTHORS
2750    M /trunk/Makefile.in
2751    M /trunk/plugins/gnome/gnome_interface.c
2752    M /trunk/vlc.spec
2755   * Forgot to fix the vlc.spec.
2756   * Added Bozo to the author list.
2758 ------------------------------------------------------------------------
2759 r698 | henri | 2001-02-21 05:38:59 +0100 (Wed, 21 Feb 2001) | 13 lines
2760 Changed paths:
2761    M /trunk/include/mpeg_system.h
2762    M /trunk/plugins/mpeg/input_ts.c
2763    M /trunk/plugins/mpeg/input_ts.h
2764    M /trunk/src/input/mpeg_system.c
2767 TS Input :
2768 - Added DemuxPSI, DecodePAT and DecodePMT. Never tested which streams
2769   where PAT or PMT are splitted in more than one section.
2770 - Some TS files still don't work (matrix.ts i.e : no sound ),
2771   others do ... i'll have to investigate.
2773 Todo :
2774 - What if data get unaligned ?
2775 - Write NetworkOpen
2776 - Try to find why I get no sound on matrix.ts
2777 - Support Stream and program selection.
2779 ------------------------------------------------------------------------
2780 r699 | sam | 2001-02-21 12:49:18 +0100 (Wed, 21 Feb 2001) | 9 lines
2781 Changed paths:
2782    M /trunk/INSTALL
2783    M /trunk/Makefile.in
2784    M /trunk/configure
2785    M /trunk/configure.in
2786    M /trunk/plugins/gnome/gnome_interface.c
2787    M /trunk/plugins/gnome/intf_gnome.glade
2788    A /trunk/plugins/gtk
2789    A /trunk/plugins/gtk/.cvsignore
2790    A /trunk/plugins/gtk/gtk.c
2791    A /trunk/plugins/gtk/gtk.o
2792    A /trunk/plugins/gtk/gtk_callbacks.c
2793    A /trunk/plugins/gtk/gtk_callbacks.h
2794    A /trunk/plugins/gtk/gtk_callbacks.o
2795    A /trunk/plugins/gtk/gtk_interface.c
2796    A /trunk/plugins/gtk/gtk_interface.h
2797    A /trunk/plugins/gtk/gtk_interface.o
2798    A /trunk/plugins/gtk/gtk_support.c
2799    A /trunk/plugins/gtk/gtk_support.h
2800    A /trunk/plugins/gtk/gtk_support.o
2801    A /trunk/plugins/gtk/gtk_sys.h
2802    A /trunk/plugins/gtk/intf_gtk.c
2803    A /trunk/plugins/gtk/intf_gtk.glade
2804    A /trunk/plugins/gtk/intf_gtk.o
2807   (note: empty CVS mails mean that a new directory has been created,
2808    don't forget to use the -p option if you cvs update)
2810   * Added a plain Gtk+ port of the Gnome interface, for the gnome-impaired
2811     people. Gtk+ is now compiled by default, while Gnome isn't (you will
2812     have to add --enable-gnome when running configure)
2813   * Replaced -lcurses with -lncurses in configure.in.
2815 ------------------------------------------------------------------------
2816 r700 | sam | 2001-02-21 12:53:30 +0100 (Wed, 21 Feb 2001) | 4 lines
2817 Changed paths:
2818    D /trunk/plugins/gtk/gtk.o
2819    D /trunk/plugins/gtk/gtk_callbacks.o
2820    D /trunk/plugins/gtk/gtk_interface.o
2821    D /trunk/plugins/gtk/gtk_support.o
2822    D /trunk/plugins/gtk/intf_gtk.o
2825    Hrm. Some strange phenomenon known as sleepiness made me commit a
2826    bunch of .o's. Blame me.
2828 ------------------------------------------------------------------------
2829 r701 | polux | 2001-02-21 16:52:40 +0100 (Wed, 21 Feb 2001) | 6 lines
2830 Changed paths:
2831    M /trunk/include/beos_window.h
2832    M /trunk/plugins/beos/vout_beos.cpp
2834 Some changes in the BeOS video output :
2835 - New video output method, the vlc now uses BBitmap instead of
2836   BDirectWindow (better performances)
2837 - Added resizing
2838 - Added beta support for overlay
2840 ------------------------------------------------------------------------
2841 r702 | reno | 2001-02-22 06:31:55 +0100 (Thu, 22 Feb 2001) | 2 lines
2842 Changed paths:
2843    M /trunk/src/ac3_decoder/ac3_bit_stream.h
2844    M /trunk/src/ac3_decoder/ac3_decoder.c
2845    M /trunk/src/ac3_decoder/ac3_decoder_thread.c
2846    M /trunk/src/ac3_decoder/ac3_downmix.c
2847    M /trunk/src/ac3_decoder/ac3_downmix_c.c
2848    M /trunk/src/ac3_decoder/ac3_exponent.c
2849    M /trunk/src/ac3_decoder/ac3_imdct.c
2850    M /trunk/src/ac3_decoder/ac3_mantissa.c
2851    M /trunk/src/ac3_decoder/ac3_parse.c
2853 * Fix bug in ac3dec for mono streams
2855 ------------------------------------------------------------------------
2856 r703 | stef | 2001-02-22 09:44:45 +0100 (Thu, 22 Feb 2001) | 8 lines
2857 Changed paths:
2858    M /trunk/include/config.h.in
2859    M /trunk/include/input.h
2860    M /trunk/plugins/dvd/dvd_css.c
2861    M /trunk/plugins/dvd/dvd_ifo.c
2862    M /trunk/plugins/dvd/dvd_ifo.h
2863    M /trunk/plugins/dvd/input_dvd.c
2864    M /trunk/plugins/dvd/input_dvd.h
2865    M /trunk/plugins/gnome/gnome_callbacks.c
2866    M /trunk/plugins/gnome/gnome_callbacks.h
2867    M /trunk/plugins/gnome/gnome_interface.c
2868    M /trunk/plugins/gnome/intf_gnome.glade
2869    M /trunk/src/input/input_programs.c
2870    M /trunk/src/interface/main.c
2872 -New ES detection based on .ifo for DVD module. It might fail (I have
2873 found one DVD for which ifo seems false).
2875 -Title and chapter selection on the command line (see -t and -T options)
2876 It will allow to watch some DVD that went through menus by default.
2878 -beginning of menus in gnome interface.
2880 ------------------------------------------------------------------------
2881 r704 | stef | 2001-02-22 09:59:54 +0100 (Thu, 22 Feb 2001) | 3 lines
2882 Changed paths:
2883    M /trunk/plugins/dvd/input_dvd.c
2885 I have polioted once more with a bad file in the commit. It should work
2886 better now. :p
2888 ------------------------------------------------------------------------
2889 r705 | massiot | 2001-02-22 17:17:12 +0100 (Thu, 22 Feb 2001) | 3 lines
2890 Changed paths:
2891    M /trunk/include/input.h
2892    M /trunk/include/input_ext-intf.h
2893    M /trunk/include/keystrokes.h
2894    M /trunk/plugins/sdl/vout_sdl.c
2895    M /trunk/src/input/input_programs.c
2896    M /trunk/src/interface/interface.c
2898 * Added a 'd' keystroke to dump the stream contents (for debugging
2899 purposes).
2901 ------------------------------------------------------------------------
2902 r706 | massiot | 2001-02-22 18:00:20 +0100 (Thu, 22 Feb 2001) | 2 lines
2903 Changed paths:
2904    M /trunk/include/input_ext-intf.h
2905    M /trunk/src/input/input_clock.c
2906    M /trunk/src/input/input_ext-intf.c
2907    M /trunk/src/input/input_programs.c
2909 * Added functions and hooks to display dates instead of off_t.
2911 ------------------------------------------------------------------------
2912 r707 | massiot | 2001-02-23 13:37:31 +0100 (Fri, 23 Feb 2001) | 2 lines
2913 Changed paths:
2914    M /trunk/src/input/input_programs.c
2916 * Fixed a compile problem in debug mode.
2918 ------------------------------------------------------------------------
2919 r708 | massiot | 2001-02-23 14:22:58 +0100 (Fri, 23 Feb 2001) | 2 lines
2920 Changed paths:
2921    M /trunk/src/video_parser/vpar_synchro.c
2923 * Added debug messages.
2925 ------------------------------------------------------------------------
2926 r709 | massiot | 2001-02-23 15:07:25 +0100 (Fri, 23 Feb 2001) | 2 lines
2927 Changed paths:
2928    M /trunk/src/video_decoder/video_fifo.h
2929    M /trunk/src/video_parser/vpar_blocks.c
2931 * Fixed a structural major bug in the macroblock structure management.
2933 ------------------------------------------------------------------------
2934 r710 | massiot | 2001-02-23 18:58:22 +0100 (Fri, 23 Feb 2001) | 2 lines
2935 Changed paths:
2936    M /trunk/src/video_parser/vpar_blocks.c
2938 * Disabled slice-level resynchro since it's probably buggy.
2940 ------------------------------------------------------------------------
2941 r711 | sam | 2001-02-26 13:16:29 +0100 (Mon, 26 Feb 2001) | 10 lines
2942 Changed paths:
2943    M /trunk/Makefile.in
2944    M /trunk/debian/control
2945    M /trunk/debian/rules
2946    D /trunk/debian/vlc-gnome.menu
2947    A /trunk/debian/vlc-gtk.menu
2948    M /trunk/debian/vlc.copyright
2949    D /trunk/include/beos_window.h
2950    M /trunk/include/intf_msg.h
2951    D /trunk/include/video_graphics.h
2952    M /trunk/plugins/beos/intf_beos.cpp
2953    M /trunk/plugins/beos/vout_beos.cpp
2954    A /trunk/plugins/beos/window.h
2955    M /trunk/plugins/dvd/dvd_ioctl.c
2956    M /trunk/plugins/dvd/input_dvd.c
2957    M /trunk/plugins/gtk/gtk_interface.c
2958    M /trunk/plugins/gtk/intf_gtk.glade
2959    M /trunk/src/interface/intf_msg.c
2960    M /trunk/src/spu_decoder/spu_decoder.c
2961    M /trunk/src/spu_decoder/spu_decoder.h
2962    M /trunk/src/video_output/video_output.c
2963    M /trunk/src/video_output/video_spu.c
2964    M /trunk/src/video_output/video_spu.h
2965    M /trunk/src/video_output/video_text.c
2966    M /trunk/src/video_output/video_text.h
2967    M /trunk/src/video_output/video_yuv.c
2968    M /trunk/src/video_output/video_yuv.h
2971   * The Gtk+ interface is now built as a Debian package as well. The Gnome
2972     package depends on it because of the icon and menu entry.
2973   * Added an intf_WarnHexDump() function to do raw hexadecimal dumps of
2974     memory areas. For debugging purposes or for real men, as you wish.
2975   * Lots of tidying in dvd_ioctl.c, a few comments added.
2976   * Better error handling in the subpicture decoder.
2977   * Tidied video_spu.c. More to come later.
2978   * Fixed subtitle displaying. Will soon work in overlay mode as well.
2980 ------------------------------------------------------------------------
2981 r712 | sam | 2001-02-26 18:41:11 +0100 (Mon, 26 Feb 2001) | 5 lines
2982 Changed paths:
2983    M /trunk/src/interface/main.c
2984    M /trunk/src/spu_decoder/spu_decoder.c
2985    M /trunk/src/spu_decoder/spu_decoder.h
2986    M /trunk/src/video_output/video_spu.c
2989   * Optimizations done to the SPU decoder. Now the RLE is expanded at
2990     decoding time, not rendering time. The main loop in vout_RenderSPU
2991     is now 20 lines long.
2993 ------------------------------------------------------------------------
2994 r713 | sam | 2001-02-28 06:20:02 +0100 (Wed, 28 Feb 2001) | 5 lines
2995 Changed paths:
2996    M /trunk/plugins/ggi/vout_ggi.c
2997    M /trunk/src/spu_decoder/spu_decoder.c
2998    M /trunk/src/spu_decoder/spu_decoder.h
2999    M /trunk/src/video_output/video_spu.c
3002   * Additional optimizations to the subtitle decoder
3003   * The GGI video output should now be faster. Also, right-mouse-clicking
3004     works in GGI mode as well.
3006 ------------------------------------------------------------------------
3007 r714 | reno | 2001-03-02 03:49:11 +0100 (Fri, 02 Mar 2001) | 2 lines
3008 Changed paths:
3009    A /trunk/plugins/sdl/intf_sdl.c
3010    M /trunk/src/ac3_decoder/ac3_downmix.c
3011    M /trunk/src/ac3_decoder/ac3_imdct.c
3012    M /trunk/src/ac3_decoder/ac3_internal.h
3014 * Bug fix with frequential downmix
3016 ------------------------------------------------------------------------
3017 r715 | stef | 2001-03-02 04:32:46 +0100 (Fri, 02 Mar 2001) | 18 lines
3018 Changed paths:
3019    M /trunk/Makefile.in
3020    M /trunk/include/input_ext-dec.h
3021    M /trunk/include/input_ext-intf.h
3022    A /trunk/plugins/dvd/dvd_netlist.c
3023    A /trunk/plugins/dvd/dvd_netlist.h
3024    M /trunk/plugins/dvd/input_dvd.c
3025    M /trunk/plugins/dvd/input_dvd.h
3026    M /trunk/src/input/input.c
3027    M /trunk/src/input/mpeg_system.c
3029 -New function for DVD reading, that is able to read multiple blocks
3030 (I've chosen 32 now), that doesn't use any memcpy anymore and is also much
3031 faster. It is ready now for cell positioning in multi-angle DVD (to come
3032 soon).
3034 -DVD specific netlist adapted to 2048 bytes long blocks that contain
3035 several data_packets.
3037 -Modification in mpeg_system.c to use p_payload_start instead of
3038 p_buffer (necessary for DVD plugin). It does not break other plugins
3039 since they set p_payload_start to p_buffer
3041 -New field i_read_once in input_thread_s to be able to read more than
3042 the TS related 7 packets ; i_read_once is set to INPUT_READ_ONCE by
3043 defaults but plugins can change it during initialisation.
3045 Please check that nothing is broken :)
3047 ------------------------------------------------------------------------
3048 r716 | massiot | 2001-03-02 14:20:29 +0100 (Fri, 02 Mar 2001) | 7 lines
3049 Changed paths:
3050    M /trunk/include/input_ext-dec.h
3051    M /trunk/include/video_output.h
3052    M /trunk/src/input/input_ext-intf.c
3053    M /trunk/src/input/mpeg_system.c
3054    M /trunk/src/video_output/video_output.c
3055    M /trunk/src/video_parser/video_parser.c
3056    M /trunk/src/video_parser/vpar_headers.c
3058 * Fixed miscellaneous alignment problems (alpha/sparc ports) ;
3059 * Added a fps display when toggling 'i' ;
3060 * Fixed a bug in the video parser where one picture buffer was not
3061 released at quit time ;
3062 * Broke the mux_rate calculation, but hey guys ! it was already broken and
3063 nobody noticed it.
3065 ------------------------------------------------------------------------
3066 r717 | sam | 2001-03-02 14:47:01 +0100 (Fri, 02 Mar 2001) | 6 lines
3067 Changed paths:
3068    M /trunk/Makefile.in
3069    M /trunk/configure
3070    M /trunk/configure.in
3071    M /trunk/debian/control
3072    M /trunk/include/defs.h.in
3073    M /trunk/plugins/dvd/dvd.c
3074    M /trunk/plugins/dvd/dvd_css.c
3075    A /trunk/plugins/dvd/dvd_csstables.h
3076    M /trunk/plugins/dvd/input_dvd.c
3079   * Changed debian/control to fix Debian bug #83707
3080   * Added a --disable-css configure option
3081   * Moved some code here and there in the DVD plugin to make it easier
3082     for me to build the Debian CSS-free packages.
3084 ------------------------------------------------------------------------
3085 r718 | massiot | 2001-03-02 14:49:37 +0100 (Fri, 02 Mar 2001) | 3 lines
3086 Changed paths:
3087    M /trunk/include/input.h
3088    M /trunk/plugins/dvd/input_dvd.c
3089    M /trunk/src/input/input_programs.c
3091 * Made input_SelectES() and input_UnselectES() not block the input thread
3092 for a long time.
3094 ------------------------------------------------------------------------
3095 r719 | massiot | 2001-03-02 16:51:22 +0100 (Fri, 02 Mar 2001) | 2 lines
3096 Changed paths:
3097    M /trunk/plugins/mpeg/input_ps.c
3098    M /trunk/src/input/input_programs.c
3100 * More consistency in the p_input->stream management.
3102 ------------------------------------------------------------------------
3103 r720 | reno | 2001-03-02 17:46:57 +0100 (Fri, 02 Mar 2001) | 2 lines
3104 Changed paths:
3105    D /trunk/plugins/sdl/intf_sdl.c
3107 Remove an unused file reintroduce after my last commit
3109 ------------------------------------------------------------------------
3110 r721 | stef | 2001-03-03 08:07:01 +0100 (Sat, 03 Mar 2001) | 5 lines
3111 Changed paths:
3112    M /trunk/plugins/dvd/dvd_css.c
3113    M /trunk/plugins/dvd/dvd_css.h
3114    M /trunk/plugins/dvd/dvd_netlist.c
3115    M /trunk/plugins/dvd/dvd_netlist.h
3116    M /trunk/plugins/dvd/input_dvd.c
3117    M /trunk/plugins/dvd/input_dvd.h
3119 -completely changed title and chapter initialization. Now we have real
3120 title units.
3122 -Fixed size for a majority of DVD.
3124 ------------------------------------------------------------------------
3125 r722 | sam | 2001-03-03 12:01:07 +0100 (Sat, 03 Mar 2001) | 7 lines
3126 Changed paths:
3127    M /trunk/Makefile.in
3128    M /trunk/configure
3129    M /trunk/configure.in
3130    M /trunk/debian/changelog
3131    A /trunk/debian/changelog-css
3132    A /trunk/debian/control-css
3133    M /trunk/debian/rules
3134    A /trunk/debian/rules-css
3135    M /trunk/debian/vlc-gtk.menu
3136    M /trunk/debian/vlc.1
3137    M /trunk/debian/vlc.menu
3138    M /trunk/plugins/dvd/dvd.c
3139    M /trunk/plugins/dvd/dvd_css.c
3140    M /trunk/plugins/dvd/input_dvd.c
3141    A /trunk/share/gvlc.xpm
3142    A /trunk/share/vlc.xpm
3143    M /trunk/src/interface/main.c
3146   * Added debian/* files to help generating CSS-enabled non-US packages,
3147     and changed plugins/dvd/* to reflect this change.
3148   * Added .xpm icons (fixes lintian warnings).
3149   * --help output and manpage are now in sync (Closes Debian bug #87478).
3150   * Fixed Build-dpends entry in debian/control (Closes Debian bug #83707).
3152 ------------------------------------------------------------------------
3153 r723 | sam | 2001-03-04 04:12:00 +0100 (Sun, 04 Mar 2001) | 5 lines
3154 Changed paths:
3155    M /trunk/plugins/dvd/input_dvd.c
3156    M /trunk/plugins/gnome/gnome_callbacks.c
3157    M /trunk/plugins/gnome/gnome_callbacks.h
3158    M /trunk/plugins/gnome/gnome_interface.c
3159    M /trunk/plugins/gnome/gnome_interface.h
3160    M /trunk/plugins/gnome/gnome_sys.h
3161    M /trunk/plugins/gnome/intf_gnome.c
3162    M /trunk/plugins/gnome/intf_gnome.glade
3163    M /trunk/plugins/gtk/gtk_callbacks.c
3164    M /trunk/plugins/gtk/gtk_callbacks.h
3165    M /trunk/plugins/gtk/gtk_interface.c
3166    M /trunk/plugins/gtk/gtk_interface.h
3167    M /trunk/plugins/gtk/gtk_sys.h
3168    M /trunk/plugins/gtk/intf_gtk.c
3169    M /trunk/plugins/gtk/intf_gtk.glade
3172   * Added DVD/VCD button and menu for quick DVD device selection to the
3173     Gnome and Gtk+ interfaces, so that vlc can play a DVD even when
3174     launched from a GUI.
3176 ------------------------------------------------------------------------
3177 r724 | stef | 2001-03-04 14:54:26 +0100 (Sun, 04 Mar 2001) | 9 lines
3178 Changed paths:
3179    M /trunk/plugins/dvd/input_dvd.c
3180    M /trunk/plugins/dvd/input_dvd.h
3182 -Fixed bugs in title/chapter handling once more, especially for size
3183 detection and location of main movie.
3185 -Support for multitrack DVD : now the stream is given to input as it has
3186 to be ; however, all the tracks are displayed one after the other ; I
3187 think we need to decode navigation ES to choose the track
3189 -Fixed behaviour at end of device.
3191 ------------------------------------------------------------------------
3192 r725 | sam | 2001-03-04 17:20:16 +0100 (Sun, 04 Mar 2001) | 18 lines
3193 Changed paths:
3194    M /trunk/AUTHORS
3195    M /trunk/Makefile.in
3196    M /trunk/include/video_output.h
3197    A /trunk/plugins/beos/Bitmaps.h
3198    A /trunk/plugins/beos/DrawingTidbits.cpp
3199    A /trunk/plugins/beos/DrawingTidbits.h
3200    A /trunk/plugins/beos/InterfaceWindow.h
3201    A /trunk/plugins/beos/MsgVals.h
3202    A /trunk/plugins/beos/TransportButton.cpp
3203    A /trunk/plugins/beos/TransportButton.h
3204    A /trunk/plugins/beos/VideoWindow.h
3205    M /trunk/plugins/beos/intf_beos.cpp
3206    M /trunk/plugins/beos/vout_beos.cpp
3207    D /trunk/plugins/beos/window.h
3208    M /trunk/plugins/yuv/transforms_yuv.c
3209    M /trunk/plugins/yuv/transforms_yuvmmx.c
3210    M /trunk/plugins/yuv/transforms_yuvmmx.h
3211    M /trunk/plugins/yuv/video_common.h
3212    M /trunk/plugins/yuv/video_yuv.c
3213    M /trunk/plugins/yuv/video_yuvmmx.c
3214    M /trunk/src/misc/beos_specific.cpp
3215    M /trunk/src/video_output/video_output.c
3216    M /trunk/src/video_output/video_text.c
3219    Commited BeOS changes by Richard Shepherd and Tony Castley.
3221    include/video_output.h
3222     * Added boolean_t b_YCbr to vout_thread_s structure to flag YUV-YCbCr
3223       decoding needed instead of YUV-RGB
3224     * Will be removed later when video_output.c rewritten
3226    src/video_output.c
3227     * vout_CreateThread() initialises b_YCbr to zero
3229    plugins/beos/*
3230     * New BeOS video plugin that supports hardware overlays and new
3231       MediaPlayer compatible interface
3233    plugins/*
3234     * Added YUV-YCbCr transforms
3236 ------------------------------------------------------------------------
3237 r726 | stef | 2001-03-05 01:40:06 +0100 (Mon, 05 Mar 2001) | 5 lines
3238 Changed paths:
3239    M /trunk/plugins/dvd/input_dvd.c
3241 -Fixed a bug in audio selection
3243 -Tried to fix an issue in size computing. I don't know if this works since
3244 I haven't buggy DVDs
3246 ------------------------------------------------------------------------
3247 r727 | sam | 2001-03-05 02:29:25 +0100 (Mon, 05 Mar 2001) | 9 lines
3248 Changed paths:
3249    M /trunk/AUTHORS
3250    D /trunk/CONTRIBUTORS
3251    M /trunk/INSTALL
3252    M /trunk/Makefile.in
3253    M /trunk/TODO
3254    M /trunk/configure
3255    M /trunk/configure.in
3256    M /trunk/debian/changelog
3257    M /trunk/debian/changelog-css
3258    M /trunk/debian/vlc.docs
3259    M /trunk/plugins/beos/intf_beos.cpp
3260    M /trunk/plugins/beos/vout_beos.cpp
3261    M /trunk/plugins/gnome/gnome_callbacks.c
3262    M /trunk/plugins/gnome/gnome_interface.c
3263    M /trunk/plugins/gnome/intf_gnome.glade
3264    M /trunk/plugins/gtk/gtk_callbacks.c
3265    M /trunk/plugins/gtk/gtk_interface.c
3266    M /trunk/plugins/gtk/intf_gtk.c
3267    M /trunk/plugins/gtk/intf_gtk.glade
3268    M /trunk/vlc.spec
3271   * Everything in place for the 0.2.63 release.
3273   * Got rid of the CONTRIBUTORS list, and switched AUTHORS to a
3274     linux-kernel like author list.
3275   * Updated TODO list.
3276   * Fixed a segfault in the BeOS interface when --noaudio was specified.
3277   * Title and Chapter selection in the Gnome and Gtk+ interfaces.
3279 ------------------------------------------------------------------------
3280 r728 | sam | 2001-03-05 12:53:44 +0100 (Mon, 05 Mar 2001) | 4 lines
3281 Changed paths:
3282    M /trunk/debian/changelog
3283    M /trunk/debian/rules
3284    M /trunk/plugins/dvd/dvd_ioctl.c
3285    M /trunk/plugins/mpeg/input_ts.c
3288   * fixed headers for FreeBSD compilation.
3289   * fixed debian/rules for non-x86 packages (Closes: Debian bug #88583).
3291 ------------------------------------------------------------------------
3292 r729 | richards | 2001-03-05 14:28:47 +0100 (Mon, 05 Mar 2001) | 3 lines
3293 Changed paths:
3294    M /trunk/plugins/beos/Bitmaps.h
3295    M /trunk/plugins/beos/InterfaceWindow.h
3296    M /trunk/plugins/beos/MsgVals.h
3297    M /trunk/plugins/beos/TransportButton.cpp
3298    M /trunk/plugins/beos/TransportButton.h
3299    M /trunk/plugins/beos/VideoWindow.h
3300    M /trunk/plugins/beos/intf_beos.cpp
3301    M /trunk/plugins/beos/vout_beos.cpp
3303 Added names to headers
3304 Delete BBitmap[0] directly after overlay creation as no longer needed as overlay now owns Bits()
3306 ------------------------------------------------------------------------
3307 r730 | massiot | 2001-03-05 17:00:30 +0100 (Mon, 05 Mar 2001) | 3 lines
3308 Changed paths:
3309    M /trunk/src/input/mpeg_system.c
3311 Fixed MPEG-1 mux_rate parsing.
3312 Fixed MPEG-1 stuffing.
3314 ------------------------------------------------------------------------
3315 r731 | richards | 2001-03-05 21:36:04 +0100 (Mon, 05 Mar 2001) | 2 lines
3316 Changed paths:
3317    M /trunk/Makefile.in
3318    M /trunk/plugins/beos/Bitmaps.h
3319    M /trunk/plugins/beos/InterfaceWindow.h
3320    M /trunk/plugins/beos/MsgVals.h
3321    M /trunk/plugins/beos/intf_beos.cpp
3322    M /trunk/plugins/beos/vout_beos.cpp
3324 *** empty log message ***
3326 ------------------------------------------------------------------------
3327 r732 | richards | 2001-03-05 23:29:02 +0100 (Mon, 05 Mar 2001) | 2 lines
3328 Changed paths:
3329    M /trunk/plugins/beos/InterfaceWindow.h
3330    M /trunk/plugins/beos/intf_beos.cpp
3331    M /trunk/plugins/beos/vout_beos.cpp
3333 *** empty log message ***
3335 ------------------------------------------------------------------------
3336 r733 | richards | 2001-03-05 23:47:22 +0100 (Mon, 05 Mar 2001) | 2 lines
3337 Changed paths:
3338    M /trunk/plugins/beos/vout_beos.cpp
3340 *** empty log message ***
3342 ------------------------------------------------------------------------
3343 r734 | richards | 2001-03-06 02:26:06 +0100 (Tue, 06 Mar 2001) | 2 lines
3344 Changed paths:
3345    M /trunk/plugins/beos/intf_beos.cpp
3346    M /trunk/plugins/beos/vout_beos.cpp
3348 More changes to interface
3350 ------------------------------------------------------------------------
3351 r735 | massiot | 2001-03-06 11:21:59 +0100 (Tue, 06 Mar 2001) | 3 lines
3352 Changed paths:
3353    M /trunk/plugins/dvd/dvd_ifo.c
3354    M /trunk/plugins/dvd/dvd_ioctl.h
3355    M /trunk/plugins/dvd/input_dvd.c
3357 * It now compiles under FreeBSD (though DeCSS stuff probably doesn't
3358 work).
3360 ------------------------------------------------------------------------
3361 r736 | massiot | 2001-03-06 16:16:42 +0100 (Tue, 06 Mar 2001) | 3 lines
3362 Changed paths:
3363    M /trunk/include/config.h.in
3364    M /trunk/src/video_decoder/vpar_synchro.h
3366 * Fixed a boolean_t/int mix.
3367 * Increased FIFO_SIZE.
3369 ------------------------------------------------------------------------
3370 r737 | massiot | 2001-03-06 18:39:03 +0100 (Tue, 06 Mar 2001) | 2 lines
3371 Changed paths:
3372    M /trunk/src/input/input_ext-dec.c
3374 * Fixed an alignment problem on startup.
3376 ------------------------------------------------------------------------
3377 r738 | massiot | 2001-03-06 18:54:48 +0100 (Tue, 06 Mar 2001) | 2 lines
3378 Changed paths:
3379    M /trunk/src/input/mpeg_system.c
3381 * Fixed an alignment problem in PTS parsing.
3383 ------------------------------------------------------------------------
3384 r739 | massiot | 2001-03-06 20:33:58 +0100 (Tue, 06 Mar 2001) | 2 lines
3385 Changed paths:
3386    M /trunk/include/input_ext-dec.h
3387    M /trunk/src/input/input_ext-dec.c
3389 * Fixed an alignment problem in UnalignedShowBits().
3391 ------------------------------------------------------------------------
3392 r740 | richards | 2001-03-06 20:52:03 +0100 (Tue, 06 Mar 2001) | 2 lines
3393 Changed paths:
3394    M /trunk/plugins/beos/InterfaceWindow.h
3395    M /trunk/plugins/beos/intf_beos.cpp
3396    M /trunk/plugins/beos/vout_beos.cpp
3398 Added DVD device selection from interface menu
3400 ------------------------------------------------------------------------
3401 r741 | henri | 2001-03-07 01:18:46 +0100 (Wed, 07 Mar 2001) | 22 lines
3402 Changed paths:
3403    M /trunk/include/config.h.in
3404    M /trunk/include/input.h
3405    M /trunk/plugins/mpeg/input_ts.c
3406    M /trunk/src/input/input.c
3407    M /trunk/src/input/mpeg_system.c
3410 - Fixed TS input ( a nasty dead lock had appeared 4 days ago )
3411 - Added base of network support
3413 Things to be done :
3414 - Meuuh : fix the PCR synchronisation so that we can set b_pace_cntrol to 0
3415 - Sam : find a way of specifing the type of media (file, net). For the
3416 moment, the "--input ts" always call input_NetworkOpen
3417 - Maybe sam : for the moment the working syntax is vlc --input ts
3418 servername, it should nbe turned into "vlc --server servername".
3420 Things that don't work (i'll work on this this week end) :
3421 - stopping and retaking a stream
3422 - a nice 'waiting for stream'
3423 - we select all incoming streams. we should be able to select.
3425 Things that haven't been tested :
3426 - broadcast
3427 - only tested with one stream.
3429 Kick me if something is broken by my fault.
3431 ------------------------------------------------------------------------
3432 r742 | sam | 2001-03-07 02:36:41 +0100 (Wed, 07 Mar 2001) | 4 lines
3433 Changed paths:
3434    M /trunk/plugins/mpeg/input_ts.c
3435    M /trunk/src/input/input.c
3438   * Disabled network input under BeOS so that it compiles again. We'll
3439     have to wait for BONE anyway.
3441 ------------------------------------------------------------------------
3442 r743 | stef | 2001-03-07 03:16:03 +0100 (Wed, 07 Mar 2001) | 3 lines
3443 Changed paths:
3444    M /trunk/Makefile.in
3446 -Added `glib-config --libs glib` for interface compilation
3447 for debian/sid users
3449 ------------------------------------------------------------------------
3450 r744 | stef | 2001-03-07 11:31:10 +0100 (Wed, 07 Mar 2001) | 7 lines
3451 Changed paths:
3452    M /trunk/include/input_ext-intf.h
3453    M /trunk/include/modules.h
3454    M /trunk/plugins/dvd/input_dvd.c
3455    M /trunk/plugins/gtk/gtk_callbacks.c
3456    M /trunk/plugins/gtk/gtk_callbacks.h
3457    M /trunk/plugins/gtk/gtk_interface.c
3458    M /trunk/plugins/gtk/gtk_sys.h
3459    M /trunk/plugins/gtk/intf_gtk.c
3460    M /trunk/plugins/gtk/intf_gtk.glade
3461    M /trunk/src/input/input.c
3462    M /trunk/src/input/input_ext-intf.c
3463    M /trunk/src/input/input_programs.c
3465 -Working menus for run-time audio/spu/title/chapter selection with gtk
3466 interface.
3468 It is a bit buggy yet, and some pieces of code need to change,
3469 especially to handle better menus change when title change but it
3470 eventually works.
3472 ------------------------------------------------------------------------
3473 r745 | stef | 2001-03-07 12:56:33 +0100 (Wed, 07 Mar 2001) | 8 lines
3474 Changed paths:
3475    M /trunk/plugins/gnome/gnome_callbacks.c
3476    M /trunk/plugins/gnome/gnome_callbacks.h
3477    M /trunk/plugins/gnome/gnome_interface.c
3478    M /trunk/plugins/gnome/gnome_sys.h
3479    M /trunk/plugins/gnome/intf_gnome.c
3480    M /trunk/plugins/gnome/intf_gnome.glade
3481    M /trunk/plugins/gtk/gtk_callbacks.c
3482    M /trunk/plugins/gtk/intf_gtk.c
3484 Port of the interface menus to gnome plugin.
3486 Note that two sorts of navigation menus are implemented : in the
3487 menubar, one menu for title and one the chapter in current title ; and
3488 in the popup, a cascaded version with all chapters for all menus.
3490 The same issues as gtk plugin apply.
3492 ------------------------------------------------------------------------
3493 r746 | richards | 2001-03-07 17:32:59 +0100 (Wed, 07 Mar 2001) | 2 lines
3494 Changed paths:
3495    M /trunk/plugins/beos/InterfaceWindow.h
3496    M /trunk/plugins/beos/intf_beos.cpp
3498 "File|Open DVD" menu now refreshed each time menu selected rather than statically built at execute time.
3500 ------------------------------------------------------------------------
3501 r747 | octplane | 2001-03-08 14:32:55 +0100 (Thu, 08 Mar 2001) | 17 lines
3502 Changed paths:
3503    M /trunk/Makefile.in
3504    M /trunk/configure
3505    M /trunk/include/intf_plst.h
3506    A /trunk/include/intf_urldecode.h
3507    M /trunk/plugins/gtk/gtk_callbacks.c
3508    M /trunk/plugins/gtk/gtk_callbacks.h
3509    M /trunk/plugins/gtk/gtk_interface.c
3510    M /trunk/plugins/gtk/gtk_interface.h
3511    A /trunk/plugins/gtk/gtk_playlist.c
3512    M /trunk/plugins/gtk/gtk_sys.h
3513    M /trunk/plugins/gtk/intf_gtk.c
3514    M /trunk/plugins/gtk/intf_gtk.glade
3515    M /trunk/src/interface/intf_plst.c
3516    A /trunk/src/interface/intf_urldecode.c
3518 Hurg !
3519 ###code is dirty###
3520 Please clean it for me :P
3521 (or at least, tell me how to clean it)
3523 . Slightly modified playlist base interface
3524   (Added a function to jump directly to an item, used for double clicking)
3526 . Added manymanycallbacks
3527 . Added the playlist dialog
3528 . Added Dnd support for intf_window and the clist1
3529   . support URI and plain file(s)/folder(s)
3530 . Added "show/hide main window" menuitem in intf_popup
3531 . Added bugs :P
3533 Enjoy and please bug report.
3535 ------------------------------------------------------------------------
3536 r748 | octplane | 2001-03-08 16:48:14 +0100 (Thu, 08 Mar 2001) | 3 lines
3537 Changed paths:
3538    M /trunk/plugins/gtk/gtk_callbacks.c
3539    M /trunk/plugins/gtk/gtk_callbacks.h
3540    M /trunk/plugins/gtk/gtk_interface.c
3541    M /trunk/plugins/gtk/gtk_playlist.c
3542    M /trunk/plugins/gtk/intf_gtk.c
3543    M /trunk/plugins/gtk/intf_gtk.glade
3545 .Added crop and invert selection.
3546 .Fixed a potential segfault.
3548 ------------------------------------------------------------------------
3549 r749 | octplane | 2001-03-08 22:47:02 +0100 (Thu, 08 Mar 2001) | 4 lines
3550 Changed paths:
3551    M /trunk/plugins/gtk/gtk_callbacks.c
3552    M /trunk/plugins/gtk/gtk_callbacks.h
3553    M /trunk/plugins/gtk/gtk_interface.c
3554    M /trunk/plugins/gtk/gtk_playlist.c
3555    M /trunk/plugins/gtk/intf_gtk.c
3556    M /trunk/plugins/gtk/intf_gtk.glade
3558 . cosmetic variable name changes
3559 . drop in the 'blank' part of the list in the playlist adds at the end of the list
3560 . drop on the main window adds at the end of the playlist
3562 ------------------------------------------------------------------------
3563 r750 | octplane | 2001-03-08 22:58:59 +0100 (Thu, 08 Mar 2001) | 2 lines
3564 Changed paths:
3565    M /trunk/plugins/gtk/gtk_interface.c
3566    M /trunk/plugins/gtk/gtk_playlist.c
3567    M /trunk/plugins/gtk/intf_gtk.glade
3569 . Hey! table header (Dnd still a little buggy :/)
3571 ------------------------------------------------------------------------
3572 r751 | octplane | 2001-03-09 20:38:47 +0100 (Fri, 09 Mar 2001) | 2 lines
3573 Changed paths:
3574    M /trunk/plugins/gtk/gtk_callbacks.c
3575    M /trunk/plugins/gtk/gtk_callbacks.h
3576    M /trunk/plugins/gtk/gtk_interface.c
3577    M /trunk/plugins/gtk/gtk_playlist.c
3578    M /trunk/plugins/gtk/gtk_sys.h
3579    M /trunk/plugins/gtk/intf_gtk.c
3580    M /trunk/plugins/gtk/intf_gtk.glade
3581    M /trunk/plugins/sdl/vout_sdl.c
3583 .nicer drop
3585 ------------------------------------------------------------------------
3586 r752 | henri | 2001-03-10 12:23:10 +0100 (Sat, 10 Mar 2001) | 3 lines
3587 Changed paths:
3588    M /trunk/src/input/input_netlist.c
3591 Small optim.
3593 ------------------------------------------------------------------------
3594 r753 | henri | 2001-03-11 20:00:18 +0100 (Sun, 11 Mar 2001) | 6 lines
3595 Changed paths:
3596    M /trunk/include/netutils.h
3597    M /trunk/src/input/input.c
3598    M /trunk/src/misc/netutils.c
3601 - Moved 2 local network functions
3602 - Removed old code
3603 - Broadcast should work. I'm not detecting broadcast address, i'm
3604 binding 0.0.0.0
3606 ------------------------------------------------------------------------
3607 r754 | reno | 2001-03-13 22:22:41 +0100 (Tue, 13 Mar 2001) | 3 lines
3608 Changed paths:
3609    M /trunk/src/ac3_decoder/ac3_bit_allocate.c
3612 * Fixing of PowerPC bug ( I hope :) )
3614 ------------------------------------------------------------------------
3615 r755 | massiot | 2001-03-14 01:40:24 +0100 (Wed, 14 Mar 2001) | 2 lines
3616 Changed paths:
3617    M /trunk/src/input/input_clock.c
3619 * Tried to fix the "stream jumps at will" bug.
3621 ------------------------------------------------------------------------
3622 r756 | octplane | 2001-03-14 20:55:51 +0100 (Wed, 14 Mar 2001) | 2 lines
3623 Changed paths:
3624    M /trunk/plugins/gtk/gtk_callbacks.c
3625    M /trunk/plugins/gtk/gtk_playlist.c
3627 misc code clean-up
3629 ------------------------------------------------------------------------
3630 r757 | stef | 2001-03-15 01:37:04 +0100 (Thu, 15 Mar 2001) | 6 lines
3631 Changed paths:
3632    M /trunk/plugins/dvd/input_dvd.c
3633    M /trunk/plugins/gnome/gnome_callbacks.c
3634    M /trunk/plugins/gnome/gnome_callbacks.h
3635    M /trunk/plugins/gnome/gnome_interface.c
3636    M /trunk/plugins/gnome/intf_gnome.c
3637    M /trunk/plugins/gnome/intf_gnome.glade
3638    M /trunk/src/input/input_ext-intf.c
3639    M /trunk/src/input/mpeg_system.c
3641 -Fixed most of the bugs in gnome interface menus
3643 -Added radio checks in menu items.
3645 There are still issues with default selected item but it works well.
3647 ------------------------------------------------------------------------
3648 r758 | sam | 2001-03-15 02:42:20 +0100 (Thu, 15 Mar 2001) | 37 lines
3649 Changed paths:
3650    M /trunk/INSTALL
3651    M /trunk/Makefile.in
3652    M /trunk/configure
3653    M /trunk/configure.in
3654    M /trunk/debian/changelog
3655    M /trunk/debian/changelog-css
3656    M /trunk/debian/control
3657    M /trunk/debian/control-css
3658    M /trunk/debian/rules
3659    D /trunk/debian/vlc.1
3660    D /trunk/doc/bugs
3661    D /trunk/doc/headers
3662    D /trunk/doc/portage
3663    D /trunk/doc/vlan-server
3664    A /trunk/doc/vlc.1
3665    A /trunk/include/intf_playlist.h
3666    D /trunk/include/intf_plst.h
3667    M /trunk/include/netutils.h
3668    M /trunk/include/tests.h
3669    M /trunk/plugins/beos/intf_beos.cpp
3670    M /trunk/plugins/gnome/gnome_callbacks.c
3671    M /trunk/plugins/gnome/gnome_callbacks.h
3672    M /trunk/plugins/gnome/gnome_interface.c
3673    M /trunk/plugins/gnome/gnome_interface.h
3674    D /trunk/plugins/gnome/gnome_sys.h
3675    M /trunk/plugins/gnome/intf_gnome.c
3676    M /trunk/plugins/gnome/intf_gnome.glade
3677    A /trunk/plugins/gnome/intf_gnome.h
3678    M /trunk/plugins/gtk/gtk_callbacks.c
3679    M /trunk/plugins/gtk/gtk_callbacks.h
3680    M /trunk/plugins/gtk/gtk_interface.c
3681    M /trunk/plugins/gtk/gtk_interface.h
3682    M /trunk/plugins/gtk/gtk_playlist.c
3683    D /trunk/plugins/gtk/gtk_sys.h
3684    M /trunk/plugins/gtk/intf_gtk.c
3685    M /trunk/plugins/gtk/intf_gtk.glade
3686    A /trunk/plugins/gtk/intf_gtk.h
3687    M /trunk/plugins/mpeg/input_ps.c
3688    A /trunk/plugins/qt
3689    A /trunk/plugins/qt/.cvsignore
3690    A /trunk/plugins/qt/intf_qt.cpp
3691    A /trunk/plugins/qt/qt.cpp
3692    M /trunk/src/input/input.c
3693    M /trunk/src/input/input_ext-intf.c
3694    M /trunk/src/input/input_programs.c
3695    M /trunk/src/input/mpeg_system.c
3696    M /trunk/src/interface/interface.c
3697    A /trunk/src/interface/intf_playlist.c
3698    D /trunk/src/interface/intf_plst.c
3699    M /trunk/src/interface/main.c
3700    M /trunk/src/misc/netutils.c
3703   * Bug fixes and enhancements in the Gtk+/Gnome interfaces.
3705    o the slider should behave correctly and stop jumping here and
3706      there (this bug is _not_ related to Stef's similar bug)
3707    o added an "open network" menu (useless since the input doesn't
3708      handle it properly yet)
3709    o tried to reorganize gnome_callbacks.c and gtk_callbacks.c
3710    o stream date is now displayed instead of percentage
3711    o renamed gnome_sys.h to intf_gnome.h, and gtk_sys.h to intf_gtk.h
3713   * Changed documentation and package creation files.
3715    o added versioned conflicts/replaces to vlc-gtk (Closes Debian bug #88796)
3716    o removed useless or outdated documentation from doc/*
3717    o moved vlc.1 manpage from debian/vlc.1 to doc/vlc.1
3719   * Added basic Qt interface.
3721    o working features: slide bar, open file, toolbar, popup menu
3722    o added "qvlc" alias, equivalent to "vlc -I qt"
3723    o known issues : no "open disc" or "open network" menus yet
3724                     the IntfWindow class is never cleaned on destruction
3725                     the popup menu always pop at the middle of the screen
3727   * Misc fixes/updates.
3729    o renamed netutils.h functions from input_* to network_*
3730    o renamed *plst* files and functions to *playlist* (it was stupid
3731      from me to name them "plst")
3732    o made a few input error messages more meaningful
3733    o added -I, -A and -V short flags, corresponding to --intf, --audio
3734      and --video
3736     I got a lot of conflicts on this commit, lart me if I forgot a
3737   file or made old bugs reappear.
3739 ------------------------------------------------------------------------
3740 r759 | stef | 2001-03-15 17:29:47 +0100 (Thu, 15 Mar 2001) | 2 lines
3741 Changed paths:
3742    M /trunk/plugins/dvd/input_dvd.c
3743    M /trunk/plugins/gnome/intf_gnome.c
3745 Maybe solved the jump-at-will bug after random seek.
3747 ------------------------------------------------------------------------
3748 r760 | massiot | 2001-03-16 23:37:06 +0100 (Fri, 16 Mar 2001) | 4 lines
3749 Changed paths:
3750    M /trunk/Makefile.in
3751    M /trunk/config.guess
3752    M /trunk/config.sub
3753    M /trunk/configure
3754    M /trunk/configure.in
3755    M /trunk/include/common.h
3756    M /trunk/include/defs.h.in
3757    M /trunk/include/modules_core.h
3758    M /trunk/plugins/x11/vout_x11.c
3759    M /trunk/src/interface/intf_urldecode.c
3761 * Borrowed config.guess and config.sub from SDL [MacOS X port] ;
3762 * Changed files so that the MacOS X port compiles & runs [MacOS X port] ;
3763 * If SDL/GTK/DSP is not available, don't compile the associated module.
3765 ------------------------------------------------------------------------
3766 r761 | richards | 2001-03-17 20:33:22 +0100 (Sat, 17 Mar 2001) | 2 lines
3767 Changed paths:
3768    M /trunk/plugins/beos/InterfaceWindow.h
3769    M /trunk/plugins/beos/VideoWindow.h
3770    M /trunk/plugins/beos/intf_beos.cpp
3771    M /trunk/plugins/beos/vout_beos.cpp
3773 Some rather boring changes to keep the CVS tree up to date with my (working) build
3775 ------------------------------------------------------------------------
3776 r762 | stef | 2001-03-17 23:52:00 +0100 (Sat, 17 Mar 2001) | 2 lines
3777 Changed paths:
3778    M /trunk/configure
3779    M /trunk/configure.in
3781 -Added dsp plugin compilation (/dev/dsp is not a regular file :))
3783 ------------------------------------------------------------------------
3784 r763 | sam | 2001-03-18 01:01:13 +0100 (Sun, 18 Mar 2001) | 5 lines
3785 Changed paths:
3786    M /trunk/Makefile.in
3787    M /trunk/configure
3788    M /trunk/configure.in
3789    M /trunk/include/modules_inner.h
3790    A /trunk/plugins/darwin
3791    A /trunk/plugins/darwin/aout_darwin.c
3792    A /trunk/plugins/darwin/darwin.c
3793    M /trunk/plugins/gnome/gnome_interface.c
3794    M /trunk/plugins/gnome/intf_gnome.glade
3795    M /trunk/plugins/gtk/gtk_interface.c
3796    M /trunk/plugins/gtk/intf_gtk.glade
3797    A /trunk/plugins/macosx
3798    A /trunk/plugins/macosx/intf_macosx.c
3799    A /trunk/plugins/macosx/macosx.c
3800    A /trunk/plugins/macosx/vout_macosx.c
3801    M /trunk/plugins/qt/intf_qt.cpp
3804   * Function prototypes for the forthcoming Darwin and MacOS X port.
3805   * Gtk+ interface: fixed a precision issue in the scale.
3806   * Qt interface: somebody pop up us the menu!!
3808 ------------------------------------------------------------------------
3809 r764 | sam | 2001-03-18 01:15:20 +0100 (Sun, 18 Mar 2001) | 3 lines
3810 Changed paths:
3811    M /trunk/plugins/macosx/macosx.c
3814   * Forgot to remove a prototype when creating skeleton plugin.
3816 ------------------------------------------------------------------------
3817 r765 | henri | 2001-03-18 19:48:27 +0100 (Sun, 18 Mar 2001) | 8 lines
3818 Changed paths:
3819    M /trunk/plugins/mpeg/input_ts.c
3820    M /trunk/plugins/mpeg/input_ts.h
3823 - Changed read method : we now use select, so we are now able to quit
3824 even if no packet has benn receivced.
3825 - Put more exmplicit error messages
3827 I noticed that now I have "Seeking to position ...." messages even with
3828 network input. If someone can do a quick fix, thanks about it.
3830 ------------------------------------------------------------------------
3831 r766 | henri | 2001-03-18 21:46:16 +0100 (Sun, 18 Mar 2001) | 3 lines
3832 Changed paths:
3833    M /trunk/plugins/mpeg/input_ts.c
3836 Replaced ( a < b/c ) by ( a*c < b ).
3838 ------------------------------------------------------------------------
3839 r767 | sam | 2001-03-19 06:08:00 +0100 (Mon, 19 Mar 2001) | 3 lines
3840 Changed paths:
3841    M /trunk/Makefile.in
3842    M /trunk/debian/control
3843    M /trunk/debian/rules
3844    M /trunk/src/interface/main.c
3847   * Fixed Debian sparc build for real (Closes: Debian bug #89285).
3849 ------------------------------------------------------------------------
3850 r768 | sam | 2001-03-19 14:26:59 +0100 (Mon, 19 Mar 2001) | 4 lines
3851 Changed paths:
3852    M /trunk/Makefile.in
3853    M /trunk/configure
3854    M /trunk/configure.in
3855    M /trunk/include/input.h
3856    M /trunk/plugins/mpeg/input_ts.c
3857    M /trunk/src/audio_output/audio_output.c
3858    M /trunk/src/input/input.c
3859    M /trunk/src/interface/main.c
3860    M /trunk/src/misc/netutils.c
3863   * vlc core compiles under QNX RTOS. Now if anyone feels like tidying
3864   it and writing output and interface plugins...
3866 ------------------------------------------------------------------------
3867 r769 | henri | 2001-03-19 23:16:31 +0100 (Mon, 19 Mar 2001) | 3 lines
3868 Changed paths:
3869    M /trunk/plugins/mpeg/input_ts.c
3872 Added a #include that prevented when compiling on redhat.
3874 ------------------------------------------------------------------------
3875 r770 | sam | 2001-03-20 05:44:06 +0100 (Tue, 20 Mar 2001) | 4 lines
3876 Changed paths:
3877    M /trunk/Makefile.in
3878    M /trunk/include/audio_output.h
3879    M /trunk/include/modules.h
3880    A /trunk/src/audio_output/aout_common.h
3881    A /trunk/src/audio_output/aout_fifo.c
3882    A /trunk/src/audio_output/aout_s16.c
3883    A /trunk/src/audio_output/aout_s8.c
3884    A /trunk/src/audio_output/aout_u16.c
3885    A /trunk/src/audio_output/aout_u8.c
3886    M /trunk/src/audio_output/audio_output.c
3889   * Split audio output into several separate files to make it easier
3890   to debug. Removed a few redundancies as well.
3892 ------------------------------------------------------------------------
3893 r771 | massiot | 2001-03-20 18:36:04 +0100 (Tue, 20 Mar 2001) | 6 lines
3894 Changed paths:
3895    M /trunk/Makefile.in
3896    M /trunk/include/rsc_files.h
3897    M /trunk/plugins/darwin/aout_darwin.c
3898    M /trunk/plugins/darwin/darwin.c
3899    M /trunk/src/ac3_decoder/ac3_mantissa.c
3900    M /trunk/src/misc/rsc_files.c
3902 * Support for Darwin CoreAudio, courtesy of Colin Delacroix [MacOS X port] ;
3903 * Added warnings for ac3 mantissa (we still have problems with AC3 on
3904 MacOS X) ;
3905 * Renamed WriteResource to avoid a namespace clash with Darwin's
3906 WriteResource.
3908 ------------------------------------------------------------------------
3909 r772 | massiot | 2001-03-20 20:36:59 +0100 (Tue, 20 Mar 2001) | 2 lines
3910 Changed paths:
3911    M /trunk/configure
3912    M /trunk/configure.in
3914 * Compile Darwin module by default on Darwin system. [MacOS X port]
3916 ------------------------------------------------------------------------
3917 r773 | massiot | 2001-03-20 21:09:37 +0100 (Tue, 20 Mar 2001) | 2 lines
3918 Changed paths:
3919    M /trunk/Makefile.in
3920    A /trunk/plugins/idct/idctaltivec.c
3921    A /trunk/plugins/idct/idctaltivec.h
3923 * Added IDCT Altivec optimization [MacOS X port]. Untested, not compiled.
3925 ------------------------------------------------------------------------
3926 r774 | massiot | 2001-03-20 21:20:34 +0100 (Tue, 20 Mar 2001) | 2 lines
3927 Changed paths:
3928    M /trunk/Makefile.in
3930 * Fixed Makefile for normal people :p
3932 ------------------------------------------------------------------------
3933 r775 | massiot | 2001-03-20 21:40:07 +0100 (Tue, 20 Mar 2001) | 2 lines
3934 Changed paths:
3935    M /trunk/Makefile.in
3937 * Use $QTDIR for the qt module ;
3939 ------------------------------------------------------------------------
3940 r776 | massiot | 2001-03-20 21:54:44 +0100 (Tue, 20 Mar 2001) | 2 lines
3941 Changed paths:
3942    M /trunk/configure
3943    M /trunk/configure.in
3944    M /trunk/include/tests.h
3946 * Compile Altivec modules on Darwin. [MacOS X port]
3948 ------------------------------------------------------------------------
3949 r777 | sam | 2001-03-20 22:42:41 +0100 (Tue, 20 Mar 2001) | 19 lines
3950 Changed paths:
3951    M /trunk/AUTHORS
3952    M /trunk/plugins/sdl/vout_sdl.c
3955    * SDL fixes and enhancements by Shane Harper <shanegh@optusnet.com.au>
3957    Shane, I removed the static variables from your code because static
3958    is not thread-safe, and one can imagine having several video output
3959    windows launched at the same time. Also, I made your feature work
3960    in windowed mode as well, because people kept asking how to hide the
3961    mouse pointer.
3963    Also, if you want to work on the XVideo extension, you are welcome ;
3964    most of us are quite busy at the moment. Damien Lucas <nitrox@via.ecp.fr>
3965    had offered to work on it, but he seems to be a bit lost, so you may
3966    want to take over his job.
3968    As for the "zoom" feature, I suggest you wait until version 4 of the
3969    video output is done, it'll be easier to do then.
3971 Regards,
3973 ------------------------------------------------------------------------
3974 r778 | sam | 2001-03-21 00:18:38 +0100 (Wed, 21 Mar 2001) | 3 lines
3975 Changed paths:
3976    M /trunk/include/tests.h
3977    M /trunk/src/interface/main.c
3980    * Altivec instructions autodetection.
3982 ------------------------------------------------------------------------
3983 r779 | sam | 2001-03-21 03:58:29 +0100 (Wed, 21 Mar 2001) | 4 lines
3984 Changed paths:
3985    M /trunk/Makefile.in
3986    M /trunk/plugins/idct/idctaltivec.c
3989   * Fixed a typo in the Altivec iDCT module declaration.
3990   * Made a few enhancements to the Makefile.
3992 ------------------------------------------------------------------------
3993 r780 | sam | 2001-03-21 14:42:35 +0100 (Wed, 21 Mar 2001) | 7 lines
3994 Changed paths:
3995    M /trunk/AUTHORS
3996    M /trunk/Makefile.in
3997    M /trunk/configure
3998    M /trunk/configure.in
3999    M /trunk/include/audio_output.h
4000    M /trunk/include/beos_specific.h
4001    M /trunk/include/debug.h
4002    M /trunk/include/int_types.h
4003    M /trunk/include/interface.h
4004    M /trunk/include/intf_msg.h
4005    M /trunk/include/intf_playlist.h
4006    M /trunk/include/main.h
4007    M /trunk/include/modules.h
4008    M /trunk/include/modules_core.h
4009    M /trunk/include/modules_inner.h
4010    M /trunk/include/mpeg_system.h
4011    M /trunk/include/mtime.h
4012    M /trunk/include/netutils.h
4013    M /trunk/include/rsc_files.h
4014    M /trunk/include/tests.h
4015    M /trunk/include/threads.h
4016    M /trunk/include/video.h
4017    M /trunk/include/video_output.h
4018    M /trunk/plugins/alsa/alsa.c
4019    M /trunk/plugins/alsa/aout_alsa.c
4020    M /trunk/plugins/beos/Bitmaps.h
4021    M /trunk/plugins/beos/DrawingTidbits.cpp
4022    M /trunk/plugins/beos/DrawingTidbits.h
4023    M /trunk/plugins/beos/InterfaceWindow.h
4024    M /trunk/plugins/beos/MsgVals.h
4025    M /trunk/plugins/beos/TransportButton.cpp
4026    M /trunk/plugins/beos/TransportButton.h
4027    M /trunk/plugins/beos/VideoWindow.h
4028    M /trunk/plugins/beos/beos.cpp
4029    M /trunk/plugins/beos/vout_beos.cpp
4030    M /trunk/plugins/darwin/aout_darwin.c
4031    M /trunk/plugins/darwin/darwin.c
4032    M /trunk/plugins/dsp/aout_dsp.c
4033    M /trunk/plugins/dsp/dsp.c
4034    M /trunk/plugins/dummy/aout_dummy.c
4035    M /trunk/plugins/dummy/dummy.c
4036    M /trunk/plugins/dummy/intf_dummy.c
4037    M /trunk/plugins/dummy/vout_dummy.c
4038    M /trunk/plugins/dvd/dvd.c
4039    M /trunk/plugins/dvd/input_dvd.h
4040    M /trunk/plugins/esd/aout_esd.c
4041    M /trunk/plugins/esd/esd.c
4042    M /trunk/plugins/fb/fb.c
4043    M /trunk/plugins/fb/vout_fb.c
4044    M /trunk/plugins/ggi/ggi.c
4045    M /trunk/plugins/ggi/vout_ggi.c
4046    M /trunk/plugins/glide/glide.c
4047    M /trunk/plugins/glide/vout_glide.c
4048    M /trunk/plugins/gnome/gnome.c
4049    M /trunk/plugins/gnome/gnome_callbacks.c
4050    M /trunk/plugins/gnome/gnome_callbacks.h
4051    M /trunk/plugins/gtk/gtk.c
4052    M /trunk/plugins/gtk/gtk_callbacks.c
4053    M /trunk/plugins/gtk/gtk_playlist.c
4054    M /trunk/plugins/macosx/intf_macosx.c
4055    M /trunk/plugins/macosx/macosx.c
4056    M /trunk/plugins/macosx/vout_macosx.c
4057    M /trunk/plugins/mga/mga.c
4058    M /trunk/plugins/mga/vout_mga.c
4059    M /trunk/plugins/mga/vout_mga.h
4060    M /trunk/plugins/motion/motion.c
4061    M /trunk/plugins/motion/motionmmx.c
4062    M /trunk/plugins/motion/motionmmxext.c
4063    M /trunk/plugins/mpeg/input_ps.h
4064    M /trunk/plugins/mpeg/input_ts.h
4065    M /trunk/plugins/mpeg/ps.c
4066    M /trunk/plugins/mpeg/ts.c
4067    M /trunk/plugins/null/null.c
4068    M /trunk/plugins/qt/qt.cpp
4069    M /trunk/plugins/sdl/aout_sdl.c
4070    M /trunk/plugins/sdl/sdl.c
4071    M /trunk/plugins/sdl/vout_sdl.c
4072    M /trunk/plugins/text/intf_ncurses.c
4073    M /trunk/plugins/text/ncurses.c
4074    M /trunk/plugins/x11/x11.c
4075    M /trunk/plugins/yuv/transforms_common.h
4076    M /trunk/plugins/yuv/transforms_yuv.c
4077    M /trunk/plugins/yuv/transforms_yuv.h
4078    M /trunk/plugins/yuv/transforms_yuvmmx.c
4079    M /trunk/plugins/yuv/transforms_yuvmmx.h
4080    M /trunk/plugins/yuv/video_common.h
4081    M /trunk/plugins/yuv/video_yuv.c
4082    M /trunk/plugins/yuv/video_yuvmmx.c
4083    M /trunk/plugins/yuv/yuv.c
4084    M /trunk/plugins/yuv/yuvmmx.c
4085    M /trunk/src/ac3_decoder/ac3_bit_allocate.c
4086    M /trunk/src/ac3_decoder/ac3_bit_stream.h
4087    M /trunk/src/ac3_decoder/ac3_decoder.c
4088    M /trunk/src/ac3_decoder/ac3_decoder.h
4089    M /trunk/src/ac3_decoder/ac3_decoder_thread.h
4090    M /trunk/src/ac3_decoder/ac3_downmix.c
4091    M /trunk/src/ac3_decoder/ac3_downmix.h
4092    M /trunk/src/ac3_decoder/ac3_downmix_c.c
4093    M /trunk/src/ac3_decoder/ac3_exponent.c
4094    M /trunk/src/ac3_decoder/ac3_imdct.c
4095    M /trunk/src/ac3_decoder/ac3_internal.h
4096    M /trunk/src/ac3_decoder/ac3_mantissa.c
4097    M /trunk/src/ac3_decoder/ac3_parse.c
4098    M /trunk/src/ac3_decoder/ac3_rematrix.c
4099    M /trunk/src/audio_decoder/adec_generic.c
4100    M /trunk/src/audio_decoder/adec_generic.h
4101    M /trunk/src/audio_decoder/adec_layer1.c
4102    M /trunk/src/audio_decoder/adec_layer1.h
4103    M /trunk/src/audio_decoder/adec_layer2.c
4104    M /trunk/src/audio_decoder/adec_layer2.h
4105    M /trunk/src/audio_decoder/adec_math.c
4106    M /trunk/src/audio_decoder/adec_math.h
4107    M /trunk/src/audio_decoder/adec_test.c
4108    M /trunk/src/audio_decoder/audio_decoder.h
4109    M /trunk/src/audio_output/aout_common.h
4110    M /trunk/src/audio_output/aout_fifo.c
4111    M /trunk/src/audio_output/aout_s16.c
4112    M /trunk/src/audio_output/aout_s8.c
4113    M /trunk/src/audio_output/aout_u16.c
4114    M /trunk/src/audio_output/aout_u8.c
4115    M /trunk/src/audio_output/audio_output.c
4116    M /trunk/src/generic_decoder/generic_decoder.c
4117    M /trunk/src/generic_decoder/generic_decoder.h
4118    M /trunk/src/input/input_ext-dec.c
4119    M /trunk/src/input/input_ext-intf.c
4120    M /trunk/src/interface/interface.c
4121    M /trunk/src/interface/intf_channels.c
4122    M /trunk/src/interface/intf_channels.h
4123    M /trunk/src/interface/intf_cmd.c
4124    M /trunk/src/interface/intf_cmd.h
4125    M /trunk/src/interface/intf_console.c
4126    M /trunk/src/interface/intf_console.h
4127    M /trunk/src/interface/intf_ctrl.c
4128    M /trunk/src/interface/intf_ctrl.h
4129    M /trunk/src/interface/intf_msg.c
4130    M /trunk/src/interface/intf_playlist.c
4131    M /trunk/src/interface/main.c
4132    M /trunk/src/lpcm_decoder/lpcm_decoder.c
4133    M /trunk/src/lpcm_decoder/lpcm_decoder.h
4134    M /trunk/src/lpcm_decoder/lpcm_decoder_thread.c
4135    M /trunk/src/lpcm_decoder/lpcm_decoder_thread.h
4136    M /trunk/src/misc/beos_specific.cpp
4137    M /trunk/src/misc/modules.c
4138    M /trunk/src/misc/mtime.c
4139    M /trunk/src/misc/netutils.c
4140    M /trunk/src/misc/rsc_files.c
4141    M /trunk/src/misc/tests.c
4142    M /trunk/src/spu_decoder/spu_decoder.c
4143    M /trunk/src/spu_decoder/spu_decoder.h
4144    M /trunk/src/video_output/video_output.c
4145    M /trunk/src/video_output/video_spu.c
4146    M /trunk/src/video_output/video_spu.h
4147    M /trunk/src/video_output/video_text.c
4148    M /trunk/src/video_output/video_text.h
4149    M /trunk/src/video_output/video_yuv.c
4150    M /trunk/src/video_output/video_yuv.h
4153   * Header cleaning: filled all empty authors fields, added CVS $Id stuff.
4154   * Fixes to aout_darwin.c by Colin Delacroix <colin@zoy.org>.
4155   * Fixes to configure.in, Makefile.in and main.c (Altivec detection)
4156     by Eugenio Jarosiewicz <ej0@cise.ufl.edu>.
4157   * Added Colin and Eugenio to the AUTHORS file.
4159 ------------------------------------------------------------------------
4160 r781 | stef | 2001-03-22 02:23:03 +0100 (Thu, 22 Mar 2001) | 14 lines
4161 Changed paths:
4162    M /trunk/plugins/dvd/dvd_netlist.c
4163    M /trunk/plugins/dvd/input_dvd.c
4164    M /trunk/src/video_parser/video_parser.c
4166 -Added a SYNCHRO_START in DVDRead for each cell change to fix
4167 multi-angle streams
4169 -Changed seek function to prevent jump-at-will and to remove two bugs in
4170 sector computing.
4172 -Initialize some values in netlist (payload_discard wasn't which caused
4173 frame dropping)
4175 -Come back of multi-sector read which should make reading faster
4177 Now, theyre should be very few reading error, and we have got back the
4178 performance we had before my netlist polioting :p
4180 ------------------------------------------------------------------------
4181 r782 | richards | 2001-03-25 19:09:14 +0200 (Sun, 25 Mar 2001) | 2 lines
4182 Changed paths:
4183    M /trunk/plugins/beos/InterfaceWindow.h
4184    M /trunk/plugins/beos/MsgVals.h
4185    M /trunk/plugins/beos/intf_beos.cpp
4186    M /trunk/plugins/beos/vout_beos.cpp
4187    M /trunk/src/misc/beos_specific.cpp
4189 Language & Inteface support for BeOS interface
4191 ------------------------------------------------------------------------
4192 r783 | sam | 2001-03-26 21:06:18 +0200 (Mon, 26 Mar 2001) | 4 lines
4193 Changed paths:
4194    M /trunk/Makefile.in
4195    M /trunk/plugins/idct/idctaltivec.c
4198   - fixed SDL compilation, thanks to Colin.
4199   - disabled Altivec iDCT until it works.
4201 ------------------------------------------------------------------------
4202 r784 | sam | 2001-04-01 08:21:44 +0200 (Sun, 01 Apr 2001) | 5 lines
4203 Changed paths:
4204    M /trunk/AUTHORS
4205    M /trunk/Makefile.in
4206    M /trunk/configure
4207    M /trunk/configure.in
4208    M /trunk/plugins/x11/vout_x11.c
4209    A /trunk/plugins/x11/vout_xvideo.c
4210    A /trunk/plugins/x11/xvideo.c
4213   * XVideo plugin courtesy of Shane Harper <shanegh@optusnet.com.au>
4214   * Makefile.in and configure.in fixes by Nilmoni Deb <ndeb@ece.cmu.edu>
4215   * A few syntax fixes in the plain X11 plugin
4217 ------------------------------------------------------------------------
4218 r785 | sam | 2001-04-01 08:42:05 +0200 (Sun, 01 Apr 2001) | 3 lines
4219 Changed paths:
4220    M /trunk/plugins/x11/vout_xvideo.c
4223   * fixed a typo
4225 ------------------------------------------------------------------------
4226 r786 | stef | 2001-04-01 09:31:38 +0200 (Sun, 01 Apr 2001) | 8 lines
4227 Changed paths:
4228    M /trunk/include/input_ext-intf.h
4229    M /trunk/plugins/dvd/dvd_ifo.c
4230    M /trunk/plugins/dvd/dvd_ifo.h
4231    M /trunk/plugins/dvd/dvd_netlist.c
4232    M /trunk/plugins/dvd/input_dvd.c
4233    M /trunk/plugins/dvd/input_dvd.h
4234    M /trunk/plugins/gnome/gnome_callbacks.c
4235    M /trunk/plugins/gnome/intf_gnome.c
4236    M /trunk/plugins/gnome/intf_gnome.h
4237    M /trunk/src/input/input_ext-intf.c
4238    M /trunk/src/input/input_programs.c
4240 -Various bug fixes in dvd_netlist. Some bugs seem to remain though.
4241 -New function input_ToggleES for interaction with interface.
4242 -Changes in gnome interface : navigation menus are now splited, there
4243 are radio item in menus and the code should be better.
4244 -First step for dvd_ifo rewritting. Now allocation/disallocation is
4245 being done as it has to be.
4246 -Fixed a bug in title management that make dvd like Seven work.
4248 ------------------------------------------------------------------------
4249 r787 | richards | 2001-04-03 00:40:07 +0200 (Tue, 03 Apr 2001) | 3 lines
4250 Changed paths:
4251    M /trunk/plugins/beos/vout_beos.cpp
4253 vout_beos now uses double buffering for YCbCr overlay.
4254 This (for some reason) improves audio/video sync
4256 ------------------------------------------------------------------------
4257 r788 | sam | 2001-04-03 01:30:41 +0200 (Tue, 03 Apr 2001) | 16 lines
4258 Changed paths:
4259    M /trunk/INSTALL
4260    M /trunk/Makefile.in
4261    A /trunk/extras
4262    A /trunk/extras/MacOSX_dvdioctl
4263    A /trunk/extras/MacOSX_dvdioctl/DVDioctl.cpp
4264    A /trunk/extras/MacOSX_dvdioctl/DVDioctl.h
4265    A /trunk/extras/MacOSX_dvdioctl/DVDioctl.pbproj
4266    A /trunk/extras/MacOSX_dvdioctl/DVDioctl.pbproj/project.pbxproj
4267    A /trunk/extras/MacOSX_dvdioctl/English.lproj
4268    A /trunk/extras/MacOSX_dvdioctl/English.lproj/InfoPlist.strings
4269    M /trunk/include/config.h.in
4270    M /trunk/include/defs.h.in
4271    M /trunk/plugins/dvd/dvd_css.c
4272    M /trunk/plugins/dvd/dvd_css.h
4273    M /trunk/plugins/dvd/dvd_ioctl.c
4274    M /trunk/plugins/dvd/dvd_ioctl.h
4275    M /trunk/plugins/dvd/input_dvd.c
4276    M /trunk/plugins/dvd/input_dvd.h
4277    M /trunk/src/lpcm_decoder/lpcm_decoder_thread.c
4280  * fixes for the Qt plugin compilation under Debian
4282  * heavy butchering in the CSS and DVD ioctl code to put all architecture-
4283    dependent code in dvd_ioctl.c
4285  * added almost fully-functional /dev/dvd driver for MacOS X in
4286    extras/DVDioctl; to build it:
4288     % cd extras/DVDioctl
4289     % pbxbuild
4290     % kextload build/DVDioctl.kext # note: kextload has to be run as root
4292    be aware that the license for the DVDioctl kernel extension is
4293    not GPL but APSL, because I borrowed some code from the Darwin kernel.
4295 ------------------------------------------------------------------------
4296 r789 | stef | 2001-04-03 05:39:41 +0200 (Tue, 03 Apr 2001) | 13 lines
4297 Changed paths:
4298    M /trunk/plugins/dvd/input_dvd.c
4299    M /trunk/plugins/gnome/gnome_callbacks.c
4300    M /trunk/plugins/gnome/gnome_callbacks.h
4301    M /trunk/plugins/gnome/gnome_interface.c
4302    M /trunk/plugins/gnome/intf_gnome.c
4303    M /trunk/plugins/gnome/intf_gnome.glade
4304    M /trunk/plugins/gnome/intf_gnome.h
4305    M /trunk/src/input/input_dec.c
4306    M /trunk/src/input/input_programs.c
4308 -Fall back to one-packet-once reading in dvd input since multi-block
4309 seems to have a bug that make the vlc crash on title/audio/spu change. I
4310 hope that this bug will be fixed soon for the performance is poorer now
4312 -add-ons and changes in gnome interface:
4313         *menu subdivision is done only if there are over 20 items,
4314         *in DVD mode next/prev apply to title,
4315         *in DVD mode, added a box with button to navigate through
4316          chapters.
4317 This has not been finished yet (and it is not in gtk plugin then). And I
4318 think I will leave toolbar next/prev buttons for playlist and add
4319 button specifically for title change like for chapters.*
4321 ------------------------------------------------------------------------
4322 r790 | sam | 2001-04-04 04:49:18 +0200 (Wed, 04 Apr 2001) | 4 lines
4323 Changed paths:
4324    M /trunk/extras/MacOSX_dvdioctl/DVDioctl.cpp
4325    M /trunk/extras/MacOSX_dvdioctl/DVDioctl.h
4326    M /trunk/plugins/dvd/dvd_css.c
4327    M /trunk/plugins/dvd/dvd_ifo.h
4328    M /trunk/plugins/dvd/dvd_ioctl.c
4329    M /trunk/plugins/dvd/dvd_ioctl.h
4332   * additional enhancements to the OS X DVD ioctl module
4333   * big cleaning of the BeOS DVD ioctl code, got rid of all Linuxisms
4335 ------------------------------------------------------------------------
4336 r791 | sam | 2001-04-04 18:33:07 +0200 (Wed, 04 Apr 2001) | 4 lines
4337 Changed paths:
4338    M /trunk/extras/MacOSX_dvdioctl/DVDioctl.cpp
4339    M /trunk/plugins/dvd/dvd_ioctl.c
4340    M /trunk/plugins/x11/vout_xvideo.c
4343   * compilation fixes for the BeOS DVD ioctls
4344   * XVideo plugin enhancements by Shane Harper <shanegh@optusnet.com.au>
4346 ------------------------------------------------------------------------
4347 r792 | sam | 2001-04-05 05:50:38 +0200 (Thu, 05 Apr 2001) | 9 lines
4348 Changed paths:
4349    M /trunk/Makefile.in
4350    M /trunk/configure
4351    M /trunk/configure.in
4352    M /trunk/doc/vlc.1
4353    A /trunk/extras/GNUgetopt
4354    A /trunk/extras/GNUgetopt/getopt.c
4355    A /trunk/extras/GNUgetopt/getopt.h
4356    A /trunk/extras/GNUgetopt/getopt1.c
4357    A /trunk/extras/MacOSX_dvdioctl/.cvsignore
4358    M /trunk/include/config.h.in
4359    M /trunk/include/defs.h.in
4360    M /trunk/plugins/darwin/aout_darwin.c
4361    M /trunk/src/interface/main.c
4364   * added the GNU getopt library, which gets compiled in when getopt_long
4365     isn't available on the desired platform.
4366   * replaced the `--warning' flag with the standard cumulative `-v' flag.
4367     `-v' is like `--warning 3', and `-vvvv' is like `--warning 0'
4368     (`--warning' is still valid for those used to it)
4369   * cleaning in configure.in and Makefile.in, the Solaris port now
4370     builds and runs properly.
4372 ------------------------------------------------------------------------
4373 r793 | asmax | 2001-04-05 16:00:28 +0200 (Thu, 05 Apr 2001) | 7 lines
4374 Changed paths:
4375    M /trunk/include/input_ext-dec.h
4376    M /trunk/plugins/mpeg/input_ps.c
4377    M /trunk/plugins/mpeg/input_ps.h
4378    M /trunk/src/input/mpeg_system.c
4382 Added a new packet allocation method that punish one's mother in PS input.
4383 I hope there won't be too many segfaults because of it ;)
4384 A few parameters must be adjusted to optimize this method; I'll do it later
4385 because Proba Stat sucks ;)
4387 ------------------------------------------------------------------------
4388 r794 | asmax | 2001-04-05 18:37:15 +0200 (Thu, 05 Apr 2001) | 5 lines
4389 Changed paths:
4390    M /trunk/include/input_ext-dec.h
4391    M /trunk/plugins/mpeg/input_ps.c
4392    M /trunk/plugins/mpeg/input_ps.h
4396 switched back to the old packet allocation method for PS input, because
4397 Sam does not want the new one ;)
4399 ------------------------------------------------------------------------
4400 r795 | sam | 2001-04-06 11:15:48 +0200 (Fri, 06 Apr 2001) | 7 lines
4401 Changed paths:
4402    A /trunk/extras/GNUgetopt/COPYING
4403    A /trunk/extras/MacOSX_dvdioctl/COPYING
4404    M /trunk/extras/MacOSX_dvdioctl/DVDioctl.cpp
4405    A /trunk/extras/MacOSX_dvdioctl/README
4406    M /trunk/plugins/alsa/aout_alsa.c
4407    M /trunk/plugins/dvd/dvd_css.c
4408    M /trunk/plugins/dvd/dvd_ioctl.c
4409    M /trunk/plugins/dvd/dvd_netlist.c
4410    M /trunk/plugins/ggi/vout_ggi.c
4411    M /trunk/plugins/idct/idct_common.c
4412    M /trunk/plugins/sdl/vout_sdl.c
4413    M /trunk/src/ac3_decoder/ac3_bit_allocate.c
4414    M /trunk/src/ac3_decoder/ac3_decoder_thread.c
4415    M /trunk/src/ac3_decoder/ac3_downmix.c
4416    M /trunk/src/ac3_decoder/ac3_downmix_c.c
4417    M /trunk/src/ac3_decoder/ac3_exponent.c
4418    M /trunk/src/ac3_decoder/ac3_mantissa.c
4419    M /trunk/src/ac3_decoder/ac3_parse.c
4420    M /trunk/src/audio_decoder/adec_generic.c
4421    M /trunk/src/audio_decoder/adec_layer1.c
4422    M /trunk/src/audio_decoder/adec_layer2.c
4423    M /trunk/src/audio_decoder/audio_decoder.c
4424    M /trunk/src/input/input_clock.c
4425    M /trunk/src/input/input_dec.c
4426    M /trunk/src/input/input_ext-dec.c
4427    M /trunk/src/input/input_ext-intf.c
4428    M /trunk/src/input/input_netlist.c
4429    M /trunk/src/input/input_programs.c
4430    M /trunk/src/input/mpeg_system.c
4431    M /trunk/src/interface/intf_ctrl.c
4432    M /trunk/src/interface/intf_urldecode.c
4433    M /trunk/src/interface/main.c
4434    M /trunk/src/lpcm_decoder/lpcm_decoder.c
4435    M /trunk/src/lpcm_decoder/lpcm_decoder_thread.c
4436    M /trunk/src/misc/tests.c
4437    M /trunk/src/spu_decoder/spu_decoder.c
4438    M /trunk/src/video_decoder/video_decoder.c
4439    M /trunk/src/video_output/video_spu.c
4440    M /trunk/src/video_parser/video_fifo.c
4441    M /trunk/src/video_parser/vpar_headers.c
4442    M /trunk/src/video_parser/vpar_synchro.c
4445   * Code cleanup: removed a few tabulations.
4446   * Fixed inline asm routines to remove all read/write operands.
4447   * Added <string.h> to most files to prevent warnings under FreeBSD.
4448   * Added "break;" after "default:" in case switches to prevent
4449     warnings when compiling with GCC 3.0pre.
4451 ------------------------------------------------------------------------
4452 r796 | massiot | 2001-04-06 20:18:10 +0200 (Fri, 06 Apr 2001) | 4 lines
4453 Changed paths:
4454    M /trunk/Makefile.in
4455    M /trunk/configure
4456    M /trunk/configure.in
4457    A /trunk/extras/MacOSX_app
4458    A /trunk/extras/MacOSX_app/Contents
4459    A /trunk/extras/MacOSX_app/Contents/Info.plist
4460    A /trunk/extras/MacOSX_app/Contents/PkgInfo
4461    D /trunk/plugins/darwin/aout_darwin.c
4462    M /trunk/plugins/darwin/darwin.c
4463    A /trunk/plugins/macosx/aout_macosx.c
4464    M /trunk/plugins/macosx/intf_macosx.c
4465    M /trunk/plugins/macosx/macosx.c
4466    M /trunk/plugins/macosx/vout_macosx.c
4467    M /trunk/src/misc/modules.c
4468    M /trunk/src/video_output/video_text.c
4470 * Sync MOSX dev/CVS tree : code support for MacOS X audio, video and
4471 interface (courtesy of Eugenio Jarosiewicz & Colin Delacroix) ;
4472 * Bumped up version number to 0.2.70.
4474 ------------------------------------------------------------------------
4475 r797 | sam | 2001-04-07 06:17:49 +0200 (Sat, 07 Apr 2001) | 3 lines
4476 Changed paths:
4477    M /trunk/debian/changelog
4478    M /trunk/debian/changelog-css
4479    M /trunk/vlc.spec
4482    * Updated version information in RedHat and Debian package control files.
4484 ------------------------------------------------------------------------
4485 r798 | ej | 2001-04-07 06:59:52 +0200 (Sat, 07 Apr 2001) | 2 lines
4486 Changed paths:
4487    M /trunk/plugins/macosx/intf_macosx.c
4488    M /trunk/plugins/macosx/vout_macosx.c
4490 Cleaning code and a small fix to make quit work on OSX
4492 ------------------------------------------------------------------------
4493 r799 | massiot | 2001-04-07 18:21:13 +0200 (Sat, 07 Apr 2001) | 2 lines
4494 Changed paths:
4495    M /trunk/Makefile.in
4497 Added a missing file for MacOS X port.
4499 ------------------------------------------------------------------------
4500 r800 | massiot | 2001-04-07 18:35:05 +0200 (Sat, 07 Apr 2001) | 2 lines
4501 Changed paths:
4502    M /trunk/configure
4503    M /trunk/configure.in
4505 Disable x11 plugin if X11 headers are not found.
4507 ------------------------------------------------------------------------
4508 r801 | massiot | 2001-04-08 01:23:50 +0200 (Sun, 08 Apr 2001) | 3 lines
4509 Changed paths:
4510    M /trunk/vlc.spec
4512 Removed --enable-mmx (enabled by default under x86) and changed a few
4513 things.
4515 ------------------------------------------------------------------------
4516 r802 | sam | 2001-04-08 06:17:30 +0200 (Sun, 08 Apr 2001) | 5 lines
4517 Changed paths:
4518    M /trunk/ChangeLog
4519    M /trunk/Makefile.in
4520    M /trunk/TODO
4521    M /trunk/vlc.spec
4524   * Updated ChangeLog and TODO list.
4525   * Added TODO to the .spec file.
4526   * Fixed Makefile.in so that `make snapshot' takes extras/* in account.
4528 ------------------------------------------------------------------------
4529 r803 | stef | 2001-04-08 09:24:47 +0200 (Sun, 08 Apr 2001) | 4 lines
4530 Changed paths:
4531    M /trunk/include/input_ext-intf.h
4532    M /trunk/plugins/dvd/dvd_ifo.c
4533    M /trunk/plugins/dvd/dvd_ifo.h
4534    M /trunk/plugins/dvd/input_dvd.c
4535    M /trunk/plugins/gnome/gnome_callbacks.c
4536    M /trunk/plugins/gnome/gnome_callbacks.h
4537    M /trunk/plugins/gnome/gnome_interface.c
4538    M /trunk/plugins/gnome/intf_gnome.c
4539    M /trunk/plugins/gnome/intf_gnome.glade
4540    M /trunk/plugins/gnome/intf_gnome.h
4541    M /trunk/plugins/gtk/intf_gtk.c
4542    M /trunk/src/input/input_ext-intf.c
4543    M /trunk/src/input/input_programs.c
4544    M /trunk/src/input/mpeg_system.c
4545    M /trunk/src/interface/intf_playlist.c
4547 -changes in gnome interface
4549 -bugfix in input dvd
4551 ------------------------------------------------------------------------
4552 r804 | stef | 2001-04-08 09:45:03 +0200 (Sun, 08 Apr 2001) | 2 lines
4553 Changed paths:
4554    M /trunk/plugins/gnome/gnome_callbacks.c
4556 -fixed little poliotage
4558 ------------------------------------------------------------------------
4559 r805 | stef | 2001-04-08 11:04:33 +0200 (Sun, 08 Apr 2001) | 5 lines
4560 Changed paths:
4561    M /trunk/plugins/dvd/dvd_ioctl.c
4562    M /trunk/plugins/dvd/input_dvd.c
4563    M /trunk/src/input/input.c
4565 -fixed css authentication under linux since it has been broken for a few
4566 days: we have to initialize agid of authinfo struct.
4568 -fixed a segfault on exit when DVDInit fails
4570 ------------------------------------------------------------------------
4571 r806 | octplane | 2001-04-08 15:09:32 +0200 (Sun, 08 Apr 2001) | 2 lines
4572 Changed paths:
4573    M /trunk/plugins/gtk/gtk_callbacks.c
4574    M /trunk/plugins/gtk/gtk_playlist.c
4576 Corrected playlist update on file opening.
4578 ------------------------------------------------------------------------
4579 r807 | octplane | 2001-04-08 15:11:45 +0200 (Sun, 08 Apr 2001) | 2 lines
4580 Changed paths:
4581    A /trunk/plugins/gtk/gtk_playlist.h
4583 Forgot one small thing :P
4585 ------------------------------------------------------------------------
4586 r808 | sam | 2001-04-08 18:57:47 +0200 (Sun, 08 Apr 2001) | 4 lines
4587 Changed paths:
4588    M /trunk/ChangeLog
4589    M /trunk/README
4590    M /trunk/plugins/dvd/dvd_css.c
4591    M /trunk/plugins/dvd/input_dvd.c
4592    M /trunk/plugins/dvd/input_dvd.h
4593    M /trunk/plugins/x11/vout_xvideo.c
4596    * XVideo window now has a black background, thanks to Shane Harper.
4597    * Fixed a heap corruption in dvd_css.c.
4599 ------------------------------------------------------------------------
4600 r809 | stef | 2001-04-09 06:15:30 +0200 (Mon, 09 Apr 2001) | 2 lines
4601 Changed paths:
4602    M /trunk/plugins/beos/intf_beos.cpp
4604 -Fixed a compilation issue due to a change in an interface structure
4606 ------------------------------------------------------------------------
4607 r810 | stef | 2001-04-10 19:47:05 +0200 (Tue, 10 Apr 2001) | 4 lines
4608 Changed paths:
4609    M /trunk/include/input_ext-intf.h
4610    M /trunk/plugins/dvd/dvd_css.c
4611    M /trunk/plugins/dvd/dvd_ifo.c
4612    M /trunk/plugins/dvd/input_dvd.c
4613    M /trunk/plugins/dvd/input_dvd.h
4614    M /trunk/src/input/input.c
4615    M /trunk/src/input/input_programs.c
4617 -Fixed the lock segfault bug with some compilers
4619 -Quick kludge in ifo to avoid a bug with optims. The real fix is coming.
4621 ------------------------------------------------------------------------
4622 r811 | henri | 2001-04-11 04:01:24 +0200 (Wed, 11 Apr 2001) | 9 lines
4623 Changed paths:
4624    M /trunk/include/common.h
4625    M /trunk/include/config.h.in
4626    M /trunk/include/main.h
4627    M /trunk/include/netutils.h
4628    M /trunk/plugins/sdl/vout_sdl.c
4629    M /trunk/plugins/x11/vout_x11.c
4630    M /trunk/plugins/x11/vout_xvideo.c
4631    M /trunk/src/interface/interface.c
4632    M /trunk/src/interface/intf_ctrl.c
4633    M /trunk/src/interface/main.c
4634    M /trunk/src/misc/netutils.c
4637 - Ported the 0.2.0's channel changing functions
4638 - Cosmetic changes : the word 'vlan' is disappearing
4639 - network_ChannelJoin is still commented out as it's not in sync anymore
4640   with our channel server. Nitrox should fix this within a week.
4641 - X and Xv output : added autohide cursor as in SDL
4642 - X and Sv : keys 1 to 0 change channel
4643 - SDL : keys F1 to F10 change channel as I was not able to make 1..0 work
4645 ------------------------------------------------------------------------
4646 r812 | sam | 2001-04-11 06:31:59 +0200 (Wed, 11 Apr 2001) | 9 lines
4647 Changed paths:
4648    M /trunk/Makefile.in
4649    M /trunk/configure
4650    M /trunk/configure.in
4651    M /trunk/include/config.h.in
4652    M /trunk/plugins/dvd/dvd_css.c
4653    M /trunk/plugins/dvd/dvd_css.h
4654    M /trunk/plugins/dvd/dvd_ioctl.c
4655    M /trunk/plugins/dvd/dvd_ioctl.h
4656    M /trunk/plugins/dvd/input_dvd.c
4657    M /trunk/plugins/dvd/input_dvd.h
4658    M /trunk/plugins/gtk/gtk_callbacks.c
4661   * Fixed the whitespace/tab issues in the Makefile.
4662   * Corrected an awful typo in the version name, I hope Lieutenant Commander
4663     Arkady Grigorovich Ourumov will never set up us the bomb for that.
4664   * Removed deprecated stuff from config.h.
4665   * Disabled message queue by default.
4666   * A few other changes in the CSS code, the BeOS issues should be fixed.
4667   * Fixed a memory leak in gtk_callbacks.c (thanks to Dae).
4669 ------------------------------------------------------------------------
4670 r813 | sam | 2001-04-11 06:46:18 +0200 (Wed, 11 Apr 2001) | 3 lines
4671 Changed paths:
4672    M /trunk/plugins/dvd/dvd_ioctl.c
4675   * Forgot a BeOS patch on previous commit.
4677 ------------------------------------------------------------------------
4678 r814 | sam | 2001-04-11 14:52:10 +0200 (Wed, 11 Apr 2001) | 3 lines
4679 Changed paths:
4680    M /trunk/Makefile.in
4681    M /trunk/configure
4682    M /trunk/configure.in
4683    M /trunk/debian/control
4684    M /trunk/debian/control-css
4685    A /trunk/debian/gnome-vlc.desktop
4686    A /trunk/debian/gvlc.desktop
4687    M /trunk/debian/rules
4688    A /trunk/debian/vlc-gnome.menu
4689    M /trunk/debian/vlc-gtk.menu
4690    A /trunk/debian/vlc-qt.menu
4691    A /trunk/debian/vlc.desktop
4692    M /trunk/doc/vlc.1
4693    M /trunk/plugins/gnome/intf_gnome.c
4694    M /trunk/plugins/gtk/intf_gtk.c
4695    A /trunk/share/gnome-vlc.png
4696    A /trunk/share/gnome-vlc.xpm
4697    M /trunk/share/gvlc.png
4698    M /trunk/share/gvlc.xpm
4699    A /trunk/share/kvlc.png
4700    A /trunk/share/kvlc.xpm
4701    A /trunk/share/qvlc.png
4702    A /trunk/share/qvlc.xpm
4703    A /trunk/share/vlc-icons.xcf
4704    M /trunk/share/vlc.png
4705    M /trunk/share/vlc.xpm
4708   * Fixed icons location and Debian desktop menus.
4710 ------------------------------------------------------------------------
4711 r815 | ej | 2001-04-11 15:30:30 +0200 (Wed, 11 Apr 2001) | 16 lines
4712 Changed paths:
4713    M /trunk/Makefile.in
4714    M /trunk/plugins/macosx/intf_macosx.c
4715    A /trunk/plugins/macosx/macosx_common.h
4716    M /trunk/plugins/macosx/vout_macosx.c
4717    M /trunk/src/misc/modules.c
4718    M /trunk/src/video_output/video_text.c
4720 Updated & cleaned up intf_macosx.c and vout_macosx.c - added Open menu
4721 function support and a no-frills About box
4723 Created macosx_common.h in plugins/macosx/ to hold , well, common stuff
4724 (the way I see it, there is inherently a difficult separation of intf and
4725 vout on Mac OS, if anyone has suggestions I'm open)
4727 Cleaned up debug spew I left in modules.c and video_text.c
4729 Hacked main.c to disregard argv[1] when compiled for OSX & run as a full
4730 app (ie., double clicked and not launched from command line)... read the
4731 file for more details.  UGLY.
4733 Updated Makefile.in to make vlc.app by default on Mac OS X & Darwin, added
4734 clean code for it as well
4736 ------------------------------------------------------------------------
4737 r816 | ej | 2001-04-11 15:56:39 +0200 (Wed, 11 Apr 2001) | 2 lines
4738 Changed paths:
4739    M /trunk/Makefile.in
4741 Fixed a dumb mistake in Makefile.in
4743 ------------------------------------------------------------------------
4744 r817 | ej | 2001-04-11 16:10:49 +0200 (Wed, 11 Apr 2001) | 2 lines
4745 Changed paths:
4746    M /trunk/src/interface/main.c
4748 Forgot a little thing...main.  Done for now I hope;-)
4750 ------------------------------------------------------------------------
4751 r818 | sam | 2001-04-12 03:52:45 +0200 (Thu, 12 Apr 2001) | 8 lines
4752 Changed paths:
4753    M /trunk/AUTHORS
4754    M /trunk/Makefile.in
4755    M /trunk/include/beos_specific.h
4756    A /trunk/include/darwin_specific.h
4757    M /trunk/share/gnome-vlc.png
4758    M /trunk/share/gnome-vlc.xpm
4759    M /trunk/share/gvlc.png
4760    M /trunk/share/gvlc.xpm
4761    M /trunk/share/kvlc.png
4762    M /trunk/share/kvlc.xpm
4763    M /trunk/share/qvlc.png
4764    M /trunk/share/qvlc.xpm
4765    M /trunk/share/vlc-icons.xcf
4766    M /trunk/share/vlc.png
4767    M /trunk/share/vlc.xpm
4768    A /trunk/share/vlc_beos.rsrc
4769    M /trunk/src/audio_decoder/adec_layer1.c
4770    M /trunk/src/audio_decoder/adec_layer2.c
4771    M /trunk/src/interface/main.c
4772    M /trunk/src/misc/beos_specific.cpp
4773    A /trunk/src/misc/darwin_specific.c
4774    M /trunk/src/misc/modules.c
4775    M /trunk/src/misc/netutils.c
4776    M /trunk/src/video_output/video_text.c
4779   * BeOS icon and MIME resources courtesy of Wade Majors <guru@startrek.com>.
4780   * Updated icons.
4781   * Removed redefinition of NULL in src/audio_decoder/adec_layer?.c.
4782   * Created darwin_specific.c to store the program path at boot time.
4783     (XXX: check that it didn't break the OS X port)
4784   * Fixed a warning in netutils.c.
4786 ------------------------------------------------------------------------
4787 r819 | stef | 2001-04-12 04:40:09 +0200 (Thu, 12 Apr 2001) | 7 lines
4788 Changed paths:
4789    M /trunk/plugins/dvd/dvd_ifo.c
4790    M /trunk/plugins/dvd/dvd_ifo.h
4791    M /trunk/plugins/dvd/input_dvd.c
4792    M /trunk/plugins/dvd/input_dvd.h
4793    M /trunk/src/input/input.c
4794    M /trunk/src/input/input_programs.c
4796 -Fixed a bug in area management added in my last commit
4798 -Change the way ifo are read ; I hope this fixes problems with some
4799 compilers
4801 -Added error checks in dvd input
4803 ------------------------------------------------------------------------
4804 r820 | stef | 2001-04-12 05:26:53 +0200 (Thu, 12 Apr 2001) | 3 lines
4805 Changed paths:
4806    M /trunk/include/input_ext-intf.h
4807    M /trunk/plugins/gnome/intf_gnome.c
4808    M /trunk/src/input/input_programs.c
4809    M /trunk/src/input/mpeg_system.c
4811 -added a field to p_input->stream to inform the interface of a stream
4812 change (useful in network mode)
4814 ------------------------------------------------------------------------
4815 r821 | sam | 2001-04-12 10:24:30 +0200 (Thu, 12 Apr 2001) | 3 lines
4816 Changed paths:
4817    M /trunk/src/misc/beos_specific.cpp
4820   * Fixed a typo in yesterday's BeOS changes.
4822 ------------------------------------------------------------------------
4823 r822 | tcastley | 2001-04-12 13:10:16 +0200 (Thu, 12 Apr 2001) | 2 lines
4824 Changed paths:
4825    M /trunk/plugins/beos/intf_beos.cpp
4827 Fixed menu problem in 0.2.7.0
4829 ------------------------------------------------------------------------
4830 r823 | colin | 2001-04-12 19:57:12 +0200 (Thu, 12 Apr 2001) | 5 lines
4831 Changed paths:
4832    M /trunk/Makefile.in
4833    A /trunk/share/vlc.icns
4835 MacOS X
4836 make vlc.app now correctly updates vlc.app
4837 added an icon to the MacOS X vlc
4838 removed the build of the vlc app from the install target
4840 ------------------------------------------------------------------------
4841 r824 | henri | 2001-04-13 03:49:22 +0200 (Fri, 13 Apr 2001) | 12 lines
4842 Changed paths:
4843    M /trunk/TODO
4844    M /trunk/plugins/dvd/input_dvd.c
4845    M /trunk/plugins/gnome/intf_gnome.c
4846    M /trunk/plugins/gtk/intf_gtk.c
4847    M /trunk/src/input/mpeg_system.c
4850 TS input : only one audio & spu ES selected at a time
4851 Intf : ts streams in menu
4852        fixed a typo
4854 There be certainly need for debug on the TS input as vls complains about
4855 wrong sized PES packets, and that many streams do not seem to work.
4857 btw, I forgot to mention in my last commit the function that nooone will
4858 ever use : "right button" key of 105 keys keybords support under X11,
4859 Xv, Sdl
4861 ------------------------------------------------------------------------
4862 r825 | stef | 2001-04-13 07:36:12 +0200 (Fri, 13 Apr 2001) | 7 lines
4863 Changed paths:
4864    M /trunk/include/input_ext-intf.h
4865    M /trunk/plugins/dvd/dvd_ifo.c
4866    M /trunk/plugins/dvd/dvd_udf.c
4867    M /trunk/plugins/dvd/input_dvd.c
4868    M /trunk/plugins/gnome/gnome_interface.c
4869    M /trunk/plugins/gnome/intf_gnome.c
4870    M /trunk/plugins/gnome/intf_gnome.glade
4871    M /trunk/plugins/mpeg/input_ps.c
4872    M /trunk/plugins/mpeg/input_ts.c
4873    M /trunk/src/input/input_programs.c
4875 *Added udf fix by Billy Biggs
4877 *Added checks in dvd_ifo
4879 *Cleanings in gnome interface : the interface should be dependant on the
4880 input method.
4882 ------------------------------------------------------------------------
4883 r826 | sam | 2001-04-13 08:20:23 +0200 (Fri, 13 Apr 2001) | 10 lines
4884 Changed paths:
4885    M /trunk/ChangeLog
4886    M /trunk/configure
4887    M /trunk/configure.in
4888    M /trunk/debian/changelog
4889    M /trunk/debian/changelog-css
4890    M /trunk/debian/rules
4891    M /trunk/plugins/x11/vout_xvideo.c
4892    M /trunk/vlc.spec
4895   * Updated version number to 0.2.71 (release today).
4897   * Merged 6 months of CVS logs to the ChangeLog file.
4898     The vlc changelog can now be viewed here:
4899        http://www.videolan.org/vlc/changelog.html
4901   * Fixed a lintian error in debian/rules.
4902   * XVideo resize patch by Shane Harper <shanegh@optusnet.com.au>.
4904 ------------------------------------------------------------------------
4905 r827 | sam | 2001-04-13 16:33:22 +0200 (Fri, 13 Apr 2001) | 4 lines
4906 Changed paths:
4907    M /trunk/ChangeLog
4908    M /trunk/src/misc/darwin_specific.c
4911   * Fix for Darwin program path handling. I mistakenly assumed that the
4912     program path was always absolute.
4914 ------------------------------------------------------------------------
4915 r828 | sam | 2001-04-14 09:41:20 +0200 (Sat, 14 Apr 2001) | 4 lines
4916 Changed paths:
4917    M /trunk/ChangeLog
4918    M /trunk/src/interface/main.c
4919    M /trunk/src/misc/beos_specific.cpp
4920    M /trunk/src/misc/darwin_specific.c
4923   * Got rid of the sleep() hack in beos_specific.cpp
4924   * Fixed a segfault when launched without argument under Darwin.
4926 ------------------------------------------------------------------------
4927 r829 | sam | 2001-04-15 06:19:58 +0200 (Sun, 15 Apr 2001) | 29 lines
4928 Changed paths:
4929    M /trunk/AUTHORS
4930    M /trunk/ChangeLog
4931    A /trunk/Makefile
4932    M /trunk/Makefile.dep
4933    D /trunk/Makefile.in
4934    A /trunk/Makefile.modules.in
4935    A /trunk/Makefile.opts.in
4936    M /trunk/configure
4937    M /trunk/configure.in
4938    M /trunk/debian/rules
4939    M /trunk/include/modules.h
4940    A /trunk/include/modules_builtin.h.in
4941    A /trunk/plugins/alsa/Makefile
4942    A /trunk/plugins/beos/Makefile
4943    M /trunk/plugins/beos/intf_beos.cpp
4944    A /trunk/plugins/darwin/Makefile
4945    A /trunk/plugins/dsp/Makefile
4946    A /trunk/plugins/dummy/Makefile
4947    A /trunk/plugins/dvd/Makefile
4948    M /trunk/plugins/dvd/dvd.c
4949    M /trunk/plugins/dvd/dvd_udf.c
4950    M /trunk/plugins/dvd/input_dvd.c
4951    A /trunk/plugins/esd/Makefile
4952    A /trunk/plugins/fb/Makefile
4953    A /trunk/plugins/ggi/Makefile
4954    A /trunk/plugins/glide/Makefile
4955    A /trunk/plugins/gnome/Makefile
4956    M /trunk/plugins/gnome/gnome_interface.c
4957    M /trunk/plugins/gnome/intf_gnome.glade
4958    A /trunk/plugins/gtk/Makefile
4959    M /trunk/plugins/gtk/gtk_interface.c
4960    M /trunk/plugins/gtk/intf_gtk.glade
4961    A /trunk/plugins/idct/Makefile
4962    M /trunk/plugins/idct/idct.c
4963    M /trunk/plugins/idct/idct.h
4964    M /trunk/plugins/idct/idct_common.c
4965    M /trunk/plugins/idct/idctaltivec.c
4966    M /trunk/plugins/idct/idctclassic.c
4967    M /trunk/plugins/idct/idctmmx.c
4968    M /trunk/plugins/idct/idctmmxext.c
4969    A /trunk/plugins/macosx/Makefile
4970    A /trunk/plugins/mga/Makefile
4971    A /trunk/plugins/motion/Makefile
4972    M /trunk/plugins/motion/motion.c
4973    M /trunk/plugins/motion/motionmmx.c
4974    M /trunk/plugins/motion/motionmmxext.c
4975    M /trunk/plugins/motion/vdec_motion_common.c
4976    A /trunk/plugins/mpeg/Makefile
4977    A /trunk/plugins/null/Makefile
4978    A /trunk/plugins/qt/Makefile
4979    A /trunk/plugins/sdl/Makefile
4980    A /trunk/plugins/text/Makefile
4981    A /trunk/plugins/x11/Makefile
4982    A /trunk/plugins/yuv/Makefile
4983    M /trunk/plugins/yuv/transforms_yuv.c
4984    M /trunk/plugins/yuv/transforms_yuvmmx.c
4985    M /trunk/plugins/yuv/video_common.h
4986    M /trunk/plugins/yuv/video_yuv.c
4987    M /trunk/plugins/yuv/video_yuvmmx.c
4988    M /trunk/src/input/input.c
4989    M /trunk/src/misc/modules.c
4992   * Beginning of the built-in modules support.
4994    A few words about the changes:
4996   - heavy Makefile butchery has taken place, each plugin now has its own
4997     Makefile. I know recursive make blablah harmful, but it was just so
4998     much easier to do this way.
5000   - Makefile.in has disappeared, we now generate Makefile.opts with
5001     the overall configuration options, and Makefile.modules which is
5002     specific to module compilation.
5004   - After ./configure has been run you may want to modify Makefile.opts
5005     to check which modules will be compiled built-in or as plugins.
5007   - Some modules cannot be compiled built-in right now because proper
5008     linkage doesn't work yet. We don't really care since they're the
5009     interface or video output modules. The most important stuff works
5010     (iDCT, motion, YUV, input).
5012   - It's perfectly valid to compile a module both as built-in and as a
5013     plugin. vlc will only load the built-in one, but I'll add an option
5014     to ignore built-in modules for testing purposes.
5016   - We *should* see a performance increase here. I didn't have much time
5017     to test it, but if anyone can confirm and perhaps give a rough
5018     estimate of how much we gain...
5020 ------------------------------------------------------------------------
5021 r830 | sam | 2001-04-15 06:46:41 +0200 (Sun, 15 Apr 2001) | 4 lines
5022 Changed paths:
5023    M /trunk/ChangeLog
5024    M /trunk/Makefile
5025    M /trunk/Makefile.modules.in
5026    M /trunk/plugins/alsa/Makefile
5027    M /trunk/plugins/beos/Makefile
5028    M /trunk/plugins/darwin/Makefile
5029    M /trunk/plugins/dsp/Makefile
5030    M /trunk/plugins/dummy/Makefile
5031    M /trunk/plugins/dvd/Makefile
5032    M /trunk/plugins/esd/Makefile
5033    M /trunk/plugins/fb/Makefile
5034    M /trunk/plugins/ggi/Makefile
5035    M /trunk/plugins/glide/Makefile
5036    M /trunk/plugins/gnome/Makefile
5037    M /trunk/plugins/gtk/Makefile
5038    M /trunk/plugins/idct/Makefile
5039    M /trunk/plugins/macosx/Makefile
5040    M /trunk/plugins/mga/Makefile
5041    M /trunk/plugins/motion/Makefile
5042    M /trunk/plugins/mpeg/Makefile
5043    M /trunk/plugins/null/Makefile
5044    M /trunk/plugins/qt/Makefile
5045    M /trunk/plugins/sdl/Makefile
5046    M /trunk/plugins/text/Makefile
5047    M /trunk/plugins/x11/Makefile
5048    M /trunk/plugins/x11/vout_xvideo.c
5049    M /trunk/plugins/yuv/Makefile
5052   * A few Makefile fixes for BeOS
5053   * XVideo patches by Shane Harper
5055 ------------------------------------------------------------------------
5056 r831 | sam | 2001-04-15 12:54:46 +0200 (Sun, 15 Apr 2001) | 15 lines
5057 Changed paths:
5058    M /trunk/ChangeLog
5059    M /trunk/Makefile
5060    M /trunk/Makefile.modules.in
5061    M /trunk/Makefile.opts.in
5062    M /trunk/TODO
5063    M /trunk/configure
5064    M /trunk/configure.in
5065    M /trunk/plugins/alsa/Makefile
5066    M /trunk/plugins/beos/Makefile
5067    M /trunk/plugins/darwin/Makefile
5068    M /trunk/plugins/esd/Makefile
5069    M /trunk/plugins/gnome/Makefile
5070    M /trunk/plugins/gtk/Makefile
5071    M /trunk/plugins/idct/Makefile
5072    M /trunk/plugins/macosx/Makefile
5073    M /trunk/plugins/motion/Makefile
5074    M /trunk/plugins/mpeg/Makefile
5075    M /trunk/plugins/qt/Makefile
5076    M /trunk/plugins/qt/intf_qt.cpp
5077    M /trunk/plugins/sdl/Makefile
5078    M /trunk/plugins/text/Makefile
5079    M /trunk/plugins/x11/Makefile
5080    M /trunk/plugins/yuv/Makefile
5081    M /trunk/src/misc/modules.c
5084   * Updated TODO list with Henri's Apr 6th post.
5085   * Built-in modules support almost finished.
5087     Now you can compile any module within vlc, even the Gnome, Qt, SDL
5088   and GGI modules at the same time, resulting in an awful extra fat
5089   vlc binary with gazillons of library dependecies.
5091     The only exception is that the Gnome and Gtk+ modules can't be
5092   compiled together into vlc. But you can have one compiled built-in
5093   and the other as a plugin.
5095     Another consequence is that libdl should no longer be needed under
5096   MacOS X. I'll check this as soon as possible.
5098 ------------------------------------------------------------------------
5099 r832 | sam | 2001-04-15 17:11:44 +0200 (Sun, 15 Apr 2001) | 4 lines
5100 Changed paths:
5101    M /trunk/ChangeLog
5102    M /trunk/configure
5103    M /trunk/configure.in
5104    M /trunk/debian/rules
5107   * All Debian packages are now lintian-clean.
5108   * Fixed XVideo plugin linking.
5110 ------------------------------------------------------------------------
5111 r833 | stef | 2001-04-15 17:32:48 +0200 (Sun, 15 Apr 2001) | 3 lines
5112 Changed paths:
5113    M /trunk/plugins/dvd/dvd_ifo.c
5115 -Maybe fixed the "cell not found" bug. I can't test it because I don't
5116 have a dvd drive here, but it should work now.
5118 ------------------------------------------------------------------------
5119 r834 | stef | 2001-04-15 23:17:50 +0200 (Sun, 15 Apr 2001) | 2 lines
5120 Changed paths:
5121    M /trunk/plugins/dvd/dvd_ifo.c
5122    M /trunk/plugins/dvd/input_dvd.c
5124 -I hope I have fixed the ifo bug lastly !
5126 ------------------------------------------------------------------------
5127 r835 | sam | 2001-04-16 09:40:11 +0200 (Mon, 16 Apr 2001) | 5 lines
5128 Changed paths:
5129    M /trunk/.cvsignore
5130    M /trunk/ChangeLog
5131    M /trunk/INSTALL
5132    M /trunk/Makefile
5133    A /trunk/Makefile.common
5134    M /trunk/Makefile.dep
5135    M /trunk/Makefile.opts.in
5136    M /trunk/include/.cvsignore
5137    A /trunk/plugins/alsa/.cvsignore
5138    M /trunk/plugins/alsa/Makefile
5139    A /trunk/plugins/beos/.cvsignore
5140    M /trunk/plugins/beos/Makefile
5141    A /trunk/plugins/darwin/.cvsignore
5142    M /trunk/plugins/darwin/Makefile
5143    A /trunk/plugins/dsp/.cvsignore
5144    M /trunk/plugins/dsp/Makefile
5145    A /trunk/plugins/dummy/.cvsignore
5146    M /trunk/plugins/dummy/Makefile
5147    A /trunk/plugins/dvd/.cvsignore
5148    M /trunk/plugins/dvd/Makefile
5149    A /trunk/plugins/esd/.cvsignore
5150    M /trunk/plugins/esd/Makefile
5151    A /trunk/plugins/fb/.cvsignore
5152    M /trunk/plugins/fb/Makefile
5153    A /trunk/plugins/ggi/.cvsignore
5154    M /trunk/plugins/ggi/Makefile
5155    A /trunk/plugins/glide/.cvsignore
5156    M /trunk/plugins/glide/Makefile
5157    M /trunk/plugins/gnome/.cvsignore
5158    M /trunk/plugins/gnome/Makefile
5159    M /trunk/plugins/gtk/.cvsignore
5160    M /trunk/plugins/gtk/Makefile
5161    A /trunk/plugins/idct/.cvsignore
5162    M /trunk/plugins/idct/Makefile
5163    A /trunk/plugins/macosx/.cvsignore
5164    M /trunk/plugins/macosx/Makefile
5165    A /trunk/plugins/mga/.cvsignore
5166    M /trunk/plugins/mga/Makefile
5167    A /trunk/plugins/motion/.cvsignore
5168    M /trunk/plugins/motion/Makefile
5169    A /trunk/plugins/mpeg/.cvsignore
5170    M /trunk/plugins/mpeg/Makefile
5171    A /trunk/plugins/null/.cvsignore
5172    M /trunk/plugins/null/Makefile
5173    M /trunk/plugins/qt/.cvsignore
5174    M /trunk/plugins/qt/Makefile
5175    M /trunk/plugins/qt/intf_qt.cpp
5176    A /trunk/plugins/sdl/.cvsignore
5177    M /trunk/plugins/sdl/Makefile
5178    A /trunk/plugins/text/.cvsignore
5179    M /trunk/plugins/text/Makefile
5180    A /trunk/plugins/x11/.cvsignore
5181    M /trunk/plugins/x11/Makefile
5182    A /trunk/plugins/yuv/.cvsignore
5183    M /trunk/plugins/yuv/Makefile
5184    M /trunk/src/misc/modules.c
5187   * Added .cvsignore files in the plugins directories.
5188   * Additional Makefile cleaning for built-in modules.
5189   * Fixed Makefile for Solaris target.
5191 ------------------------------------------------------------------------
5192 r836 | asmax | 2001-04-16 14:34:28 +0200 (Mon, 16 Apr 2001) | 10 lines
5193 Changed paths:
5194    M /trunk/include/input_ext-dec.h
5195    M /trunk/plugins/mpeg/input_ps.c
5196    M /trunk/plugins/mpeg/input_ps.h
5200 Re-added the new packet allocation method in PS input, using packet caches.
5201 With warning level 1, you can see when a packet is allocated or freed; the
5202 goal is to never call 'malloc' nor 'free', except at the beginning of the
5203 stream.
5204 The size of the different caches can be adjusted in plugins/mpeg/input_ps.h.
5205 If 'free' is called too often, it means that a cache is too small, so try
5206 to increase its size.
5208 ------------------------------------------------------------------------
5209 r837 | sam | 2001-04-16 15:00:55 +0200 (Mon, 16 Apr 2001) | 5 lines
5210 Changed paths:
5211    M /trunk/ChangeLog
5212    M /trunk/Makefile
5213    D /trunk/Makefile.common
5214    A /trunk/Makefile.modules
5215    D /trunk/Makefile.modules.in
5216    M /trunk/configure
5217    M /trunk/configure.in
5218    M /trunk/debian/changelog
5219    M /trunk/debian/changelog-css
5220    M /trunk/plugins/alsa/Makefile
5221    M /trunk/plugins/beos/Makefile
5222    M /trunk/plugins/darwin/Makefile
5223    M /trunk/plugins/dsp/Makefile
5224    M /trunk/plugins/dummy/Makefile
5225    M /trunk/plugins/dvd/Makefile
5226    M /trunk/plugins/dvd/dvd.c
5227    M /trunk/plugins/esd/Makefile
5228    M /trunk/plugins/fb/Makefile
5229    M /trunk/plugins/ggi/Makefile
5230    M /trunk/plugins/glide/Makefile
5231    M /trunk/plugins/gnome/Makefile
5232    M /trunk/plugins/gtk/Makefile
5233    M /trunk/plugins/idct/Makefile
5234    M /trunk/plugins/macosx/Makefile
5235    M /trunk/plugins/mga/Makefile
5236    M /trunk/plugins/motion/Makefile
5237    M /trunk/plugins/mpeg/Makefile
5238    M /trunk/plugins/null/Makefile
5239    M /trunk/plugins/qt/Makefile
5240    M /trunk/plugins/sdl/Makefile
5241    M /trunk/plugins/text/Makefile
5242    M /trunk/plugins/x11/Makefile
5243    M /trunk/plugins/yuv/Makefile
5244    M /trunk/vlc.spec
5247   * Merged Makefile.common and Makefile.modules.in into Makefile.modules
5248   * Updated version number and ChangeLog to 0.2.72
5249   * Additional plugin Makefile cleaning, probably the last.
5251 ------------------------------------------------------------------------
5252 r838 | sam | 2001-04-16 15:32:55 +0200 (Mon, 16 Apr 2001) | 3 lines
5253 Changed paths:
5254    M /trunk/configure
5255    M /trunk/configure.in
5258   * Fixed a typo in configure.in
5260 ------------------------------------------------------------------------
5261 r839 | sam | 2001-04-17 16:39:51 +0200 (Tue, 17 Apr 2001) | 5 lines
5262 Changed paths:
5263    M /trunk/ChangeLog
5264    M /trunk/Makefile
5265    M /trunk/extras/MacOSX_dvdioctl/DVDioctl.cpp
5268    OS X fixes:
5269   * Fixed a compilation issue in the DVDioctl driver.
5270   * Added a call to ranlib after a built-in module compilation.
5272 ------------------------------------------------------------------------
5273 r840 | massiot | 2001-04-17 16:54:54 +0200 (Tue, 17 Apr 2001) | 2 lines
5274 Changed paths:
5275    M /trunk/src/input/mpeg_system.c
5277 Fixed optional PES size bug, courtesy of Steve Brown <sbrown@cortland.com>.
5279 ------------------------------------------------------------------------
5280 r841 | colin | 2001-04-17 17:17:58 +0200 (Tue, 17 Apr 2001) | 2 lines
5281 Changed paths:
5282    M /trunk/ChangeLog
5283    M /trunk/extras/MacOSX_app/Contents/Info.plist
5285 fix MacOS X icon
5287 ------------------------------------------------------------------------
5288 r842 | massiot | 2001-04-17 20:22:51 +0200 (Tue, 17 Apr 2001) | 3 lines
5289 Changed paths:
5290    M /trunk/plugins/x11/vout_xvideo.c
5292 Removed a "1" from an intf_DbgMsg() (courtesy of Steve Brown
5293 <sbrown@cortland.com>)
5295 ------------------------------------------------------------------------
5296 r843 | marcari | 2001-04-17 22:43:41 +0200 (Tue, 17 Apr 2001) | 2 lines
5297 Changed paths:
5298    M /trunk/src/misc/netutils.c
5300 *** empty log message ***
5302 ------------------------------------------------------------------------
5303 r844 | stef | 2001-04-20 07:40:03 +0200 (Fri, 20 Apr 2001) | 12 lines
5304 Changed paths:
5305    M /trunk/include/config.h.in
5306    M /trunk/include/input_ext-intf.h
5307    M /trunk/plugins/dvd/dvd_css.c
5308    M /trunk/plugins/dvd/dvd_ifo.c
5309    M /trunk/plugins/dvd/dvd_ifo.h
5310    M /trunk/plugins/dvd/input_dvd.c
5311    M /trunk/plugins/dvd/input_dvd.h
5312    M /trunk/plugins/gnome/gnome_callbacks.c
5313    M /trunk/plugins/gnome/gnome_interface.c
5314    M /trunk/plugins/gnome/intf_gnome.c
5315    M /trunk/plugins/gnome/intf_gnome.glade
5316    M /trunk/plugins/gnome/intf_gnome.h
5317    M /trunk/plugins/mpeg/input_ps.c
5318    M /trunk/src/interface/main.c
5320 -corrected some bugs in gnome interface: language menu are now
5321 synchronized ; and menus have less chances to be changed when they're opened.
5323 -added basic angle support ; this is a first try. It works with my 2
5324 test-DVDs, but I'd like that people having DVDs with repeated scenes to
5325 test it. We can choose angle with command line option -u (don't ask me
5326 why :)
5328 -a cosmetic change in css decryption.
5330 Since config.h.in has changed, you have to re-run ./configure.
5332 ------------------------------------------------------------------------
5333 r845 | sam | 2001-04-20 13:06:48 +0200 (Fri, 20 Apr 2001) | 6 lines
5334 Changed paths:
5335    M /trunk/ChangeLog
5336    M /trunk/Makefile
5337    M /trunk/Makefile.opts.in
5338    M /trunk/TODO
5339    M /trunk/configure
5340    M /trunk/configure.in
5341    M /trunk/include/modules_builtin.h.in
5342    M /trunk/plugins/gtk/Makefile
5343    M /trunk/plugins/x11/Makefile
5344    M /trunk/src/misc/modules.c
5347   * Fixed build process when no plugins or no builtins were chosen.
5348   * Makefile changes to get around MacOS X's brain-damaged gcc.
5349   * FreeBSD configure and Makefile patches, courtesy of Espen
5350     Skoglund <esk@ira.uka.de>.
5352 ------------------------------------------------------------------------
5353 r846 | reno | 2001-04-20 14:14:34 +0200 (Fri, 20 Apr 2001) | 5 lines
5354 Changed paths:
5355    M /trunk/src/ac3_decoder/ac3_bit_allocate.c
5356    D /trunk/src/ac3_decoder/ac3_bit_stream.h
5357    M /trunk/src/ac3_decoder/ac3_decoder.c
5358    M /trunk/src/ac3_decoder/ac3_decoder.h
5359    M /trunk/src/ac3_decoder/ac3_decoder_thread.c
5360    M /trunk/src/ac3_decoder/ac3_decoder_thread.h
5361    M /trunk/src/ac3_decoder/ac3_downmix.c
5362    M /trunk/src/ac3_decoder/ac3_downmix_c.c
5363    M /trunk/src/ac3_decoder/ac3_exponent.c
5364    M /trunk/src/ac3_decoder/ac3_imdct.c
5365    M /trunk/src/ac3_decoder/ac3_mantissa.c
5366    M /trunk/src/ac3_decoder/ac3_parse.c
5367    M /trunk/src/ac3_decoder/ac3_rematrix.c
5369 * Begin of the new ac3_decoder ;)
5370   - New ac3_decoder_thread (we now use GetBits)
5372 Please warn me if you encounter some problem
5374 ------------------------------------------------------------------------
5375 r847 | sam | 2001-04-20 17:02:48 +0200 (Fri, 20 Apr 2001) | 4 lines
5376 Changed paths:
5377    M /trunk/Makefile
5378    M /trunk/configure
5379    M /trunk/configure.in
5380    M /trunk/plugins/mpeg/Makefile
5381    A /trunk/plugins/mpeg/es.c
5382    A /trunk/plugins/mpeg/input_es.c
5383    A /trunk/plugins/mpeg/input_es.h
5386   * Added prototypes for the Elementary Stream input module for Alexis.
5387      it's compiled by default, to activate it: "vlc --input es <file.mpeg>"
5389 ------------------------------------------------------------------------
5390 r848 | sam | 2001-04-21 02:31:07 +0200 (Sat, 21 Apr 2001) | 3 lines
5391 Changed paths:
5392    M /trunk/AUTHORS
5393    M /trunk/ChangeLog
5394    M /trunk/plugins/x11/vout_x11.c
5397   * X11 fullscreen mode, courtesy of David Kennedy <dkennedy@tinytoad.com>
5399 ------------------------------------------------------------------------
5400 r849 | sam | 2001-04-22 00:49:24 +0200 (Sun, 22 Apr 2001) | 3 lines
5401 Changed paths:
5402    M /trunk/ChangeLog
5403    M /trunk/plugins/x11/vout_x11.c
5404    M /trunk/plugins/x11/vout_xvideo.c
5407   * XVideo fullscreen mode by David Kennedy <dkennedy@tinytoad.com>.
5409 ------------------------------------------------------------------------
5410 r850 | stef | 2001-04-22 02:08:26 +0200 (Sun, 22 Apr 2001) | 6 lines
5411 Changed paths:
5412    M /trunk/plugins/dvd/dvd_css.c
5413    M /trunk/plugins/dvd/dvd_ifo.c
5414    M /trunk/plugins/dvd/dvd_ifo.h
5415    M /trunk/plugins/dvd/input_dvd.c
5416    M /trunk/plugins/dvd/input_dvd.h
5417    M /trunk/plugins/gnome/gnome_callbacks.c
5418    M /trunk/plugins/gnome/gnome_callbacks.h
5419    M /trunk/plugins/gnome/gnome_interface.c
5420    M /trunk/plugins/gnome/intf_gnome.c
5421    M /trunk/plugins/gnome/intf_gnome.glade
5422    M /trunk/plugins/gnome/intf_gnome.h
5423    M /trunk/plugins/mpeg/input_ps.c
5424    M /trunk/src/input/input.c
5425    M /trunk/src/input/input_programs.c
5427 -better handling of angles: you should be able to change on the fly now
5429 -removed ?\239?\191?\189 bug added at my last commit in css code; cleaned CSSGetKey
5431 -various changes and bugfixes in the gnome interface.
5433 ------------------------------------------------------------------------
5434 r851 | benny | 2001-04-25 08:56:47 +0200 (Wed, 25 Apr 2001) | 3 lines
5435 Changed paths:
5436    M /trunk/src/interface/intf_msg.c
5438 Get rid of the asprintf that were slow and not available on Solaris. Didn't
5439 check if the new code still compiles everywhere, but it should.
5441 ------------------------------------------------------------------------
5442 r852 | sam | 2001-04-25 11:31:14 +0200 (Wed, 25 Apr 2001) | 5 lines
5443 Changed paths:
5444    M /trunk/TODO
5445    M /trunk/configure
5446    M /trunk/configure.in
5447    M /trunk/plugins/x11/vout_xvideo.c
5448    M /trunk/src/audio_output/aout_s16.c
5449    M /trunk/src/interface/intf_msg.c
5450    M /trunk/src/spu_decoder/spu_decoder.c
5451    M /trunk/src/video_output/video_output.c
5452    M /trunk/src/video_output/video_text.c
5455   * Updated the TODO list.
5456   * Fixed benny's latest C++ism.
5457   * Fonts not found are no longer fatal to the video output.
5459 ------------------------------------------------------------------------
5460 r853 | massiot | 2001-04-25 12:22:33 +0200 (Wed, 25 Apr 2001) | 5 lines
5461 Changed paths:
5462    M /trunk/include/input.h
5463    M /trunk/include/input_ext-dec.h
5464    M /trunk/src/ac3_decoder/ac3_decoder_thread.c
5465    M /trunk/src/audio_decoder/audio_decoder.c
5466    M /trunk/src/input/input_ext-dec.c
5467    M /trunk/src/spu_decoder/spu_decoder.c
5468    M /trunk/src/video_output/video_output.c
5469    M /trunk/src/video_parser/video_parser.c
5471 * Fixed an alignment issue with the bit stream and the bit stream
5472 callback on startup - InitBitstream prototype has changed ;
5473 * Removed a buffer zeroing in video output - doesn't change anything
5474 for me, does it for you ?
5476 ------------------------------------------------------------------------
5477 r854 | massiot | 2001-04-25 22:54:07 +0200 (Wed, 25 Apr 2001) | 2 lines
5478 Changed paths:
5479    M /trunk/src/video_output/video_output.c
5481 * Removed my optimization attempt.
5483 ------------------------------------------------------------------------
5484 r855 | reno | 2001-04-26 02:12:19 +0200 (Thu, 26 Apr 2001) | 5 lines
5485 Changed paths:
5486    M /trunk/src/ac3_decoder/ac3_decoder.h
5487    M /trunk/src/ac3_decoder/ac3_mantissa.c
5488    M /trunk/src/ac3_decoder/ac3_parse.c
5490 * Follow of the new ac3_decoder ;)
5491   - New ac3_mantissa (use of dithflag, new unpack)
5492   - Correction of an introducing counting bug in ac3_parse
5493     (i forget 2 bits in total_bits_read)
5495 ------------------------------------------------------------------------
5496 r856 | sam | 2001-04-26 05:55:44 +0200 (Thu, 26 Apr 2001) | 5 lines
5497 Changed paths:
5498    M /trunk/ChangeLog
5499    M /trunk/plugins/x11/vout_xvideo.c
5500    M /trunk/src/input/input_clock.c
5503   * Commited Shane's XVideo patches. It works here (tm).
5504   * Fixed the XVideo aspect ratio (AR_SQUARE_PICTURE means square pixels,
5505     not square image).
5507 ------------------------------------------------------------------------
5508 r857 | sam | 2001-04-26 13:23:16 +0200 (Thu, 26 Apr 2001) | 4 lines
5509 Changed paths:
5510    M /trunk/plugins/sdl/aout_sdl.c
5511    M /trunk/src/ac3_decoder/ac3_bit_allocate.c
5512    M /trunk/src/ac3_decoder/ac3_imdct.c
5513    M /trunk/src/ac3_decoder/ac3_rematrix.c
5516   * Fixed the ac3dec compilation under BeOS.
5517   * Removed a useless #include in aout_sdl.c.
5519 ------------------------------------------------------------------------
5520 r858 | sam | 2001-04-27 18:08:26 +0200 (Fri, 27 Apr 2001) | 11 lines
5521 Changed paths:
5522    M /trunk/AUTHORS
5523    M /trunk/ChangeLog
5524    M /trunk/Makefile
5525    M /trunk/TODO
5526    M /trunk/configure
5527    M /trunk/configure.in
5528    M /trunk/doc/vlc.1
5529    M /trunk/include/defs.h.in
5530    M /trunk/plugins/alsa/alsa.c
5531    M /trunk/plugins/gtk/intf_gtk.c
5532    M /trunk/plugins/mpeg/input_ts.c
5533    M /trunk/plugins/qt/intf_qt.cpp
5534    M /trunk/plugins/text/Makefile
5535    A /trunk/plugins/text/intf_rc.c
5536    A /trunk/plugins/text/rc.c
5537    M /trunk/src/input/input.c
5538    M /trunk/src/input/input_ext-intf.c
5539    M /trunk/src/misc/netutils.c
5542   * Fixed the continuous 'seeking position' bug in network mode.
5543   * rc interface plugin for vlc control through /dev/stdin courtesy
5544     of Peter Surda <shurdeek@panorama.sth.ac.at>.
5545   * Support for `ts://foo:42' style input source:
5546      vlc ts://vls.via.ecp.fr:1234
5547      vlc ts://vls.via.ecp.fr
5548      vlc ts:vls
5549      vlc ts:vls:4321
5550     As a side effect, the Gnome and Gtk "network input" buttons work.
5552 ------------------------------------------------------------------------
5553 r859 | henri | 2001-04-27 20:07:57 +0200 (Fri, 27 Apr 2001) | 9 lines
5554 Changed paths:
5555    M /trunk/include/netutils.h
5556    M /trunk/src/input/input.c
5557    M /trunk/src/interface/main.c
5558    M /trunk/src/misc/netutils.c
5561 Repaired broadcast support : binding INADDR_ANY doesn't seem to work.
5563 You now have to specify the broadcast address as an argument.
5564 Btw, thanks to sam, you can now use ts://server:port style, which gives
5565 for broadcast :
5567 vlc --broadcast broadcast_addr ts://server[:port]
5569 ------------------------------------------------------------------------
5570 r860 | massiot | 2001-04-27 21:29:11 +0200 (Fri, 27 Apr 2001) | 6 lines
5571 Changed paths:
5572    M /trunk/Makefile.opts.in
5573    M /trunk/configure
5574    M /trunk/configure.in
5575    M /trunk/include/config.h.in
5576    M /trunk/include/intf_msg.h
5577    M /trunk/plugins/dvd/input_dvd.c
5578    M /trunk/plugins/mpeg/input_ps.c
5579    M /trunk/plugins/x11/vout_x11.c
5580    M /trunk/plugins/x11/vout_xvideo.c
5581    M /trunk/src/input/input_programs.c
5582    M /trunk/src/interface/intf_msg.c
5583    M /trunk/src/misc/rsc_files.c
5584    M /trunk/src/video_output/video_output.c
5585    M /trunk/src/video_output/video_text.c
5586    M /trunk/src/video_parser/vpar_synchro.c
5588 Change --enable-debug into --enable-trace. Same with DEBUG_*.
5589 --enable-debug still exists, but only activates -g and additional
5590 safety checks.
5592 I hope I didn't break anything :))
5594 ------------------------------------------------------------------------
5595 r861 | stef | 2001-04-28 01:29:14 +0200 (Sat, 28 Apr 2001) | 5 lines
5596 Changed paths:
5597    M /trunk/plugins/mpeg/input_ps.c
5599 -fixed a segfault added in last commit: initilisation of p_cache was
5600 done inside a #ifdef DEBUG
5602 It still segfaults for me on exit.
5604 ------------------------------------------------------------------------
5605 r862 | henri | 2001-04-28 02:28:52 +0200 (Sat, 28 Apr 2001) | 3 lines
5606 Changed paths:
5607    M /trunk/ChangeLog
5608    A /trunk/doc/vlc-howto.sgml
5611 Added a howto. Feel free to correct it. I'll put it on the website soon.
5613 ------------------------------------------------------------------------
5614 r863 | sam | 2001-04-28 05:36:26 +0200 (Sat, 28 Apr 2001) | 10 lines
5615 Changed paths:
5616    M /trunk/AUTHORS
5617    M /trunk/ChangeLog
5618    M /trunk/Makefile
5619    M /trunk/Makefile.opts.in
5620    M /trunk/configure
5621    M /trunk/configure.in
5622    M /trunk/extras/GNUgetopt/getopt.c
5623    M /trunk/include/common.h
5624    M /trunk/include/config.h.in
5625    M /trunk/include/defs.h.in
5626    M /trunk/include/input_ext-dec.h
5627    M /trunk/include/modules.h
5628    M /trunk/include/threads.h
5629    M /trunk/plugins/dvd/dvd_udf.c
5630    M /trunk/plugins/dvd/input_dvd.c
5631    M /trunk/plugins/fb/fb.c
5632    M /trunk/plugins/ggi/ggi.c
5633    M /trunk/plugins/glide/glide.c
5634    M /trunk/plugins/gnome/gnome.c
5635    M /trunk/plugins/gtk/gtk.c
5636    M /trunk/plugins/gtk/gtk_callbacks.c
5637    M /trunk/plugins/gtk/gtk_playlist.c
5638    M /trunk/plugins/macosx/vout_macosx.c
5639    M /trunk/plugins/mga/mga.c
5640    M /trunk/plugins/mpeg/input_es.c
5641    M /trunk/plugins/mpeg/input_ps.c
5642    M /trunk/plugins/mpeg/input_ts.c
5643    M /trunk/plugins/sdl/aout_sdl.c
5644    M /trunk/plugins/sdl/sdl.c
5645    M /trunk/plugins/sdl/vout_sdl.c
5646    M /trunk/plugins/text/ncurses.c
5647    M /trunk/plugins/x11/vout_x11.c
5648    M /trunk/plugins/x11/x11.c
5649    M /trunk/plugins/x11/xvideo.c
5650    M /trunk/plugins/yuv/transforms_yuvmmx.h
5651    M /trunk/src/audio_output/audio_output.c
5652    M /trunk/src/input/input.c
5653    M /trunk/src/input/input_clock.c
5654    M /trunk/src/input/input_dec.c
5655    M /trunk/src/input/input_ext-dec.c
5656    M /trunk/src/input/input_ext-intf.c
5657    M /trunk/src/input/input_netlist.c
5658    M /trunk/src/input/input_programs.c
5659    M /trunk/src/input/mpeg_system.c
5660    M /trunk/src/interface/interface.c
5661    M /trunk/src/interface/intf_channels.c
5662    M /trunk/src/interface/intf_msg.c
5663    M /trunk/src/interface/main.c
5664    M /trunk/src/misc/modules.c
5665    M /trunk/src/misc/mtime.c
5666    M /trunk/src/misc/netutils.c
5667    M /trunk/src/spu_decoder/spu_decoder.c
5668    M /trunk/src/video_output/video_text.c
5669    M /trunk/src/video_parser/video_parser.c
5670    M /trunk/src/video_parser/vpar_blocks.c
5671    M /trunk/src/video_parser/vpar_headers.c
5674   * Coding style fixes here and there.
5675   * Miscellaneous QNX compile fixes.
5676   * Beginning of the mingw32 port by Gildas Bazin <gbazin@netcourrier.com>.
5677   * Added Marcari and Gildas to the AUTHORS file.
5679   (I commited the mingw32 port because it doesn't add any new code outside
5680    the #ifdefs, but we won't tell a word about it for the moment. We don't
5681    really need windows users whining about bugs, do we ?)
5683 ------------------------------------------------------------------------
5684 r864 | sam | 2001-04-28 06:09:38 +0200 (Sat, 28 Apr 2001) | 3 lines
5685 Changed paths:
5686    M /trunk/configure
5687    M /trunk/configure.in
5690   * Don't use the #@%&$! autoconf-suggested CFLAGS.
5692 ------------------------------------------------------------------------
5693 r865 | sam | 2001-04-28 06:47:20 +0200 (Sat, 28 Apr 2001) | 5 lines
5694 Changed paths:
5695    M /trunk/ChangeLog
5696    M /trunk/configure
5697    M /trunk/configure.in
5698    M /trunk/src/audio_output/aout_s16.c
5701   * Fixed a nonsense in configure.in preventing to build sdl.so.
5702   * Removed a few stupid debug instructions in aout_s16.c that should
5703     have never been commited. Sorry about that.
5705 ------------------------------------------------------------------------
5706 r866 | henri | 2001-04-28 07:08:01 +0200 (Sat, 28 Apr 2001) | 3 lines
5707 Changed paths:
5708    M /trunk/ChangeLog
5709    M /trunk/configure
5710    M /trunk/configure.in
5711    M /trunk/vlc.spec
5714 Updated files for 0.2.73 release
5716 ------------------------------------------------------------------------
5717 r867 | sam | 2001-04-28 07:12:05 +0200 (Sat, 28 Apr 2001) | 3 lines
5718 Changed paths:
5719    M /trunk/debian/changelog
5720    M /trunk/debian/changelog-css
5721    M /trunk/debian/control
5722    M /trunk/debian/rules
5725   * Updated debian control files and disabled ALSA for this version.
5727 ------------------------------------------------------------------------
5728 r868 | henri | 2001-04-29 01:19:19 +0200 (Sun, 29 Apr 2001) | 4 lines
5729 Changed paths:
5730    M /trunk/src/input/input.c
5731    M /trunk/src/input/input_clock.c
5732    M /trunk/src/input/input_netlist.c
5735 - Fixed a bug in TS input. It should be more smooth now
5736 - Fixed the pace control. Meuuh, could you check ?
5738 ------------------------------------------------------------------------
5739 r869 | stef | 2001-04-29 04:48:51 +0200 (Sun, 29 Apr 2001) | 10 lines
5740 Changed paths:
5741    M /trunk/Makefile
5742    M /trunk/include/audio_output.h
5743    M /trunk/include/main.h
5744    M /trunk/plugins/dvd/input_dvd.c
5745    M /trunk/plugins/gnome/intf_gnome.c
5746    A /trunk/src/ac3_spdif
5747    A /trunk/src/ac3_spdif/ac3_iec958.c
5748    A /trunk/src/ac3_spdif/ac3_iec958.h
5749    A /trunk/src/ac3_spdif/ac3_spdif.c
5750    A /trunk/src/ac3_spdif/ac3_spdif.h
5751    M /trunk/src/audio_output/aout_common.h
5752    M /trunk/src/audio_output/audio_output.c
5753    M /trunk/src/input/input_programs.c
5754    M /trunk/src/interface/main.c
5756 -new audio output using direct ac3 pass-through with some sound
5757 cards: it sends raw ac3 frames to an external ac3 decoder. It is very
5758 experimental yet, hasn't any synchro ... but it works well with my
5759 sblive and my dtt3500 speakers (note that you need a patched emu10k1
5760 driver for this to work).
5762 -bug fix in gnome intf thanks to Shane Harper.
5764 -bug fix in input_dvd for chapter change.
5766 ------------------------------------------------------------------------
5767 r870 | stef | 2001-04-29 04:55:36 +0200 (Sun, 29 Apr 2001) | 2 lines
5768 Changed paths:
5769    A /trunk/src/audio_output/aout_spdif.c
5771 Forgot one file.
5773 ------------------------------------------------------------------------
5774 r871 | stef | 2001-04-29 16:52:42 +0200 (Sun, 29 Apr 2001) | 11 lines
5775 Changed paths:
5776    M /trunk/plugins/dvd/input_dvd.c
5777    M /trunk/src/input/input_clock.c
5778    M /trunk/src/video_parser/video_parser.c
5780 -slight modification in ClockManageRef: after a synchro reinit, we still
5781 do the mwait and re-init last-cr so that there no date irregularity.
5782 Such a thing is necessary for dvd playback at cell change ; however,
5783 Meuuh, could you look at that since you might think we should do
5784 otherwise.
5786 -turned the "bitsream callback discontinuity" message to debug.
5788 -removed modification of the title environnement variable in input dvd
5789 at title change since we no longer restart the input at title change.
5791 ------------------------------------------------------------------------
5792 r872 | sam | 2001-04-29 19:03:20 +0200 (Sun, 29 Apr 2001) | 5 lines
5793 Changed paths:
5794    M /trunk/ChangeLog
5795    M /trunk/plugins/beos/intf_beos.cpp
5796    M /trunk/plugins/beos/vout_beos.cpp
5797    M /trunk/src/misc/beos_specific.cpp
5800   * BeOS crash fix by Wade Majors <guru@startrek.com>.
5802     Please, try no to forget the ChangeLog when commiting!
5804 ------------------------------------------------------------------------
5805 r873 | stef | 2001-04-29 19:57:50 +0200 (Sun, 29 Apr 2001) | 4 lines
5806 Changed paths:
5807    M /trunk/ChangeLog
5808    M /trunk/plugins/dvd/input_dvd.c
5810 -Fixed the title-change-with-no-input-restart in dvd.
5812 -I haven't forgotten the chagelog this time :)
5814 ------------------------------------------------------------------------
5815 r874 | massiot | 2001-04-30 11:44:26 +0200 (Mon, 30 Apr 2001) | 2 lines
5816 Changed paths:
5817    M /trunk/Makefile.opts.in
5819 Fixed a mistake with -g and --enable-debug.
5821 ------------------------------------------------------------------------
5822 r875 | massiot | 2001-04-30 17:01:00 +0200 (Mon, 30 Apr 2001) | 2 lines
5823 Changed paths:
5824    M /trunk/Makefile
5825    D /trunk/doc/todo
5826    M /trunk/include/intf_msg.h
5827    D /trunk/include/rsc_files.h
5828    M /trunk/src/interface/interface.c
5829    D /trunk/src/interface/intf_cmd.c
5830    D /trunk/src/interface/intf_cmd.h
5831    D /trunk/src/interface/intf_console.c
5832    D /trunk/src/interface/intf_console.h
5833    D /trunk/src/interface/intf_ctrl.c
5834    D /trunk/src/interface/intf_ctrl.h
5835    M /trunk/src/interface/intf_msg.c
5836    D /trunk/src/misc/rsc_files.c
5838 Removed unused files.
5840 ------------------------------------------------------------------------
5841 r876 | reno | 2001-04-30 23:04:20 +0200 (Mon, 30 Apr 2001) | 4 lines
5842 Changed paths:
5843    M /trunk/Makefile
5844    M /trunk/src/ac3_decoder/ac3_decoder.c
5845    M /trunk/src/ac3_decoder/ac3_decoder.h
5846    M /trunk/src/ac3_decoder/ac3_decoder_thread.c
5847    M /trunk/src/ac3_decoder/ac3_downmix.c
5848    M /trunk/src/ac3_decoder/ac3_downmix.h
5849    M /trunk/src/ac3_decoder/ac3_downmix_c.c
5850    M /trunk/src/ac3_decoder/ac3_imdct.c
5851    A /trunk/src/ac3_decoder/ac3_imdct_c.c
5852    A /trunk/src/ac3_decoder/ac3_imdct_c.h
5853    M /trunk/src/ac3_decoder/ac3_mantissa.c
5854    M /trunk/src/ac3_decoder/ac3_rematrix.c
5855    A /trunk/src/ac3_decoder/ac3_srfft.c
5856    A /trunk/src/ac3_decoder/ac3_srfft.h
5858 * Follow of the new ac3_decoder ;)
5859   - New ac3_imdct
5860   - New ac3_downmix
5862 ------------------------------------------------------------------------
5863 r877 | reno | 2001-04-30 23:10:25 +0200 (Mon, 30 Apr 2001) | 2 lines
5864 Changed paths:
5865    M /trunk/src/ac3_decoder/ac3_imdct_c.h
5866    M /trunk/src/ac3_decoder/ac3_srfft.c
5867    M /trunk/src/ac3_decoder/ac3_srfft.h
5869 I forgot some headers
5871 ------------------------------------------------------------------------
5872 r878 | sam | 2001-05-01 06:18:18 +0200 (Tue, 01 May 2001) | 19 lines
5873 Changed paths:
5874    M /trunk/AUTHORS
5875    M /trunk/ChangeLog
5876    M /trunk/INSTALL
5877    M /trunk/Makefile
5878    M /trunk/Makefile.opts.in
5879    M /trunk/configure
5880    M /trunk/configure.in
5881    M /trunk/doc/vlc.1
5882    M /trunk/include/audio_output.h
5883    M /trunk/include/config.h.in
5884    M /trunk/include/defs.h.in
5885    M /trunk/include/input_ext-dec.h
5886    M /trunk/include/input_ext-intf.h
5887    M /trunk/include/main.h
5888    M /trunk/include/modules.h
5889    M /trunk/include/modules_builtin.h.in
5890    M /trunk/include/video_output.h
5891    M /trunk/plugins/alsa/Makefile
5892    M /trunk/plugins/beos/Makefile
5893    M /trunk/plugins/beos/intf_beos.cpp
5894    M /trunk/plugins/darwin/Makefile
5895    M /trunk/plugins/dsp/Makefile
5896    M /trunk/plugins/dummy/Makefile
5897    M /trunk/plugins/dvd/Makefile
5898    M /trunk/plugins/esd/Makefile
5899    M /trunk/plugins/fb/Makefile
5900    M /trunk/plugins/ggi/Makefile
5901    M /trunk/plugins/glide/Makefile
5902    M /trunk/plugins/gnome/Makefile
5903    M /trunk/plugins/gnome/gnome_callbacks.c
5904    M /trunk/plugins/gnome/intf_gnome.c
5905    M /trunk/plugins/gtk/Makefile
5906    M /trunk/plugins/idct/Makefile
5907    M /trunk/plugins/macosx/Makefile
5908    M /trunk/plugins/macosx/intf_macosx.c
5909    M /trunk/plugins/mga/Makefile
5910    M /trunk/plugins/motion/Makefile
5911    M /trunk/plugins/mpeg/Makefile
5912    M /trunk/plugins/null/Makefile
5913    M /trunk/plugins/qt/Makefile
5914    M /trunk/plugins/sdl/Makefile
5915    M /trunk/plugins/text/Makefile
5916    M /trunk/plugins/text/intf_rc.c
5917    M /trunk/plugins/text/rc.c
5918    M /trunk/plugins/x11/Makefile
5919    M /trunk/plugins/x11/vout_xvideo.c
5920    M /trunk/plugins/yuv/Makefile
5921    M /trunk/src/ac3_decoder/ac3_decoder_thread.c
5922    M /trunk/src/ac3_decoder/ac3_decoder_thread.h
5923    M /trunk/src/ac3_spdif/ac3_iec958.c
5924    M /trunk/src/ac3_spdif/ac3_iec958.h
5925    M /trunk/src/ac3_spdif/ac3_spdif.c
5926    M /trunk/src/ac3_spdif/ac3_spdif.h
5927    M /trunk/src/audio_decoder/audio_decoder.c
5928    M /trunk/src/audio_decoder/audio_decoder.h
5929    M /trunk/src/audio_output/aout_common.h
5930    A /trunk/src/audio_output/aout_ext-dec.c
5931    D /trunk/src/audio_output/aout_fifo.c
5932    M /trunk/src/audio_output/aout_s16.c
5933    M /trunk/src/audio_output/aout_u8.c
5934    M /trunk/src/audio_output/audio_output.c
5935    M /trunk/src/input/input.c
5936    M /trunk/src/input/input_programs.c
5937    M /trunk/src/interface/interface.c
5938    M /trunk/src/interface/main.c
5939    M /trunk/src/lpcm_decoder/lpcm_decoder_thread.c
5940    M /trunk/src/lpcm_decoder/lpcm_decoder_thread.h
5941    M /trunk/src/misc/modules.c
5942    M /trunk/src/video_output/video_output.c
5943    M /trunk/src/video_output/video_yuv.c
5944    M /trunk/src/video_parser/video_parser.c
5945    M /trunk/src/video_parser/vpar_headers.c
5946    M /trunk/vlc.spec
5949   * Mandatory step for video output IV and the audio output quality
5950     fix: the output threads are now spawned when a decoder needs one,
5951     so it can decide the audio frequency or the video window size. Still
5952     under heavy construction, so don't get too excited at finding bugs
5953     in it yet.
5955     Note: this change broke the XVideo module, so I made its score much
5956     lower than before. I suspect xvideo.so had a bug before which only
5957     appears now. Other video output plugins may be broken as well, but
5958     again this might be due to old existing bugs showing their ugly head.
5960   * Fixed a few buffer overflows in the Gnome interface.
5961   * The module bank is now a global variable. The video output bank and
5962     the audio output bank might follow (when they exist).
5963   * Coding style and organization fixes to the spdif decoder.
5964   * autoconf and Makefile changes by Arnaud Gomes-do-Vale
5965     <arnaud@carrosse.frmug.org>.
5967 ------------------------------------------------------------------------
5968 r879 | sam | 2001-05-01 14:22:18 +0200 (Tue, 01 May 2001) | 3 lines
5969 Changed paths:
5970    M /trunk/ChangeLog
5971    M /trunk/INSTALL
5972    M /trunk/README
5973    M /trunk/include/input_ext-dec.h
5974    M /trunk/include/input_ext-intf.h
5975    M /trunk/plugins/text/intf_rc.c
5976    M /trunk/src/input/input.c
5977    M /trunk/src/input/input_programs.c
5978    M /trunk/src/spu_decoder/spu_decoder.c
5979    M /trunk/src/video_parser/video_parser.c
5980    M /trunk/src/video_parser/vpar_headers.c
5983   * Fixed a segfault in the SPU decoder initialization.
5985 ------------------------------------------------------------------------
5986 r880 | sam | 2001-05-01 17:12:22 +0200 (Tue, 01 May 2001) | 4 lines
5987 Changed paths:
5988    M /trunk/ChangeLog
5989    M /trunk/plugins/gnome/intf_gnome.c
5990    M /trunk/plugins/gnome/intf_gnome.h
5991    M /trunk/plugins/gtk/intf_gtk.c
5992    M /trunk/plugins/gtk/intf_gtk.h
5993    M /trunk/src/video_parser/video_parser.c
5994    M /trunk/src/video_parser/vpar_headers.c
5997   * Fixed a remaining buffer overflow in the Gnome interface and applied
5998     the patches to the Gtk+ interface.
6000 ------------------------------------------------------------------------
6001 r881 | henri | 2001-05-02 15:30:30 +0200 (Wed, 02 May 2001) | 5 lines
6002 Changed paths:
6003    M /trunk/ChangeLog
6004    M /trunk/doc/vlc-howto.sgml
6005    M /trunk/src/input/mpeg_system.c
6008 * Corrected vlc-howto thanks to Arnaud Gomes-do-Vale
6009 * Fixed a segfault in TS input. Some stream still do not work, or
6010   work very slowly with many error messages. I'll try to have a look.
6012 ------------------------------------------------------------------------
6013 r882 | sam | 2001-05-02 22:01:44 +0200 (Wed, 02 May 2001) | 3 lines
6014 Changed paths:
6015    M /trunk/ChangeLog
6016    M /trunk/configure
6017    M /trunk/configure.in
6018    M /trunk/include/defs.h.in
6019    M /trunk/plugins/dvd/dvd_css.c
6020    M /trunk/plugins/dvd/dvd_ioctl.c
6021    M /trunk/plugins/dvd/dvd_ioctl.h
6024   * FreeBSD CSS decryption support.
6026 ------------------------------------------------------------------------
6027 r883 | dae | 2001-05-05 15:36:27 +0200 (Sat, 05 May 2001) | 3 lines
6028 Changed paths:
6029    A /trunk/plugins/kde
6030    A /trunk/plugins/kde/Makefile
6031    A /trunk/plugins/kde/intf_plugin.h
6032    A /trunk/plugins/kde/kde.cpp
6033    A /trunk/plugins/kde/kdeinterface.cpp
6034    A /trunk/plugins/kde/kdeinterface.h
6035    A /trunk/plugins/kde/kdiskdialog.cpp
6036    A /trunk/plugins/kde/kdiskdialog.h
6037    A /trunk/plugins/kde/kinterfacemain.cpp
6038    A /trunk/plugins/kde/kinterfacemain.h
6039    A /trunk/plugins/kde/knetdialog.cpp
6040    A /trunk/plugins/kde/knetdialog.h
6041    A /trunk/plugins/kde/ktitlemenu.cpp
6042    A /trunk/plugins/kde/ktitlemenu.h
6043    A /trunk/plugins/kde/kvlcslider.cpp
6044    A /trunk/plugins/kde/kvlcslider.h
6045    A /trunk/plugins/kde/kvlcui.rc
6047 initial import - still buggy, crashes on exit, etc.
6048 the playlist and the popup are unimplemented.
6050 ------------------------------------------------------------------------
6051 r884 | sam | 2001-05-06 06:32:03 +0200 (Sun, 06 May 2001) | 10 lines
6052 Changed paths:
6053    M /trunk/AUTHORS
6054    M /trunk/ChangeLog
6055    M /trunk/Makefile.opts.in
6056    M /trunk/configure
6057    M /trunk/configure.in
6058    M /trunk/debian/changelog
6059    M /trunk/include/audio_output.h
6060    M /trunk/include/beos_specific.h
6061    M /trunk/include/config.h.in
6062    M /trunk/include/darwin_specific.h
6063    M /trunk/include/main.h
6064    M /trunk/include/modules.h
6065    M /trunk/include/netutils.h
6066    M /trunk/include/video_decoder.h
6067    A /trunk/include/video_fifo.h
6068    M /trunk/include/video_output.h
6069    A /trunk/include/video_parser.h
6070    A /trunk/include/vpar_headers.h
6071    A /trunk/include/vpar_synchro.h
6072    M /trunk/plugins/alsa/aout_alsa.c
6073    M /trunk/plugins/fb/vout_fb.c
6074    M /trunk/plugins/idct/Makefile
6075    M /trunk/plugins/idct/idct.c
6076    D /trunk/plugins/idct/idct.h
6077    D /trunk/plugins/idct/idct_common.c
6078    M /trunk/plugins/idct/idctaltivec.c
6079    M /trunk/plugins/idct/idctclassic.c
6080    M /trunk/plugins/idct/idctmmx.c
6081    M /trunk/plugins/idct/idctmmxext.c
6082    A /trunk/plugins/idct/vdec_block.h
6083    A /trunk/plugins/idct/vdec_block_c.c
6084    A /trunk/plugins/idct/vdec_block_mmx.c
6085    A /trunk/plugins/idct/vdec_idct.c
6086    A /trunk/plugins/idct/vdec_idct.h
6087    M /trunk/plugins/qt/Makefile
6088    M /trunk/plugins/text/intf_rc.c
6089    M /trunk/src/ac3_decoder/ac3_bit_allocate.c
6090    M /trunk/src/ac3_decoder/ac3_decoder.c
6091    M /trunk/src/ac3_decoder/ac3_decoder_thread.c
6092    M /trunk/src/ac3_decoder/ac3_downmix.c
6093    M /trunk/src/ac3_decoder/ac3_downmix_c.c
6094    M /trunk/src/ac3_decoder/ac3_imdct.c
6095    M /trunk/src/ac3_decoder/ac3_imdct_c.c
6096    M /trunk/src/ac3_decoder/ac3_mantissa.c
6097    M /trunk/src/ac3_decoder/ac3_parse.c
6098    M /trunk/src/ac3_decoder/ac3_rematrix.c
6099    M /trunk/src/ac3_decoder/ac3_srfft.c
6100    M /trunk/src/ac3_spdif/ac3_iec958.c
6101    M /trunk/src/ac3_spdif/ac3_spdif.c
6102    M /trunk/src/audio_output/aout_ext-dec.c
6103    M /trunk/src/audio_output/aout_s16.c
6104    M /trunk/src/audio_output/aout_spdif.c
6105    M /trunk/src/audio_output/aout_u8.c
6106    M /trunk/src/audio_output/audio_output.c
6107    M /trunk/src/input/input_netlist.c
6108    M /trunk/src/interface/interface.c
6109    M /trunk/src/interface/main.c
6110    M /trunk/src/misc/beos_specific.cpp
6111    M /trunk/src/misc/darwin_specific.c
6112    M /trunk/src/misc/modules.c
6113    M /trunk/src/spu_decoder/spu_decoder.c
6114    D /trunk/src/video_decoder/vdec_idct.h
6115    M /trunk/src/video_decoder/video_decoder.c
6116    D /trunk/src/video_decoder/video_fifo.h
6117    D /trunk/src/video_decoder/video_parser.h
6118    D /trunk/src/video_decoder/vpar_headers.h
6119    D /trunk/src/video_decoder/vpar_synchro.h
6120    M /trunk/src/video_output/video_output.c
6121    M /trunk/src/video_parser/video_fifo.c
6122    M /trunk/src/video_parser/video_parser.c
6123    M /trunk/src/video_parser/vpar_blocks.c
6124    M /trunk/src/video_parser/vpar_headers.c
6125    M /trunk/src/video_parser/vpar_synchro.c
6128   * Fixed a few warnings with gcc 3.0.
6129   * aout and vout are now allocated in banks, making it possible to have
6130     several of them at the same time.
6131   * configure now checks for MMX and MMX EXT support in the assembler.
6132   * Removed all MMX code from the main program and moved it to the
6133     existing idct modules (Closes: Debian bug #96036).
6135     Don't forget to make distclean before building vlc again.
6137 ------------------------------------------------------------------------
6138 r885 | stef | 2001-05-06 20:32:30 +0200 (Sun, 06 May 2001) | 22 lines
6139 Changed paths:
6140    M /trunk/include/audio_output.h
6141    M /trunk/include/config.h.in
6142    M /trunk/include/video_output.h
6143    M /trunk/plugins/dvd/input_dvd.c
6144    M /trunk/plugins/gnome/Makefile
6145    M /trunk/plugins/gnome/gnome_callbacks.c
6146    M /trunk/plugins/gnome/gnome_callbacks.h
6147    M /trunk/plugins/gnome/gnome_interface.c
6148    M /trunk/plugins/gnome/gnome_interface.h
6149    M /trunk/plugins/gnome/intf_gnome.c
6150    M /trunk/plugins/gnome/intf_gnome.glade
6151    M /trunk/plugins/gnome/intf_gnome.h
6152    M /trunk/plugins/gtk/gtk_callbacks.c
6153    M /trunk/plugins/gtk/gtk_callbacks.h
6154    M /trunk/plugins/gtk/gtk_interface.c
6155    M /trunk/plugins/gtk/intf_gtk.c
6156    M /trunk/plugins/gtk/intf_gtk.glade
6157    M /trunk/plugins/gtk/intf_gtk.h
6158    M /trunk/plugins/mpeg/input_ts.c
6159    M /trunk/plugins/sdl/vout_sdl.c
6160    M /trunk/plugins/x11/vout_x11.c
6161    M /trunk/plugins/x11/vout_xvideo.c
6162    M /trunk/src/ac3_spdif/ac3_iec958.c
6163    M /trunk/src/ac3_spdif/ac3_spdif.c
6164    M /trunk/src/ac3_spdif/ac3_spdif.h
6165    M /trunk/src/audio_output/aout_ext-dec.c
6166    M /trunk/src/audio_output/aout_spdif.c
6167    M /trunk/src/input/input.c
6168    M /trunk/src/video_output/video_output.c
6170 *Much work on the gnome interface: added oct's playlist from gtk plugin,
6171 tuned appearence, added preferences window (with no features yet), jump
6172 window to go to specified time (not functionnal yet), and fixed some
6173 bugs.
6175 *moved b_fullscreen from p_vout->p_sys to p_vout and unified way of
6176 toggling fullscreen in sdl in x11/xvideo output (using p_vout->i_ch
6177 nges) so that an interface plugin can toogle fullscreen (implemented
6178 in gnome)
6180 *added p_input->stream.p_selected_area->i_tell in input TS so that the
6181 slider work with ts files ( however, the time counter doesn't since we
6182 have no mux_rate )
6184 *improved ac3 spdif output ( and made it work again :)). It uses a true
6185 blank frame now, and it allows to switch languages like a traditionnal
6186 output. It doesn't support multiplexing though, neither can we switch
6187 between spdif/analogical mode on-the-fly.
6189 *beginning of the back port of gnome to gtk for those who do not have
6190 gnome.
6192 ------------------------------------------------------------------------
6193 r886 | stef | 2001-05-06 20:41:52 +0200 (Sun, 06 May 2001) | 2 lines
6194 Changed paths:
6195    A /trunk/plugins/gnome/gnome_playlist.c
6196    A /trunk/plugins/gnome/gnome_playlist.h
6198 * Gnome playlist should work better with the files to create it :)
6200 ------------------------------------------------------------------------
6201 r887 | stef | 2001-05-07 05:14:10 +0200 (Mon, 07 May 2001) | 8 lines
6202 Changed paths:
6203    M /trunk/include/config.h.in
6204    M /trunk/plugins/dvd/dvd_css.c
6205    M /trunk/plugins/dvd/dvd_ifo.c
6206    M /trunk/plugins/dvd/input_dvd.c
6207    M /trunk/plugins/fb/vout_fb.c
6208    M /trunk/plugins/gnome/gnome_callbacks.c
6209    M /trunk/plugins/gnome/gnome_interface.c
6210    M /trunk/plugins/gnome/gnome_playlist.c
6211    M /trunk/plugins/gnome/intf_gnome.c
6212    M /trunk/plugins/gnome/intf_gnome.glade
6213    M /trunk/plugins/gtk/gtk_playlist.c
6214    M /trunk/plugins/gtk/intf_gtk.c
6215    M /trunk/plugins/macosx/aout_macosx.c
6216    M /trunk/plugins/mpeg/input_ps.c
6217    M /trunk/plugins/qt/intf_qt.cpp
6218    M /trunk/plugins/sdl/vout_sdl.c
6219    M /trunk/plugins/x11/vout_x11.c
6220    M /trunk/plugins/x11/vout_xvideo.c
6221    M /trunk/src/ac3_decoder/ac3_decoder.c
6222    M /trunk/src/ac3_decoder/ac3_mantissa.c
6223    M /trunk/src/ac3_spdif/ac3_spdif.c
6224    M /trunk/src/audio_output/aout_ext-dec.c
6225    M /trunk/src/audio_output/aout_spdif.c
6226    M /trunk/src/input/input.c
6227    M /trunk/src/input/input_clock.c
6228    M /trunk/src/input/input_ext-intf.c
6229    M /trunk/src/input/mpeg_system.c
6230    M /trunk/src/interface/interface.c
6231    M /trunk/src/interface/intf_msg.c
6232    M /trunk/src/interface/intf_playlist.c
6233    M /trunk/src/interface/main.c
6234    M /trunk/src/misc/modules.c
6235    M /trunk/src/spu_decoder/spu_decoder.c
6236    M /trunk/src/video_output/video_output.c
6237    M /trunk/src/video_parser/vpar_headers.c
6238    M /trunk/src/video_parser/vpar_synchro.c
6240 *Changed the level arg in intf_WarnMsg so that it is more logical: the
6241 level corresponds now to the nb of -v to display the message.
6243 *added functionnal preference window in gnome: it changes the
6244 envirronment variables
6246 *added jump window in gnome to jump to a precise time.
6248 ------------------------------------------------------------------------
6249 r888 | henri | 2001-05-07 06:35:21 +0200 (Mon, 07 May 2001) | 2 lines
6250 Changed paths:
6251    M /trunk/plugins/mpeg/input_ts.c
6253 Added detection for ".ts" extension.
6255 ------------------------------------------------------------------------
6256 r889 | sam | 2001-05-07 06:42:42 +0200 (Mon, 07 May 2001) | 6 lines
6257 Changed paths:
6258    M /trunk/include/video.h
6259    M /trunk/plugins/beos/intf_beos.cpp
6260    M /trunk/plugins/dvd/dvd_ifo.c
6261    M /trunk/plugins/dvd/input_dvd.c
6262    M /trunk/plugins/mpeg/input_ps.c
6263    M /trunk/plugins/sdl/vout_sdl.c
6264    M /trunk/plugins/x11/vout_xvideo.c
6265    M /trunk/src/ac3_decoder/ac3_parse.c
6266    M /trunk/src/misc/mtime.c
6267    M /trunk/src/misc/netutils.c
6268    M /trunk/src/spu_decoder/spu_decoder.c
6269    M /trunk/src/spu_decoder/spu_decoder.h
6270    M /trunk/src/video_output/video_output.c
6273   * Added support for some terribly braindead DVD subtitles in Kenshin
6274     which do not have a "stop display" command. Anime fans rejoice!
6275   * Fixed the BeOS interface to use p_aout_bank instead of p_main->p_aout.
6276   * Coding-style butchery (mostly tabs).
6278 ------------------------------------------------------------------------
6279 r890 | bozo | 2001-05-07 15:52:39 +0200 (Mon, 07 May 2001) | 3 lines
6280 Changed paths:
6281    M /trunk/src/input/input_ext-dec.c
6283   - fix a bug in UnalignedShowBits that makes some _heavy_ unaligned streams
6284     not wotk correctly (for instance VLS' generated TS streams)
6286 ------------------------------------------------------------------------
6287 r891 | sam | 2001-05-08 02:43:57 +0200 (Tue, 08 May 2001) | 5 lines
6288 Changed paths:
6289    M /trunk/AUTHORS
6290    M /trunk/ChangeLog
6291    M /trunk/plugins/mpeg/input_ps.c
6292    M /trunk/plugins/mpeg/input_ps.h
6293    M /trunk/src/input/input_ext-dec.c
6294    M /trunk/src/video_output/video_output.c
6297   * Speed optimization in the handling of the unusual ephemer DVD subtitles.
6298   * Little optimization to bozo's UnalignedShowBits fix.
6299   * Race fix in the packet cache by Jon Lech Johansen <jon-vl@nanocrew.net>.
6301 ------------------------------------------------------------------------
6302 r892 | bozo | 2001-05-08 14:53:30 +0200 (Tue, 08 May 2001) | 5 lines
6303 Changed paths:
6304    M /trunk/plugins/mpeg/input_ts.c
6306   - fix a bug in ts input.
6307     Henri: a 0.5s timeout is not (time_t)0.5 sec and (time_t)0 usec
6308     but (time_t)0 sec and (time_t)500000 usec
6309     Now the input doesn't eat all the cpu any more :p
6311 ------------------------------------------------------------------------
6312 r893 | bozo | 2001-05-08 16:38:30 +0200 (Tue, 08 May 2001) | 2 lines
6313 Changed paths:
6314    M /trunk/src/input/input_clock.c
6316   - fix a discontinuity bug in input_ClockManageRef()
6318 ------------------------------------------------------------------------
6319 r894 | bozo | 2001-05-08 16:53:31 +0200 (Tue, 08 May 2001) | 2 lines
6320 Changed paths:
6321    M /trunk/src/input/input_clock.c
6323 end of the last commit :-P
6325 ------------------------------------------------------------------------
6326 r895 | sam | 2001-05-08 22:38:25 +0200 (Tue, 08 May 2001) | 4 lines
6327 Changed paths:
6328    M /trunk/ChangeLog
6329    M /trunk/src/spu_decoder/spu_decoder.c
6330    M /trunk/src/video_output/video_output.c
6331    M /trunk/src/video_output/video_spu.c
6332    M /trunk/src/video_output/video_spu.h
6333    M /trunk/src/video_parser/video_fifo.c
6336   * Fixed an aspect ratio issue in the SPU decoder, and optimized the
6337     SPU renderer.
6339 ------------------------------------------------------------------------
6340 r896 | sam | 2001-05-10 08:47:31 +0200 (Thu, 10 May 2001) | 9 lines
6341 Changed paths:
6342    M /trunk/ChangeLog
6343    M /trunk/plugins/beos/intf_beos.cpp
6344    M /trunk/plugins/gnome/gnome_callbacks.c
6345    M /trunk/plugins/gnome/intf_gnome.c
6346    M /trunk/plugins/gnome/intf_gnome.h
6347    M /trunk/src/spu_decoder/spu_decoder.c
6348    M /trunk/src/spu_decoder/spu_decoder.h
6351   * Added SPU cropping.
6352   * Gnome interface segfault fix.
6353   * BeOS interface segfault fix by AnEvilYak (what's you real name btw?).
6355   Note: if you want to have a look at the currently buggy YUV subpictures,
6356         uncomment line 1999 of src/video_output/video_output.c. Don't report
6357         bugs about this, I _know_ it's a quick hack.
6359 ------------------------------------------------------------------------
6360 r897 | henri | 2001-05-11 03:03:14 +0200 (Fri, 11 May 2001) | 7 lines
6361 Changed paths:
6362    M /trunk/plugins/alsa/aout_alsa.c
6364 Alsa module now builds with alsa 0.9 thanks to Jeffrey Baker's patch
6365 (jwbaker@acm.org)
6367 Please notice that even if if builds with alsa 0.9beta, it's hardly
6368 usable as it goes very often un Xrun mode. Though, it works fine with
6369 current alsa CVS.
6371 ------------------------------------------------------------------------
6372 r898 | sam | 2001-05-11 17:10:01 +0200 (Fri, 11 May 2001) | 3 lines
6373 Changed paths:
6374    M /trunk/ChangeLog
6375    M /trunk/src/spu_decoder/spu_decoder.c
6376    M /trunk/src/spu_decoder/spu_decoder.h
6379   * Fixed a deadlock in spudec.
6381 ------------------------------------------------------------------------
6382 r899 | henri | 2001-05-12 02:14:20 +0200 (Sat, 12 May 2001) | 3 lines
6383 Changed paths:
6384    M /trunk/ChangeLog
6385    M /trunk/doc/vlc-howto.sgml
6388 Put a little note in the doc about "dvd devices"
6390 ------------------------------------------------------------------------
6391 r900 | reno | 2001-05-14 17:58:04 +0200 (Mon, 14 May 2001) | 9 lines
6392 Changed paths:
6393    M /trunk/Makefile
6394    M /trunk/include/tests.h
6395    M /trunk/src/ac3_decoder/ac3_bit_allocate.c
6396    M /trunk/src/ac3_decoder/ac3_decoder.c
6397    M /trunk/src/ac3_decoder/ac3_decoder.h
6398    M /trunk/src/ac3_decoder/ac3_decoder_thread.h
6399    M /trunk/src/ac3_decoder/ac3_downmix.c
6400    M /trunk/src/ac3_decoder/ac3_downmix.h
6401    A /trunk/src/ac3_decoder/ac3_downmix_3dn.c
6402    M /trunk/src/ac3_decoder/ac3_downmix_c.c
6403    A /trunk/src/ac3_decoder/ac3_downmix_sse.c
6404    M /trunk/src/ac3_decoder/ac3_exponent.c
6405    M /trunk/src/ac3_decoder/ac3_imdct.c
6406    M /trunk/src/ac3_decoder/ac3_imdct_c.c
6407    A /trunk/src/ac3_decoder/ac3_imdct_sse.c
6408    A /trunk/src/ac3_decoder/ac3_imdct_sse.h
6409    M /trunk/src/ac3_decoder/ac3_internal.h
6410    M /trunk/src/ac3_decoder/ac3_mantissa.c
6411    M /trunk/src/ac3_decoder/ac3_parse.c
6412    M /trunk/src/ac3_decoder/ac3_rematrix.c
6413    M /trunk/src/ac3_decoder/ac3_srfft.c
6414    M /trunk/src/ac3_decoder/ac3_srfft.h
6415    A /trunk/src/ac3_decoder/ac3_srfft_sse.c
6416    M /trunk/src/interface/main.c
6418  * Begin of SSE/3DNow! support for imdct and downmix
6420 If you have a PIII or a Athlon and you want to try this, just comment #if 0
6421 in ac3_downmix.c and ac3_imdct.c and add in AC3_DECODER section of Makefile :
6422         src/ac3_decoder/ac3_imdct_sse.o \
6423         src/ac3_decoder/ac3_srfft_sse.o \
6424         src/ac3_decoder/ac3_downmix_sse.o \
6425         src/ac3_decoder/ac3_downmix_3dn.o \
6427 ------------------------------------------------------------------------
6428 r901 | stef | 2001-05-15 03:01:44 +0200 (Tue, 15 May 2001) | 14 lines
6429 Changed paths:
6430    M /trunk/include/intf_playlist.h
6431    M /trunk/plugins/dvd/input_dvd.c
6432    M /trunk/plugins/gnome/gnome_callbacks.c
6433    M /trunk/plugins/gnome/gnome_callbacks.h
6434    M /trunk/plugins/gnome/gnome_interface.c
6435    M /trunk/plugins/gnome/gnome_playlist.c
6436    M /trunk/plugins/gnome/intf_gnome.c
6437    M /trunk/plugins/gnome/intf_gnome.glade
6438    M /trunk/plugins/gtk/Makefile
6439    M /trunk/plugins/gtk/gtk_callbacks.c
6440    M /trunk/plugins/gtk/gtk_callbacks.h
6441    A /trunk/plugins/gtk/gtk_control.c
6442    A /trunk/plugins/gtk/gtk_control.h
6443    M /trunk/plugins/gtk/gtk_interface.c
6444    M /trunk/plugins/gtk/gtk_interface.h
6445    A /trunk/plugins/gtk/gtk_menu.c
6446    A /trunk/plugins/gtk/gtk_menu.h
6447    A /trunk/plugins/gtk/gtk_modules.c
6448    A /trunk/plugins/gtk/gtk_modules.h
6449    A /trunk/plugins/gtk/gtk_open.c
6450    A /trunk/plugins/gtk/gtk_open.h
6451    M /trunk/plugins/gtk/gtk_playlist.c
6452    M /trunk/plugins/gtk/gtk_playlist.h
6453    A /trunk/plugins/gtk/gtk_preferences.c
6454    A /trunk/plugins/gtk/gtk_preferences.h
6455    M /trunk/plugins/gtk/intf_gtk.c
6456    M /trunk/plugins/gtk/intf_gtk.glade
6457    M /trunk/plugins/gtk/intf_gtk.h
6458    M /trunk/src/audio_output/aout_spdif.c
6459    M /trunk/src/interface/interface.c
6460    M /trunk/src/interface/intf_playlist.c
6462 *initialization bugfixes in input_dvd
6464 *added a b_stopped flag to interface playlist to have a stop function in
6465 interface plugins. As a consequence, the playlist no longer loops on end
6466 but wait for the user to press 'play' or to add another item (gtk/gnome
6467 interface). I think that other plugins are broken but it shouldn't be
6468 difficult to repair: just add a 'p_main->p_playlist->b_stopped = 0' in
6469 play functions and 'p_main->p_playlist->b_stopped = 1' when you have to
6470 stop.
6472 *Updated gtk interface so that it has the same features as gnome. I
6473 think I will merge the code so that we don't have to copy and paste each
6474 change. Only the .glade file would be different.
6476 ------------------------------------------------------------------------
6477 r902 | stef | 2001-05-15 16:49:48 +0200 (Tue, 15 May 2001) | 2 lines
6478 Changed paths:
6479    M /trunk/plugins/dvd/input_dvd.c
6480    M /trunk/plugins/gtk/gtk_callbacks.c
6481    M /trunk/plugins/gtk/gtk_callbacks.h
6482    M /trunk/plugins/gtk/gtk_control.c
6483    M /trunk/plugins/gtk/gtk_interface.c
6484    M /trunk/plugins/gtk/gtk_menu.c
6485    M /trunk/plugins/gtk/gtk_menu.h
6486    M /trunk/plugins/gtk/gtk_modules.c
6487    M /trunk/plugins/gtk/gtk_modules.h
6488    M /trunk/plugins/gtk/gtk_open.c
6489    M /trunk/plugins/gtk/gtk_open.h
6490    M /trunk/plugins/gtk/gtk_playlist.c
6491    M /trunk/plugins/gtk/gtk_playlist.h
6492    M /trunk/plugins/gtk/gtk_preferences.c
6493    M /trunk/plugins/gtk/gtk_preferences.h
6494    M /trunk/plugins/gtk/intf_gtk.c
6495    M /trunk/plugins/gtk/intf_gtk.glade
6496    M /trunk/src/interface/interface.c
6497    M /trunk/src/interface/intf_playlist.c
6499 *Bugfixes, cleanings in gtk.
6501 ------------------------------------------------------------------------
6502 r903 | sam | 2001-05-15 18:19:42 +0200 (Tue, 15 May 2001) | 4 lines
6503 Changed paths:
6504    M /trunk/Makefile
6505    M /trunk/configure
6506    M /trunk/configure.in
6507    M /trunk/doc/vlc.1
6508    A /trunk/include/ac3_downmix.h
6509    A /trunk/include/ac3_imdct.h
6510    M /trunk/include/config.h.in
6511    M /trunk/include/modules.h
6512    A /trunk/plugins/downmix
6513    A /trunk/plugins/downmix/.cvsignore
6514    A /trunk/plugins/downmix/Makefile
6515    A /trunk/plugins/downmix/ac3_downmix_3dn.c
6516    A /trunk/plugins/downmix/ac3_downmix_c.c
6517    A /trunk/plugins/downmix/ac3_downmix_common.h
6518    A /trunk/plugins/downmix/ac3_downmix_sse.c
6519    A /trunk/plugins/downmix/downmix.c
6520    A /trunk/plugins/downmix/downmix3dn.c
6521    A /trunk/plugins/downmix/downmixsse.c
6522    M /trunk/plugins/idct/idctaltivec.c
6523    M /trunk/plugins/idct/idctmmx.c
6524    M /trunk/plugins/idct/idctmmxext.c
6525    A /trunk/plugins/imdct
6526    A /trunk/plugins/imdct/.cvsignore
6527    A /trunk/plugins/imdct/Makefile
6528    A /trunk/plugins/imdct/ac3_imdct_c.c
6529    A /trunk/plugins/imdct/ac3_imdct_common.c
6530    A /trunk/plugins/imdct/ac3_imdct_common.h
6531    A /trunk/plugins/imdct/ac3_imdct_sse.c
6532    A /trunk/plugins/imdct/ac3_srfft.h
6533    A /trunk/plugins/imdct/ac3_srfft_c.c
6534    A /trunk/plugins/imdct/ac3_srfft_sse.c
6535    A /trunk/plugins/imdct/imdct.c
6536    A /trunk/plugins/imdct/imdctsse.c
6537    M /trunk/plugins/motion/motionmmx.c
6538    M /trunk/plugins/motion/motionmmxext.c
6539    M /trunk/plugins/yuv/video_yuvmmx.c
6540    M /trunk/src/ac3_decoder/ac3_bit_allocate.c
6541    M /trunk/src/ac3_decoder/ac3_decoder.c
6542    M /trunk/src/ac3_decoder/ac3_decoder.h
6543    M /trunk/src/ac3_decoder/ac3_decoder_thread.c
6544    D /trunk/src/ac3_decoder/ac3_downmix.c
6545    D /trunk/src/ac3_decoder/ac3_downmix.h
6546    D /trunk/src/ac3_decoder/ac3_downmix_3dn.c
6547    D /trunk/src/ac3_decoder/ac3_downmix_c.c
6548    D /trunk/src/ac3_decoder/ac3_downmix_sse.c
6549    M /trunk/src/ac3_decoder/ac3_exponent.c
6550    A /trunk/src/ac3_decoder/ac3_exponent.h
6551    M /trunk/src/ac3_decoder/ac3_imdct.c
6552    D /trunk/src/ac3_decoder/ac3_imdct_c.c
6553    D /trunk/src/ac3_decoder/ac3_imdct_c.h
6554    D /trunk/src/ac3_decoder/ac3_imdct_sse.c
6555    D /trunk/src/ac3_decoder/ac3_imdct_sse.h
6556    M /trunk/src/ac3_decoder/ac3_internal.h
6557    M /trunk/src/ac3_decoder/ac3_mantissa.c
6558    A /trunk/src/ac3_decoder/ac3_mantissa.h
6559    M /trunk/src/ac3_decoder/ac3_parse.c
6560    M /trunk/src/ac3_decoder/ac3_rematrix.c
6561    D /trunk/src/ac3_decoder/ac3_srfft.c
6562    D /trunk/src/ac3_decoder/ac3_srfft.h
6563    D /trunk/src/ac3_decoder/ac3_srfft_sse.c
6564    M /trunk/src/audio_output/aout_u8.c
6565    M /trunk/src/interface/main.c
6568   * AC3 IMDCT and downmix functions are now in plugins, --imdct and
6569     --downmix options added.
6571 ------------------------------------------------------------------------
6572 r904 | sam | 2001-05-15 21:36:27 +0200 (Tue, 15 May 2001) | 3 lines
6573 Changed paths:
6574    M /trunk/ChangeLog
6575    M /trunk/configure
6576    M /trunk/configure.in
6577    M /trunk/plugins/imdct/ac3_imdct_common.c
6578    M /trunk/src/interface/main.c
6581   * FreeBSD pthread fixes.
6583 ------------------------------------------------------------------------
6584 r905 | sam | 2001-05-16 04:12:38 +0200 (Wed, 16 May 2001) | 4 lines
6585 Changed paths:
6586    M /trunk/configure
6587    M /trunk/configure.in
6590   * We now do pthread detection for FreeBSD like the XMMS guys do. It
6591     works even better.
6593 ------------------------------------------------------------------------
6594 r906 | reno | 2001-05-16 16:51:29 +0200 (Wed, 16 May 2001) | 3 lines
6595 Changed paths:
6596    M /trunk/Makefile
6597    M /trunk/configure
6598    M /trunk/configure.in
6599    M /trunk/plugins/imdct/Makefile
6600    A /trunk/plugins/imdct/ac3_imdct_3dn.c
6601    M /trunk/plugins/imdct/ac3_imdct_c.c
6602    M /trunk/plugins/imdct/ac3_imdct_common.c
6603    M /trunk/plugins/imdct/ac3_imdct_common.h
6604    M /trunk/plugins/imdct/ac3_imdct_sse.c
6605    A /trunk/plugins/imdct/ac3_retables.h
6606    A /trunk/plugins/imdct/ac3_srfft_3dn.c
6607    M /trunk/plugins/imdct/ac3_srfft_sse.c
6608    A /trunk/plugins/imdct/imdct3dn.c
6609    M /trunk/src/ac3_decoder/ac3_imdct.c
6611 * Add 3D Now! imdct
6612 * Remove kmudge for ac3 on MacOS X
6614 ------------------------------------------------------------------------
6615 r907 | xav | 2001-05-18 11:49:16 +0200 (Fri, 18 May 2001) | 2 lines
6616 Changed paths:
6617    M /trunk/src/misc/netutils.c
6619 *** empty log message ***
6621 ------------------------------------------------------------------------
6622 r908 | stef | 2001-05-19 02:39:30 +0200 (Sat, 19 May 2001) | 15 lines
6623 Changed paths:
6624    M /trunk/include/input_ext-intf.h
6625    M /trunk/plugins/dvd/Makefile
6626    M /trunk/plugins/dvd/dvd_css.c
6627    M /trunk/plugins/dvd/dvd_css.h
6628    M /trunk/plugins/dvd/dvd_ifo.c
6629    M /trunk/plugins/dvd/dvd_ifo.h
6630    A /trunk/plugins/dvd/dvd_summary.c
6631    A /trunk/plugins/dvd/dvd_summary.h
6632    M /trunk/plugins/dvd/input_dvd.c
6633    M /trunk/plugins/dvd/input_dvd.h
6634    M /trunk/plugins/gtk/gtk_callbacks.c
6635    M /trunk/plugins/gtk/gtk_callbacks.h
6636    M /trunk/plugins/gtk/gtk_menu.c
6637    M /trunk/plugins/gtk/gtk_menu.h
6638    M /trunk/plugins/gtk/gtk_playlist.h
6639    M /trunk/plugins/gtk/intf_gtk.c
6640    M /trunk/plugins/gtk/intf_gtk.h
6641    M /trunk/src/audio_output/aout_spdif.c
6642    M /trunk/src/input/input.c
6643    M /trunk/src/input/input_ext-intf.c
6644    M /trunk/src/input/input_programs.c
6646 *More cleanification in gtk interface: now to change the
6647 title/chapter/audio/spu/angle, we tell the input to do intead of doing
6648 it inside the interface. It results in fewer locks during the changes.
6650 *The dvd plugin reads again blocks of 32 sectors to gain speed since
6651 there are no more lock-ups during stream change. I've also created a new
6652 file that contain function to described video and audio streams with ifo
6653 datas.
6655 The changes are made only for gtk. We should update the other interfaces
6656 soon (beos at least).
6658 There is a memory corruption somewhere that make the vlc crash. I've no
6659 idea where to search.
6661 ------------------------------------------------------------------------
6662 r909 | tcastley | 2001-05-21 14:44:23 +0200 (Mon, 21 May 2001) | 2 lines
6663 Changed paths:
6664    M /trunk/plugins/beos/intf_beos.cpp
6666 Updated with new changes for playlist management
6668 ------------------------------------------------------------------------
6669 r910 | stef | 2001-05-23 19:47:34 +0200 (Wed, 23 May 2001) | 2 lines
6670 Changed paths:
6671    M /trunk/plugins/mpeg/input_ps.c
6672    M /trunk/src/input/input_programs.c
6674 -LPCM audio selection in ps mode, in prevision of henri's decoder.
6676 ------------------------------------------------------------------------
6677 r911 | stef | 2001-05-24 01:08:20 +0200 (Thu, 24 May 2001) | 6 lines
6678 Changed paths:
6679    M /trunk/Makefile
6680    D /trunk/plugins/gnome
6681    M /trunk/plugins/gtk/Makefile
6682    A /trunk/plugins/gtk/gnome.c
6683    A /trunk/plugins/gtk/gnome_callbacks.c
6684    A /trunk/plugins/gtk/gnome_callbacks.h
6685    A /trunk/plugins/gtk/gnome_interface.c
6686    A /trunk/plugins/gtk/gnome_interface.h
6687    A /trunk/plugins/gtk/gnome_support.c
6688    A /trunk/plugins/gtk/gnome_support.h
6689    M /trunk/plugins/gtk/gtk_callbacks.c
6690    M /trunk/plugins/gtk/gtk_callbacks.h
6691    M /trunk/plugins/gtk/gtk_control.c
6692    A /trunk/plugins/gtk/gtk_display.c
6693    A /trunk/plugins/gtk/gtk_display.h
6694    M /trunk/plugins/gtk/gtk_interface.c
6695    M /trunk/plugins/gtk/gtk_menu.c
6696    M /trunk/plugins/gtk/gtk_modules.c
6697    M /trunk/plugins/gtk/gtk_open.c
6698    M /trunk/plugins/gtk/gtk_playlist.c
6699    M /trunk/plugins/gtk/gtk_preferences.c
6700    A /trunk/plugins/gtk/intf_gnome.c
6701    A /trunk/plugins/gtk/intf_gnome.glade
6702    M /trunk/plugins/gtk/intf_gtk.c
6703    M /trunk/plugins/gtk/intf_gtk.glade
6704    M /trunk/plugins/gtk/intf_gtk.h
6706 -Unification of gnome/gtk intefaces: now all the file are in plugin/gtk.
6708 Specific files are glade generated files and intf_* files. All the
6709 remainders are common to gtk and gnome and contain all the callbacks for
6710 both interfaces.
6712 ------------------------------------------------------------------------
6713 r912 | stef | 2001-05-24 01:40:32 +0200 (Thu, 24 May 2001) | 2 lines
6714 Changed paths:
6715    M /trunk/Makefile
6717 -A little bug with lpcm in Makefile
6719 ------------------------------------------------------------------------
6720 r913 | stef | 2001-05-24 03:24:47 +0200 (Thu, 24 May 2001) | 2 lines
6721 Changed paths:
6722    M /trunk/plugins/gtk/gnome_interface.c
6723    M /trunk/plugins/gtk/gtk_menu.c
6724    M /trunk/plugins/gtk/intf_gnome.glade
6726 -Forgot a bug for audio/spu change in the interface
6728 ------------------------------------------------------------------------
6729 r914 | sam | 2001-05-25 06:23:37 +0200 (Fri, 25 May 2001) | 19 lines
6730 Changed paths:
6731    M /trunk/Makefile
6732    M /trunk/extras/MacOSX_dvdioctl/DVDioctl.cpp
6733    M /trunk/extras/MacOSX_dvdioctl/DVDioctl.h
6734    M /trunk/plugins/dvd/dvd_ioctl.c
6735    M /trunk/plugins/esd/aout_esd.c
6736    M /trunk/src/audio_output/audio_output.c
6739   OS X fixes:
6741   * Applied Eugenio's fix to the DVDioctl driver. I didn't test it, but
6742     it should not hang the kernel anymore.
6744   * Ported most dvd_ioctl.c functions to the DVDioctl driver: ReportAgid,
6745     ReportChallenge, ReportKey1, ReportASF, InvalidateAgid, SendChallenge,
6746     SendKey2. They should comply with the "Mt. Fuji Commands for Multimedia
6747     Devices" paper.
6749     Last remaining problem: ReadCopyright and ReadKey. The version of
6750  Darwin I have here only has reportKey() and sendKey() functions in
6751  the IODVDBlockStorageDevice class (pages 413 and 449 of the Mt. Fuji
6752  paper), but we also need the READ_STRUCTURE (page 357) which I couldn't
6753  find anywhere in the kernel headers. Either I missed it, or we'll have
6754  to wait for Apple to implement it (or maybe we can emulate this command
6755  with some other IOKit commands).
6757 ------------------------------------------------------------------------
6758 r915 | sam | 2001-05-25 06:44:49 +0200 (Fri, 25 May 2001) | 3 lines
6759 Changed paths:
6760    M /trunk/plugins/dvd/dvd_ioctl.h
6763   * Forgot a file for BeOS.
6765 ------------------------------------------------------------------------
6766 r916 | sam | 2001-05-25 15:20:10 +0200 (Fri, 25 May 2001) | 6 lines
6767 Changed paths:
6768    M /trunk/plugins/dvd/dvd_ioctl.c
6769    M /trunk/plugins/macosx/intf_macosx.c
6770    M /trunk/plugins/macosx/macosx_common.h
6771    M /trunk/plugins/macosx/vout_macosx.c
6772    M /trunk/plugins/sdl/vout_sdl.c
6773    M /trunk/plugins/x11/vout_x11.c
6774    M /trunk/plugins/x11/vout_xvideo.c
6775    M /trunk/src/input/input.c
6778   * Fixed a warning for *BSD compilation.
6779   * Fixed a typo in yesterday's Darwin ioctl fixes.
6780   * Patch by Eugenio so that the OS X interface and video output handle the
6781     aout and vout banks.
6783 ------------------------------------------------------------------------
6784 r917 | sam | 2001-05-27 17:16:58 +0200 (Sun, 27 May 2001) | 3 lines
6785 Changed paths:
6786    M /trunk/plugins/dvd/dvd_ioctl.c
6789   * Fixed my latest BeOS support breakage.
6791 ------------------------------------------------------------------------
6792 r918 | sam | 2001-05-28 04:38:48 +0200 (Mon, 28 May 2001) | 3 lines
6793 Changed paths:
6794    M /trunk/Makefile.opts.in
6795    M /trunk/configure
6796    M /trunk/configure.in
6797    M /trunk/include/netutils.h
6798    M /trunk/plugins/imdct/ac3_imdct_3dn.c
6799    M /trunk/plugins/imdct/ac3_imdct_sse.c
6800    M /trunk/plugins/imdct/imdct3dn.c
6801    M /trunk/plugins/imdct/imdctsse.c
6802    M /trunk/src/misc/netutils.c
6805   * Win32 compilation fixes, esp. the MAC retrieval.
6807 ------------------------------------------------------------------------
6808 r919 | sam | 2001-05-28 04:44:39 +0200 (Mon, 28 May 2001) | 3 lines
6809 Changed paths:
6810    M /trunk/src/misc/netutils.c
6813   * Forgot a little #ifdef, sorry.
6815 ------------------------------------------------------------------------
6816 r920 | sam | 2001-05-28 04:54:09 +0200 (Mon, 28 May 2001) | 3 lines
6817 Changed paths:
6818    M /trunk/src/misc/netutils.c
6821   * Of course my Win32 patch broke the Un*x version.
6823 ------------------------------------------------------------------------
6824 r921 | xav | 2001-05-28 05:17:01 +0200 (Mon, 28 May 2001) | 6 lines
6825 Changed paths:
6826    M /trunk/src/input/input.c
6828 Modified in order to add network input under Win32.
6829 It compiles under Linux and Win32 (yeeaaahaaa, haven't broken anything
6830 :-))
6831 (added the WinSock library initialization and cleanup)
6832 Could someone test if it does really function ?
6834 ------------------------------------------------------------------------
6835 r922 | sam | 2001-05-28 06:23:52 +0200 (Mon, 28 May 2001) | 7 lines
6836 Changed paths:
6837    M /trunk/plugins/mpeg/input_ts.c
6838    M /trunk/plugins/mpeg/input_ts.h
6839    M /trunk/src/input/input.c
6840    M /trunk/src/input/input_netlist.c
6843   * Added a wrapper for readv() on platforms which don't support it. The
6844     network support now compiles under Win32, but still doesn't work, the
6845     select in plugins/mpeg/input_ts.c never returns any data.
6847     Is there anything like strace(1) under Win32 to debug this ?
6849 ------------------------------------------------------------------------
6850 r923 | stef | 2001-05-29 15:53:16 +0200 (Tue, 29 May 2001) | 2 lines
6851 Changed paths:
6852    M /trunk/plugins/gtk/gnome_interface.c
6853    M /trunk/plugins/gtk/intf_gnome.glade
6855 *Fixed a bug with Previous chapter button in gnome
6857 ------------------------------------------------------------------------
6858 r924 | stef | 2001-05-30 07:19:03 +0200 (Wed, 30 May 2001) | 6 lines
6859 Changed paths:
6860    M /trunk/include/audio_output.h
6861    M /trunk/include/config.h.in
6862    M /trunk/plugins/gtk/gnome_callbacks.c
6863    M /trunk/plugins/gtk/gnome_callbacks.h
6864    M /trunk/plugins/gtk/gnome_interface.c
6865    M /trunk/plugins/gtk/gtk_callbacks.c
6866    M /trunk/plugins/gtk/gtk_callbacks.h
6867    M /trunk/plugins/gtk/gtk_display.c
6868    M /trunk/plugins/gtk/gtk_interface.c
6869    M /trunk/plugins/gtk/gtk_preferences.c
6870    M /trunk/plugins/gtk/intf_gnome.glade
6871    M /trunk/plugins/gtk/intf_gtk.glade
6872    M /trunk/src/ac3_spdif/ac3_spdif.c
6873    M /trunk/src/audio_output/aout_spdif.c
6874    M /trunk/src/audio_output/audio_output.c
6875    M /trunk/src/input/input.c
6876    M /trunk/src/interface/main.c
6878 -Changes and bugfixes to make network work in VLAN Broadcast mode.
6880 -Bugfix in the interface to access the network specific features.
6882 -Some base of synchro in ac3 spdif
6884 ------------------------------------------------------------------------
6885 r925 | sam | 2001-05-30 19:03:13 +0200 (Wed, 30 May 2001) | 12 lines
6886 Changed paths:
6887    M /trunk/INSTALL
6888    M /trunk/Makefile
6889    M /trunk/Makefile.modules
6890    M /trunk/Makefile.opts.in
6891    M /trunk/configure
6892    M /trunk/configure.in
6893    M /trunk/debian/control
6894    M /trunk/debian/control-css
6895    M /trunk/debian/rules
6896    M /trunk/include/audio_output.h
6897    M /trunk/include/common.h
6898    M /trunk/include/defs.h.in
6899    M /trunk/include/input.h
6900    M /trunk/include/input_ext-intf.h
6901    M /trunk/include/intf_playlist.h
6902    D /trunk/include/intf_urldecode.h
6903    M /trunk/include/main.h
6904    M /trunk/include/modules.h
6905    M /trunk/include/modules_inner.h
6906    M /trunk/include/netutils.h
6907    M /trunk/include/tests.h
6908    M /trunk/include/video_decoder.h
6909    M /trunk/include/video_output.h
6910    M /trunk/include/video_parser.h
6911    M /trunk/plugins/alsa/alsa.c
6912    M /trunk/plugins/alsa/aout_alsa.c
6913    M /trunk/plugins/beos/beos.cpp
6914    M /trunk/plugins/beos/vout_beos.cpp
6915    M /trunk/plugins/darwin/darwin.c
6916    M /trunk/plugins/downmix/downmix.c
6917    M /trunk/plugins/downmix/downmix3dn.c
6918    M /trunk/plugins/downmix/downmixsse.c
6919    M /trunk/plugins/dsp/aout_dsp.c
6920    M /trunk/plugins/dsp/dsp.c
6921    M /trunk/plugins/dummy/aout_dummy.c
6922    M /trunk/plugins/dummy/dummy.c
6923    M /trunk/plugins/dummy/intf_dummy.c
6924    M /trunk/plugins/dummy/vout_dummy.c
6925    M /trunk/plugins/dvd/dvd.c
6926    M /trunk/plugins/dvd/input_dvd.c
6927    M /trunk/plugins/esd/aout_esd.c
6928    M /trunk/plugins/esd/esd.c
6929    M /trunk/plugins/fb/fb.c
6930    M /trunk/plugins/fb/vout_fb.c
6931    M /trunk/plugins/ggi/ggi.c
6932    M /trunk/plugins/ggi/vout_ggi.c
6933    M /trunk/plugins/glide/Makefile
6934    M /trunk/plugins/glide/glide.c
6935    M /trunk/plugins/glide/vout_glide.c
6936    M /trunk/plugins/gtk/Makefile
6937    M /trunk/plugins/gtk/gnome.c
6938    M /trunk/plugins/gtk/gtk.c
6939    M /trunk/plugins/gtk/gtk_callbacks.c
6940    M /trunk/plugins/gtk/gtk_control.c
6941    M /trunk/plugins/gtk/gtk_display.c
6942    M /trunk/plugins/gtk/gtk_menu.c
6943    M /trunk/plugins/gtk/gtk_open.c
6944    M /trunk/plugins/gtk/gtk_playlist.c
6945    M /trunk/plugins/gtk/gtk_preferences.c
6946    M /trunk/plugins/gtk/intf_gnome.c
6947    M /trunk/plugins/gtk/intf_gtk.c
6948    M /trunk/plugins/idct/Makefile
6949    M /trunk/plugins/idct/idct.c
6950    M /trunk/plugins/idct/idctaltivec.c
6951    M /trunk/plugins/idct/idctclassic.c
6952    M /trunk/plugins/idct/idctmmx.c
6953    M /trunk/plugins/idct/idctmmxext.c
6954    M /trunk/plugins/idct/vdec_block.h
6955    M /trunk/plugins/idct/vdec_block_c.c
6956    M /trunk/plugins/idct/vdec_block_mmx.c
6957    M /trunk/plugins/imdct/imdct.c
6958    M /trunk/plugins/imdct/imdct3dn.c
6959    M /trunk/plugins/imdct/imdctsse.c
6960    M /trunk/plugins/kde/kde.cpp
6961    M /trunk/plugins/macosx/intf_macosx.c
6962    M /trunk/plugins/macosx/macosx.c
6963    M /trunk/plugins/macosx/vout_macosx.c
6964    M /trunk/plugins/mga/mga.c
6965    M /trunk/plugins/mga/vout_mga.c
6966    M /trunk/plugins/motion/motion.c
6967    M /trunk/plugins/motion/motionmmx.c
6968    M /trunk/plugins/motion/motionmmxext.c
6969    M /trunk/plugins/mpeg/es.c
6970    M /trunk/plugins/mpeg/input_es.c
6971    M /trunk/plugins/mpeg/input_ps.c
6972    M /trunk/plugins/mpeg/input_ts.c
6973    M /trunk/plugins/mpeg/ps.c
6974    M /trunk/plugins/mpeg/ts.c
6975    M /trunk/plugins/null/null.c
6976    M /trunk/plugins/qt/Makefile
6977    M /trunk/plugins/qt/intf_qt.cpp
6978    M /trunk/plugins/qt/qt.cpp
6979    M /trunk/plugins/sdl/aout_sdl.c
6980    M /trunk/plugins/sdl/sdl.c
6981    M /trunk/plugins/sdl/vout_sdl.c
6982    M /trunk/plugins/text/ncurses.c
6983    M /trunk/plugins/text/rc.c
6984    M /trunk/plugins/x11/vout_x11.c
6985    M /trunk/plugins/x11/vout_xvideo.c
6986    M /trunk/plugins/x11/x11.c
6987    M /trunk/plugins/x11/xvideo.c
6988    M /trunk/plugins/yuv/yuv.c
6989    M /trunk/plugins/yuv/yuvmmx.c
6990    M /trunk/src/input/input.c
6991    M /trunk/src/interface/intf_playlist.c
6992    D /trunk/src/interface/intf_urldecode.c
6993    M /trunk/src/misc/modules.c
6994    M /trunk/src/misc/netutils.c
6995    M /trunk/src/misc/tests.c
6996    M /trunk/src/video_decoder/video_decoder.c
6997    M /trunk/src/video_output/video_output.c
6998    M /trunk/src/video_parser/video_parser.c
7001   * Fixed the BeOS compile typo.
7002   * The ALSA plugin is back.
7003   * A gift for Gildas: plugins don't rely on backlinking any more. The
7004     drawback is the dirty magic in include/modules_export.h which has to
7005     be included whenever a module needs one of the functions in it. But
7006      a) we should less and less rely on those functions
7007      b) no plugin code modification was needed
7009    The BeOS and MacOS X modules may be broken when compiled as plugins,
7010    I'll check this later when I can reboot under BeOS.
7012 ------------------------------------------------------------------------
7013 r926 | sam | 2001-05-30 19:04:12 +0200 (Wed, 30 May 2001) | 3 lines
7014 Changed paths:
7015    A /trunk/include/modules_export.h
7018   * Hrmpf. Forgot the most important file.
7020 ------------------------------------------------------------------------
7021 r927 | sam | 2001-05-31 00:16:07 +0200 (Thu, 31 May 2001) | 3 lines
7022 Changed paths:
7023    M /trunk/plugins/dvd/input_dvd.c
7024    M /trunk/src/input/input.c
7027   * Fixed a bug introduced in my previous commit which broke DVD input.
7029 ------------------------------------------------------------------------
7030 r928 | stef | 2001-05-31 01:02:04 +0200 (Thu, 31 May 2001) | 8 lines
7031 Changed paths:
7032    M /trunk/include/main.h
7033    M /trunk/include/modules_export.h
7034    M /trunk/plugins/gtk/gnome_callbacks.c
7035    M /trunk/plugins/gtk/gnome_callbacks.h
7036    M /trunk/plugins/gtk/gnome_interface.c
7037    M /trunk/plugins/gtk/gtk_callbacks.c
7038    M /trunk/plugins/gtk/gtk_callbacks.h
7039    M /trunk/plugins/gtk/gtk_display.c
7040    M /trunk/plugins/gtk/gtk_interface.c
7041    M /trunk/plugins/gtk/gtk_menu.c
7042    M /trunk/plugins/gtk/gtk_open.c
7043    M /trunk/plugins/gtk/gtk_open.h
7044    M /trunk/plugins/gtk/gtk_playlist.c
7045    M /trunk/plugins/gtk/intf_gnome.c
7046    M /trunk/plugins/gtk/intf_gnome.glade
7047    M /trunk/plugins/gtk/intf_gtk.c
7048    M /trunk/plugins/gtk/intf_gtk.glade
7049    M /trunk/plugins/imdct/ac3_imdct_3dn.c
7050    M /trunk/src/audio_output/aout_spdif.c
7051    M /trunk/src/interface/main.c
7052    M /trunk/src/misc/netutils.c
7054 -Updated the gtk/gnome interface to work in network mode,
7056 -Fixed some bugs in interface (language menus in ts, misnamed fields)
7058 -Play/Stop work in network mode to start/stop decoding of the stream
7060 I have a segfault in imdct_3dn(93). But I can't underdand assembly.
7062 ------------------------------------------------------------------------
7063 r929 | sam | 2001-05-31 03:37:08 +0200 (Thu, 31 May 2001) | 4 lines
7064 Changed paths:
7065    M /trunk/include/common.h
7066    M /trunk/include/int_types.h
7067    M /trunk/include/intf_msg.h
7068    A /trunk/include/iovec.h
7069    M /trunk/plugins/dummy/aout_dummy.c
7070    M /trunk/plugins/dummy/intf_dummy.c
7071    M /trunk/plugins/dvd/dvd_css.c
7072    M /trunk/plugins/dvd/dvd_ifo.c
7073    M /trunk/plugins/dvd/dvd_ioctl.c
7074    M /trunk/plugins/dvd/dvd_netlist.c
7075    M /trunk/plugins/dvd/dvd_summary.c
7076    M /trunk/plugins/dvd/dvd_udf.c
7077    M /trunk/plugins/dvd/input_dvd.c
7078    M /trunk/plugins/mpeg/input_es.c
7079    M /trunk/plugins/mpeg/input_ps.c
7080    M /trunk/plugins/mpeg/input_ps.h
7081    M /trunk/plugins/mpeg/input_ts.c
7082    M /trunk/plugins/mpeg/input_ts.h
7083    M /trunk/src/ac3_decoder/ac3_decoder_thread.c
7084    M /trunk/src/ac3_spdif/ac3_iec958.c
7085    M /trunk/src/ac3_spdif/ac3_spdif.c
7086    M /trunk/src/audio_decoder/audio_decoder.c
7087    M /trunk/src/audio_output/aout_spdif.c
7088    M /trunk/src/audio_output/audio_output.c
7089    M /trunk/src/input/input.c
7090    M /trunk/src/input/input_netlist.c
7091    M /trunk/src/interface/intf_msg.c
7092    M /trunk/src/interface/main.c
7093    M /trunk/src/lpcm_decoder/lpcm_decoder_thread.c
7094    M /trunk/src/misc/modules.c
7095    M /trunk/src/misc/mtime.c
7096    M /trunk/src/misc/netutils.c
7097    M /trunk/src/spu_decoder/spu_decoder.c
7098    M /trunk/src/video_decoder/video_decoder.c
7099    M /trunk/src/video_output/video_text.c
7100    M /trunk/src/video_parser/video_parser.c
7103   * Applied patch from Jon Lech Johansen <jon-vl@nanocrew.net> to compile
7104     vlc with MS and Intel C/C++ compilers.
7106 ------------------------------------------------------------------------
7107 r930 | sam | 2001-05-31 05:12:49 +0200 (Thu, 31 May 2001) | 3 lines
7108 Changed paths:
7109    M /trunk/AUTHORS
7110    M /trunk/include/common.h
7111    M /trunk/include/intf_msg.h
7112    M /trunk/plugins/dvd/dvd_css.c
7113    M /trunk/plugins/dvd/dvd_ifo.c
7114    M /trunk/plugins/dvd/dvd_ioctl.c
7115    M /trunk/plugins/dvd/dvd_ioctl.h
7116    M /trunk/plugins/dvd/dvd_netlist.c
7117    M /trunk/plugins/dvd/dvd_udf.c
7118    M /trunk/plugins/dvd/input_dvd.c
7119    M /trunk/plugins/mpeg/input_es.c
7120    M /trunk/plugins/mpeg/input_ps.c
7121    M /trunk/plugins/mpeg/input_ps.h
7122    M /trunk/plugins/mpeg/input_ts.c
7123    M /trunk/src/audio_output/aout_spdif.c
7124    M /trunk/src/input/input.c
7125    M /trunk/src/misc/mtime.c
7126    M /trunk/src/video_output/video_text.c
7129   * Win2000 DVD input by Jon Lech Johansen <jon-vl@nanocrew.net>.
7131 ------------------------------------------------------------------------
7132 r931 | sam | 2001-05-31 05:23:24 +0200 (Thu, 31 May 2001) | 4 lines
7133 Changed paths:
7134    M /trunk/plugins/gtk/gtk_playlist.c
7135    M /trunk/plugins/gtk/gtk_playlist.h
7136    M /trunk/plugins/gtk/intf_gtk.c
7137    M /trunk/plugins/sdl/vout_sdl.c
7138    M /trunk/src/video_output/video_output.c
7141   * miscellaneous Win32 fixes by Gildas Bazin <gbazin@netcourrier.com>, sorry
7142     for the 2 weeks delay.
7144 ------------------------------------------------------------------------
7145 r932 | sam | 2001-05-31 05:57:54 +0200 (Thu, 31 May 2001) | 3 lines
7146 Changed paths:
7147    A /trunk/include/input_iovec.h
7148    D /trunk/include/iovec.h
7149    M /trunk/plugins/beos/aout_beos.cpp
7150    M /trunk/plugins/beos/beos.cpp
7151    M /trunk/plugins/beos/intf_beos.cpp
7152    M /trunk/plugins/beos/vout_beos.cpp
7153    M /trunk/plugins/dvd/dvd.c
7154    M /trunk/plugins/dvd/dvd_ioctl.h
7155    M /trunk/plugins/dvd/dvd_netlist.c
7156    M /trunk/plugins/dvd/input_dvd.c
7157    M /trunk/plugins/mpeg/input_ts.c
7158    M /trunk/src/input/input.c
7159    M /trunk/src/input/input_netlist.c
7160    M /trunk/src/video_output/video_output.c
7163   * BeOS fixes. renamed iovec.h to input_iovec.h because of namespace issues.
7165 ------------------------------------------------------------------------
7166 r933 | sam | 2001-05-31 14:45:39 +0200 (Thu, 31 May 2001) | 3 lines
7167 Changed paths:
7168    M /trunk/Makefile.opts.in
7169    M /trunk/include/modules_core.h
7170    M /trunk/plugins/gtk/intf_gtk.c
7171    M /trunk/src/input/input.c
7172    M /trunk/src/misc/modules.c
7173    M /trunk/src/misc/mtime.c
7176   * Win32 plugin support by Gildas Bazin <gbazin@netcourrier.com>.
7178 ------------------------------------------------------------------------
7179 r934 | stef | 2001-05-31 18:10:05 +0200 (Thu, 31 May 2001) | 4 lines
7180 Changed paths:
7181    M /trunk/plugins/dvd/input_dvd.c
7182    M /trunk/plugins/gtk/gtk_callbacks.c
7183    M /trunk/plugins/gtk/gtk_menu.c
7184    M /trunk/src/audio_output/aout_spdif.c
7186 *fixed a double malloc/free bug in DVDRead
7188 *fixed a lock issue in the interface introduced in my last commit
7190 ------------------------------------------------------------------------
7191 r935 | sam | 2001-06-02 03:09:03 +0200 (Sat, 02 Jun 2001) | 9 lines
7192 Changed paths:
7193    M /trunk/INSTALL
7194    M /trunk/Makefile
7195    M /trunk/Makefile.opts.in
7196    M /trunk/configure
7197    M /trunk/configure.in
7198    D /trunk/include/modules_builtin.h.in
7199    D /trunk/include/modules_core.h
7200    A /trunk/plugins/directx
7201    A /trunk/plugins/directx/Makefile
7202    A /trunk/plugins/directx/aout_directx.c
7203    A /trunk/plugins/directx/directx.c
7204    A /trunk/plugins/directx/vout_directx.c
7205    M /trunk/plugins/gtk/gtk_menu.c
7206    M /trunk/plugins/mpeg/input_ts.c
7207    M /trunk/plugins/mpeg/input_ts.h
7208    M /trunk/src/interface/intf_msg.c
7209    A /trunk/src/misc/modules_builtin.h.in
7210    A /trunk/src/misc/modules_core.h
7211    M /trunk/src/misc/netutils.c
7212    M /trunk/src/spu_decoder/spu_decoder.c
7215   * DirectX plugin by Gildas Bazin <gbazin@netcourrier.com>.
7217     Notes: o I called it 'directx' instead of 'windx' because it
7218              made a lot more sense to me.
7219            o Completely untested. I didn't manage to compile it yet.
7220            o Code in vout_directx.c will go through a big rewrite when
7221              vout 4 is finished. Xav is already working on this.
7223 ------------------------------------------------------------------------
7224 r936 | sam | 2001-06-02 03:10:19 +0200 (Sat, 02 Jun 2001) | 4 lines
7225 Changed paths:
7226    M /trunk/include/.cvsignore
7227    A /trunk/src/misc/.cvsignore
7230   * Moved modules_builtins.h.in into src/misc. Please remove
7231     include/modules_builtins.h in your local tree.
7233 ------------------------------------------------------------------------
7234 r937 | tcastley | 2001-06-02 11:42:26 +0200 (Sat, 02 Jun 2001) | 3 lines
7235 Changed paths:
7236    A /trunk/plugins/beos/InterfaceWindow.cpp
7237    M /trunk/plugins/beos/intf_beos.cpp
7239 Change to the set out of the BeOS code to
7240 allow more logical updates.
7242 ------------------------------------------------------------------------
7243 r938 | tcastley | 2001-06-02 12:16:43 +0200 (Sat, 02 Jun 2001) | 5 lines
7244 Changed paths:
7245    M /trunk/plugins/beos/Makefile
7247 Forgot this...
7249 Change to the set out of the BeOS code to
7250 allow more logical updates.
7252 ------------------------------------------------------------------------
7253 r939 | sam | 2001-06-03 14:47:22 +0200 (Sun, 03 Jun 2001) | 6 lines
7254 Changed paths:
7255    M /trunk/Makefile
7256    M /trunk/Makefile.dep
7257    M /trunk/Makefile.modules
7258    M /trunk/Makefile.opts.in
7259    M /trunk/configure
7260    M /trunk/configure.in
7261    M /trunk/include/common.h
7262    M /trunk/include/modules_export.h
7263    M /trunk/include/mpeg_system.h
7264    M /trunk/include/video_fifo.h
7265    M /trunk/plugins/beos/InterfaceWindow.h
7266    M /trunk/plugins/directx/aout_directx.c
7267    M /trunk/plugins/directx/vout_directx.c
7268    M /trunk/plugins/downmix/ac3_downmix_3dn.c
7269    M /trunk/plugins/downmix/ac3_downmix_sse.c
7270    M /trunk/plugins/downmix/downmix3dn.c
7271    M /trunk/plugins/downmix/downmixsse.c
7272    M /trunk/plugins/dvd/dvd_css.c
7273    M /trunk/plugins/dvd/dvd_ifo.c
7274    M /trunk/plugins/dvd/dvd_ioctl.c
7275    M /trunk/plugins/dvd/dvd_netlist.c
7276    M /trunk/plugins/dvd/dvd_summary.c
7277    M /trunk/plugins/dvd/dvd_udf.c
7278    M /trunk/plugins/dvd/input_dvd.c
7279    M /trunk/plugins/idct/idct.c
7280    M /trunk/plugins/idct/idctaltivec.c
7281    M /trunk/plugins/idct/idctclassic.c
7282    M /trunk/plugins/idct/idctmmx.c
7283    M /trunk/plugins/idct/idctmmxext.c
7284    M /trunk/plugins/idct/vdec_block_c.c
7285    M /trunk/plugins/idct/vdec_block_mmx.c
7286    M /trunk/plugins/imdct/ac3_imdct_3dn.c
7287    M /trunk/plugins/imdct/imdct.c
7288    M /trunk/plugins/imdct/imdct3dn.c
7289    M /trunk/plugins/imdct/imdctsse.c
7290    M /trunk/plugins/motion/motion.c
7291    M /trunk/plugins/motion/motionmmx.c
7292    M /trunk/plugins/motion/motionmmxext.c
7293    M /trunk/plugins/motion/vdec_motion_common.c
7294    M /trunk/plugins/mpeg/es.c
7295    M /trunk/plugins/mpeg/input_ps.c
7296    M /trunk/plugins/mpeg/input_ts.c
7297    M /trunk/plugins/mpeg/ts.c
7298    M /trunk/plugins/null/null.c
7299    M /trunk/plugins/text/intf_rc.c
7300    M /trunk/plugins/text/rc.c
7301    M /trunk/plugins/yuv/transforms_yuv.c
7302    M /trunk/plugins/yuv/transforms_yuvmmx.c
7303    M /trunk/plugins/yuv/video_yuv.c
7304    M /trunk/plugins/yuv/video_yuvmmx.c
7305    M /trunk/plugins/yuv/yuv.c
7306    M /trunk/plugins/yuv/yuvmmx.c
7307    M /trunk/src/misc/modules.c
7308    M /trunk/src/video_decoder/video_decoder.c
7311   * Various little fixes
7312    - BeOS interface compilation fix by Rene Gollent.
7313    - DirectX plugin compilation fix by Gildas Bazin.
7314    - removed %ebx spill in the iMDCT plugins.
7316 ------------------------------------------------------------------------
7317 r940 | sam | 2001-06-05 06:08:06 +0200 (Tue, 05 Jun 2001) | 3 lines
7318 Changed paths:
7319    M /trunk/ChangeLog
7320    M /trunk/Makefile
7321    M /trunk/Makefile.opts.in
7322    M /trunk/configure
7323    M /trunk/configure.in
7324    M /trunk/debian/changelog
7325    M /trunk/debian/changelog-css
7326    M /trunk/plugins/sdl/Makefile
7327    M /trunk/vlc.spec
7330   * Updated things and stuff for 0.2.80 release.
7332 ------------------------------------------------------------------------
7333 r941 | sam | 2001-06-07 03:10:33 +0200 (Thu, 07 Jun 2001) | 25 lines
7334 Changed paths:
7335    M /trunk/ChangeLog
7336    M /trunk/Makefile
7337    M /trunk/Makefile.opts.in
7338    M /trunk/configure
7339    M /trunk/configure.in
7340    M /trunk/plugins/dummy/Makefile
7341    M /trunk/plugins/dummy/dummy.c
7342    A /trunk/plugins/dummy/input_dummy.c
7343    A /trunk/plugins/dummy/null.c
7344    D /trunk/plugins/null
7345    M /trunk/src/input/input.c
7348   * Put most builtins in plugins again due to performances issues (more
7349     about this in a forthcoming post here).
7350   * Fixed the painfully slow build process (at last!).
7351   * Moved the null plugin together with the dummy one.
7352   * Added new dummy input plugin.
7354    More on the dummy input plugin: we'll use it to insert commands in
7355   the playlist. Currently implemented are the "quit" and "pause" functions,
7356   here are examples on how they are used:
7358     vlc file.mpeg vlc:quit                # exit after file.mpeg has been read.
7360     vlc file1.mpeg vlc:pause:3 file2.mpeg # pause 3 seconds before playing
7361                                           # the next file.
7363    From now we can more efficiently benchmark vlc. For instance, to test
7364   the video output changes I am doing, I use such a command:
7366     time vlc -I dummy --noaudio file.mpeg vlc:quit
7368    Future extentions might include more interesting stuff like "switch
7369   to full screen", "repeat next file 3 times", "switch to SDL video
7370   output"...
7372 ------------------------------------------------------------------------
7373 r942 | sam | 2001-06-07 17:27:44 +0200 (Thu, 07 Jun 2001) | 5 lines
7374 Changed paths:
7375    M /trunk/AUTHORS
7376    M /trunk/configure
7377    M /trunk/configure.in
7378    M /trunk/include/modules_export.h
7379    M /trunk/plugins/dvd/dvd_ifo.c
7380    M /trunk/plugins/dvd/dvd_ifo.h
7381    M /trunk/plugins/motion/motion.c
7382    M /trunk/plugins/motion/motionmmx.c
7383    M /trunk/plugins/motion/motionmmxext.c
7384    M /trunk/plugins/motion/vdec_motion_common.c
7385    M /trunk/plugins/motion/vdec_motion_inner.c
7386    M /trunk/plugins/motion/vdec_motion_inner_mmx.c
7387    M /trunk/plugins/motion/vdec_motion_inner_mmxext.c
7388    M /trunk/plugins/mpeg/input_es.c
7391   * Applied old FreeBSD patch for dvd input by German Tischler.
7392   * Found what was causing the slowdowns: a namespace collision. Put all
7393     plugins into builtins again.
7395 ------------------------------------------------------------------------
7396 r943 | sam | 2001-06-08 00:14:56 +0200 (Fri, 08 Jun 2001) | 4 lines
7397 Changed paths:
7398    M /trunk/plugins/motion/vdec_motion_inner.c
7399    M /trunk/plugins/motion/vdec_motion_inner_mmx.c
7400    M /trunk/plugins/motion/vdec_motion_inner_mmxext.c
7401    M /trunk/plugins/sdl/vout_sdl.c
7404   * SDL compilation fix for FreeBSD.
7405   * Fixed compilation of motion modules as plugins.
7407 ------------------------------------------------------------------------
7408 r944 | sam | 2001-06-08 00:25:42 +0200 (Fri, 08 Jun 2001) | 3 lines
7409 Changed paths:
7410    M /trunk/plugins/dvd/dvd_css.c
7411    M /trunk/plugins/dvd/dvd_ifo.c
7412    M /trunk/plugins/dvd/dvd_summary.c
7413    M /trunk/plugins/dvd/dvd_udf.c
7414    M /trunk/plugins/dvd/input_dvd.c
7415    M /trunk/plugins/dvd/input_dvd.h
7418   * Another FreeBSD compilation fix.
7420 ------------------------------------------------------------------------
7421 r945 | sam | 2001-06-08 22:03:16 +0200 (Fri, 08 Jun 2001) | 4 lines
7422 Changed paths:
7423    M /trunk/include/modules_export.h
7424    M /trunk/plugins/directx/vout_directx.c
7425    M /trunk/plugins/dummy/input_dummy.c
7428   * Lots of DirectX plugin fixes by Gildas Bazin.
7429   * Compilation fix in message queue mode.
7431 ------------------------------------------------------------------------
7432 r946 | stef | 2001-06-09 19:01:22 +0200 (Sat, 09 Jun 2001) | 8 lines
7433 Changed paths:
7434    M /trunk/include/input_ext-intf.h
7435    M /trunk/plugins/dvd/input_dvd.c
7436    M /trunk/src/ac3_spdif/ac3_spdif.c
7437    M /trunk/src/ac3_spdif/ac3_spdif.h
7438    M /trunk/src/audio_output/aout_spdif.c
7439    M /trunk/src/input/input_clock.c
7441 *Fixed a bug in synchro reinitialisation: we no longer have a shift each
7442 time we restart the synchro (for scr discontinuity for instance)
7444 *In DVD mode, we reinit the synchro only if the scr are not continuous
7445 (instead of each cell)
7447 *Try to improve ac3 spdif to prevent from desynchronization.
7449 ------------------------------------------------------------------------
7450 r947 | reno | 2001-06-12 02:30:41 +0200 (Tue, 12 Jun 2001) | 2 lines
7451 Changed paths:
7452    M /trunk/include/ac3_imdct.h
7453    M /trunk/plugins/imdct/imdct3dn.c
7454    M /trunk/plugins/imdct/imdctsse.c
7455    M /trunk/src/ac3_decoder/ac3_decoder.h
7456    M /trunk/src/interface/main.c
7458 * Check that OS support SSE optimization for PIII (to avoid illegal hardware instruction on Linux 2.2.x)
7460 ------------------------------------------------------------------------
7461 r948 | reno | 2001-06-12 13:02:07 +0200 (Tue, 12 Jun 2001) | 2 lines
7462 Changed paths:
7463    M /trunk/src/interface/main.c
7465 * Fix the warning in compilation of main.c
7467 ------------------------------------------------------------------------
7468 r949 | henri | 2001-06-12 15:50:09 +0200 (Tue, 12 Jun 2001) | 4 lines
7469 Changed paths:
7470    M /trunk/Makefile
7471    M /trunk/TODO
7472    D /trunk/src/lpcm_decoder/lpcm_decoder.c
7473    D /trunk/src/lpcm_decoder/lpcm_decoder.h
7474    M /trunk/src/lpcm_decoder/lpcm_decoder_thread.c
7475    M /trunk/src/lpcm_decoder/lpcm_decoder_thread.h
7478 Added LPCM support. It should work with stereo LPCM.
7479 Untested with 5-ways LPCM streams.
7481 ------------------------------------------------------------------------
7482 r950 | stef | 2001-06-12 20:16:49 +0200 (Tue, 12 Jun 2001) | 17 lines
7483 Changed paths:
7484    M /trunk/include/main.h
7485    M /trunk/plugins/dvd/dvd_summary.c
7486    M /trunk/plugins/dvd/input_dvd.c
7487    M /trunk/src/audio_output/aout_ext-dec.c
7488    M /trunk/src/audio_output/aout_spdif.c
7489    M /trunk/src/audio_output/audio_output.c
7490    M /trunk/src/input/input.c
7491    M /trunk/src/input/input_programs.c
7493 *slight modification in input_dvd since Getiovec wasn't at the right
7494 place
7496 *send escape packet when changing title, not to be stuck in some
7497 decoder.
7499 *the position in the title is now resetted when we change title to
7500 prevent a title from being unavailable because we're stuck at the end
7502 *fixed a bug with 1-chapter-long title that displayed chapter 0.
7504 *added a _temporary_ field in p_main to know whether the audio stream is
7505 ac3 (ugly). It allows a vlc launched in spdif mode to play mpeg or lpcm
7506 audio.
7508 *cleaned the title property messages to get rid of the ugly stars.
7510 ------------------------------------------------------------------------
7511 r951 | sam | 2001-06-13 00:14:44 +0200 (Wed, 13 Jun 2001) | 3 lines
7512 Changed paths:
7513    M /trunk/Makefile
7514    M /trunk/Makefile.opts.in
7515    M /trunk/configure
7516    M /trunk/configure.in
7517    A /trunk/extras/libdvdcss
7518    A /trunk/extras/libdvdcss/.cvsignore
7519    A /trunk/extras/libdvdcss/Makefile
7520    A /trunk/extras/libdvdcss/css.c
7521    A /trunk/extras/libdvdcss/css.h
7522    A /trunk/extras/libdvdcss/csstables.h
7523    A /trunk/extras/libdvdcss/ioctl.c
7524    A /trunk/extras/libdvdcss/ioctl.h
7525    A /trunk/extras/libdvdcss/libdvdcss.c
7526    A /trunk/extras/libdvdcss/libdvdcss.h
7527    A /trunk/extras/libdvdcss/videolan
7528    A /trunk/extras/libdvdcss/videolan/dvdcss.h
7529    M /trunk/include/input_iovec.h
7530    M /trunk/plugins/dvd/Makefile
7531    D /trunk/plugins/dvd/dvd_css.c
7532    D /trunk/plugins/dvd/dvd_css.h
7533    D /trunk/plugins/dvd/dvd_csstables.h
7534    M /trunk/plugins/dvd/dvd_ifo.c
7535    M /trunk/plugins/dvd/dvd_ifo.h
7536    D /trunk/plugins/dvd/dvd_ioctl.c
7537    D /trunk/plugins/dvd/dvd_ioctl.h
7538    M /trunk/plugins/dvd/dvd_summary.c
7539    M /trunk/plugins/dvd/dvd_udf.c
7540    M /trunk/plugins/dvd/dvd_udf.h
7541    M /trunk/plugins/dvd/input_dvd.c
7542    M /trunk/plugins/dvd/input_dvd.h
7543    A /trunk/plugins/kde/.cvsignore
7544    M /trunk/plugins/sdl/Makefile
7545    M /trunk/src/interface/main.c
7548   * Exported the CSS part of the dvd plugin into a library.
7550 ------------------------------------------------------------------------
7551 r952 | stef | 2001-06-13 02:03:08 +0200 (Wed, 13 Jun 2001) | 3 lines
7552 Changed paths:
7553    M /trunk/plugins/dvd/dvd_netlist.c
7554    M /trunk/plugins/dvd/input_dvd.c
7555    M /trunk/src/audio_output/aout_spdif.c
7557 *the dvd netlist no longer stops when the fifo is empty ; it just waits
7558 that there are free vectors again
7560 ------------------------------------------------------------------------
7561 r953 | sam | 2001-06-14 03:49:44 +0200 (Thu, 14 Jun 2001) | 10 lines
7562 Changed paths:
7563    M /trunk/Makefile
7564    M /trunk/Makefile.opts.in
7565    M /trunk/configure
7566    M /trunk/configure.in
7567    M /trunk/debian/control
7568    M /trunk/extras/libdvdcss/Makefile
7569    M /trunk/extras/libdvdcss/libdvdcss.c
7570    M /trunk/extras/libdvdcss/libdvdcss.h
7571    M /trunk/extras/libdvdcss/videolan/dvdcss.h
7572    M /trunk/include/defs.h.in
7573    M /trunk/include/threads.h
7574    M /trunk/lib/.cvsignore
7575    M /trunk/plugins/directx/aout_directx.c
7576    M /trunk/plugins/directx/vout_directx.c
7577    M /trunk/plugins/dummy/aout_dummy.c
7578    M /trunk/plugins/dummy/intf_dummy.c
7579    M /trunk/plugins/dvd/Makefile
7580    M /trunk/plugins/dvd/input_dvd.c
7581    M /trunk/plugins/gtk/gtk_menu.c
7582    M /trunk/plugins/gtk/gtk_menu.h
7583    M /trunk/plugins/gtk/intf_gtk.h
7584    M /trunk/src/input/input.c
7585    M /trunk/src/interface/main.c
7586    M /trunk/src/misc/modules.c
7587    M /trunk/src/misc/modules_core.h
7588    M /trunk/src/misc/mtime.c
7589    M /trunk/src/video_output/video_output.c
7592   * DirectX enhancements by Gildas Bazin, such as software rendering.
7593   * Merged dvdcss_init and dvdcss_open into dvdcss_open, and dvdcss_close
7594     and dvdcss_end into dvdcss_close. libdvdcss API now has 7 functions.
7595   * Another failed attempt at profiling vlc under Linux: ported the
7596     threads API to GNU Pth. Activate with --enable-pth. It doesn't seem to
7597     spawn new threads for me, maybe someone will have better luck.
7598   * Makefile optimizations.
7599   * Automatic build of libdvdcss if not found.
7601 ------------------------------------------------------------------------
7602 r954 | sam | 2001-06-14 04:47:45 +0200 (Thu, 14 Jun 2001) | 4 lines
7603 Changed paths:
7604    M /trunk/ChangeLog
7605    M /trunk/Makefile.opts.in
7606    M /trunk/configure
7607    M /trunk/configure.in
7608    M /trunk/extras/libdvdcss/Makefile
7609    M /trunk/extras/libdvdcss/css.c
7610    M /trunk/extras/libdvdcss/ioctl.c
7611    M /trunk/extras/libdvdcss/ioctl.h
7612    M /trunk/extras/libdvdcss/libdvdcss.c
7613    M /trunk/extras/libdvdcss/libdvdcss.h
7614    M /trunk/include/defs.h.in
7615    M /trunk/plugins/dvd/input_dvd.c
7616    M /trunk/src/input/input.c
7617    M /trunk/src/misc/modules.c
7620   * Fully working Windows DVD ioctl support by Jon Lech Johansen.
7621   * Usual weekly ChangeLog mass-update.
7623 ------------------------------------------------------------------------
7624 r955 | sam | 2001-06-14 22:21:04 +0200 (Thu, 14 Jun 2001) | 11 lines
7625 Changed paths:
7626    M /trunk/ChangeLog
7627    M /trunk/Makefile.opts.in
7628    M /trunk/configure
7629    M /trunk/configure.in
7630    M /trunk/include/threads.h
7631    M /trunk/src/interface/main.c
7632    M /trunk/src/misc/mtime.c
7635   * Added gprof profiling support with --enable-profiling.
7637     It works at last! configure with --enable-profiling, build, run
7638  vlc (you may want to add --noaudio, it currently segfaults with sound
7639  here) and launch "gprof vlc" when finished.
7641     To make gprof work with multithreaded programs, one needs to set the
7642  internal ITIMER_PROF timer for each new thread launched. I did this
7643  through a wrapper in vlc_thread_create (see include/threads.h).
7645 ------------------------------------------------------------------------
7646 r956 | stef | 2001-06-15 03:22:58 +0200 (Fri, 15 Jun 2001) | 2 lines
7647 Changed paths:
7648    M /trunk/plugins/dvd/input_dvd.c
7650 *Removed a lock that caused late frames in DVDRead.
7652 ------------------------------------------------------------------------
7653 r957 | sam | 2001-06-15 07:12:30 +0200 (Fri, 15 Jun 2001) | 4 lines
7654 Changed paths:
7655    M /trunk/ChangeLog
7656    M /trunk/plugins/dvd/dvd_netlist.c
7657    M /trunk/plugins/dvd/input_dvd.c
7658    M /trunk/src/input/input.c
7661   * Unrolled two loops in dvd_netlist.c to prevent flooding.
7662   * DVD input stuttering fix by Jon Lech Johansen.
7664 ------------------------------------------------------------------------
7665 r958 | tcastley | 2001-06-15 11:07:10 +0200 (Fri, 15 Jun 2001) | 3 lines
7666 Changed paths:
7667    M /trunk/plugins/beos/InterfaceWindow.cpp
7668    M /trunk/plugins/beos/InterfaceWindow.h
7669    M /trunk/plugins/beos/Makefile
7670    A /trunk/plugins/beos/MediaControlView.cpp
7671    A /trunk/plugins/beos/MediaControlView.h
7672    M /trunk/plugins/beos/MsgVals.h
7673    A /trunk/plugins/beos/PlayListWindow.cpp
7674    A /trunk/plugins/beos/PlayListWindow.h
7676 New simple playlist.
7677 Enable/disable controls depending on what is in the playlist.
7679 ------------------------------------------------------------------------
7680 r959 | sam | 2001-06-19 01:42:07 +0200 (Tue, 19 Jun 2001) | 3 lines
7681 Changed paths:
7682    A /trunk/INSTALL.libdvdcss
7683    M /trunk/Makefile
7684    M /trunk/Makefile.opts.in
7685    M /trunk/configure
7686    M /trunk/configure.in
7687    M /trunk/src/video_parser/vpar_blocks.c
7690   * First libdvdcss version
7692 ------------------------------------------------------------------------
7693 r960 | sam | 2001-06-19 07:51:57 +0200 (Tue, 19 Jun 2001) | 3 lines
7694 Changed paths:
7695    M /trunk/ChangeLog
7696    M /trunk/plugins/x11/vout_x11.c
7697    M /trunk/plugins/x11/vout_xvideo.c
7700   * FreeBSD (and probably QNX) shared memory handling fix.
7702 ------------------------------------------------------------------------
7703 r961 | sam | 2001-06-20 09:43:48 +0200 (Wed, 20 Jun 2001) | 5 lines
7704 Changed paths:
7705    M /trunk/extras/libdvdcss/css.h
7706    M /trunk/extras/libdvdcss/ioctl.h
7707    M /trunk/extras/libdvdcss/videolan/dvdcss.h
7708    M /trunk/plugins/dvd/dvd_ifo.c
7709    M /trunk/plugins/idct/vdec_block_c.c
7710    M /trunk/plugins/idct/vdec_block_mmx.c
7711    M /trunk/plugins/mpeg/input_ts.h
7714   * Fixed an alignment issue in the ifo parser. The Matrix problem should
7715     be solved.
7716   * Minor cosmetic fixes and warning removals here and there.
7718 ------------------------------------------------------------------------
7719 r962 | sam | 2001-06-21 09:22:03 +0200 (Thu, 21 Jun 2001) | 3 lines
7720 Changed paths:
7721    M /trunk/AUTHORS
7722    M /trunk/include/input_iovec.h
7723    A /trunk/plugins/directx/.cvsignore
7724    M /trunk/plugins/mpeg/input_ts.c
7725    M /trunk/plugins/mpeg/input_ts.h
7726    M /trunk/src/input/input.c
7729   * Win32 network support by Boris Dor?\239?\191?\189s <babal@via.ecp.fr>.
7731 ------------------------------------------------------------------------
7732 r963 | sam | 2001-06-25 13:34:08 +0200 (Mon, 25 Jun 2001) | 6 lines
7733 Changed paths:
7734    M /trunk/AUTHORS
7735    M /trunk/configure
7736    M /trunk/configure.in
7737    M /trunk/extras/MacOSX_dvdioctl/DVDioctl.cpp
7738    M /trunk/extras/MacOSX_dvdioctl/DVDioctl.h
7739    M /trunk/extras/libdvdcss/ioctl.c
7740    M /trunk/extras/libdvdcss/ioctl.h
7741    M /trunk/plugins/x11/vout_x11.c
7742    M /trunk/plugins/x11/vout_xvideo.c
7743    M /trunk/src/interface/main.c
7744    M /trunk/src/misc/modules.c
7745    M /trunk/src/misc/modules_core.h
7746    M /trunk/src/video_output/video_text.c
7749   * Compile fix for newer versions of MacOS X by Colin Simmonds
7750     <colin_simmonds@Mac.lover.org>.
7751   * Additional MacOS X DVD ioctl work by Eugenio Jarosiewicz
7752     <ej0@cise.ufl.edu>.
7754 ------------------------------------------------------------------------
7755 r964 | gbazin | 2001-06-27 08:29:59 +0200 (Wed, 27 Jun 2001) | 14 lines
7756 Changed paths:
7757    A /trunk/INSTALL-win32.txt
7758    M /trunk/Makefile
7759    M /trunk/Makefile.opts.in
7760    M /trunk/include/config.h.in
7761    A /trunk/share/gvlc_win32.ico
7762    A /trunk/share/vlc_win32_rc.rc
7763    M /trunk/src/interface/main.c
7766 - Added command line option '--stdout <filename>' which redirects stdout
7767     and stderr to the specified file. This option should mainly be useful
7768     on Win32.
7769 - On Win32, vlc now has an icon associated to the .exe file, and is a full
7770     GUI application (you don't have this annoying dos command box anymore)
7771 - Added INSTALL-win32.txt for specific details to the Win32 port.
7773 I've tested these changes on Win32 and Linux, let's hope I didn't break
7774   vlc for other platforms.
7777 Gildas
7779 ------------------------------------------------------------------------
7780 r965 | massiot | 2001-06-27 11:53:57 +0200 (Wed, 27 Jun 2001) | 3 lines
7781 Changed paths:
7782    M /trunk/include/input.h
7783    M /trunk/include/input_ext-intf.h
7784    M /trunk/include/modules.h
7785    M /trunk/plugins/dvd/input_dvd.c
7786    M /trunk/plugins/mpeg/input_es.c
7787    M /trunk/plugins/mpeg/input_es.h
7788    M /trunk/plugins/mpeg/input_ps.c
7789    M /trunk/plugins/mpeg/input_ts.c
7790    M /trunk/src/input/input.c
7791    M /trunk/src/input/input_clock.c
7792    M /trunk/src/input/input_programs.c
7794 Elementary Stream input plugin (use it with --input es). Only works with
7795 video streams at the moment.
7797 ------------------------------------------------------------------------
7798 r966 | gbazin | 2001-06-29 00:12:04 +0200 (Fri, 29 Jun 2001) | 5 lines
7799 Changed paths:
7800    M /trunk/plugins/directx/vout_directx.c
7801    M /trunk/src/misc/mtime.c
7804 - a few bug fixes for the directx plugin.
7805 - removed the custom usleep function for win32 as we don't really need
7806     this accuracy, and it was eating cpu resources.
7808 ------------------------------------------------------------------------
7809 r967 | stef | 2001-06-29 13:34:28 +0200 (Fri, 29 Jun 2001) | 2 lines
7810 Changed paths:
7811    M /trunk/extras/libdvdcss/css.c
7812    M /trunk/plugins/dvd/input_dvd.c
7813    M /trunk/plugins/gtk/gtk_menu.c
7815 Bugfix for chapters change in DVD.
7817 ------------------------------------------------------------------------
7818 r968 | gbazin | 2001-07-01 10:49:09 +0200 (Sun, 01 Jul 2001) | 9 lines
7819 Changed paths:
7820    M /trunk/configure
7821    M /trunk/configure.in
7822    M /trunk/plugins/downmix/ac3_downmix_3dn.c
7823    M /trunk/plugins/downmix/ac3_downmix_sse.c
7824    M /trunk/plugins/imdct/ac3_srfft_sse.c
7825    M /trunk/plugins/yuv/transforms_yuvmmx.h
7828 - Portablility fix: We now control the name to be used in the assembler
7829     code for a C function or variable.
7830     GCC for Win32 normally prepends an underscore to the name of a
7831     C function or variable, and the inline assembler code was using the
7832     name without the underscore so we had undefined symbols in some
7833     modules.
7834 - Reenabled all the accelerated modules on Win32.
7836 ------------------------------------------------------------------------
7837 r969 | sam | 2001-07-06 10:43:31 +0200 (Fri, 06 Jul 2001) | 6 lines
7838 Changed paths:
7839    M /trunk/doc/vlc.1
7840    M /trunk/plugins/sdl/vout_sdl.c
7841    M /trunk/src/video_parser/vpar_blocks.c
7844   * Small optimization in vpar_blocks.c, sparing a few memset() calls.
7845   * Additional error checking in vout_sdl.c.
7846   * Minor manpage fix, conforming to Debian policy version 3.5.5.0
7847     (Closes Debian bug #99561).
7849 ------------------------------------------------------------------------
7850 r970 | sam | 2001-07-07 19:45:29 +0200 (Sat, 07 Jul 2001) | 4 lines
7851 Changed paths:
7852    M /trunk/Makefile.opts.in
7853    M /trunk/configure
7854    M /trunk/configure.in
7855    M /trunk/plugins/x11/vout_x11.c
7856    M /trunk/plugins/x11/vout_xvideo.c
7859   * Probably fixed the "X eats more and more CPU" bug. Please test.
7860   * mingw32 cross-compilation issue fixed.
7862 ------------------------------------------------------------------------
7863 r971 | gbazin | 2001-07-07 23:10:58 +0200 (Sat, 07 Jul 2001) | 7 lines
7864 Changed paths:
7865    M /trunk/extras/libdvdcss/css.c
7866    M /trunk/extras/libdvdcss/css.h
7867    M /trunk/extras/libdvdcss/ioctl.h
7868    M /trunk/extras/libdvdcss/libdvdcss.c
7871 - Removed unecessary translations in the win32 code from block offsets to
7872     byte offsets. This was overflowing some variables.
7873 - Reduced the complexity of the Win9x ASPI functions because we only need
7874     to handle DVD drive access.
7875 - Win32 code now handles seeking in areas above 2.1 Go on DVDs.
7877 ------------------------------------------------------------------------
7878 r972 | gbazin | 2001-07-08 19:45:52 +0200 (Sun, 08 Jul 2001) | 15 lines
7879 Changed paths:
7880    M /trunk/Makefile.opts.in
7881    M /trunk/include/common.h
7882    M /trunk/plugins/directx/aout_directx.c
7883    M /trunk/plugins/directx/vout_directx.c
7884    M /trunk/plugins/gtk/gtk_menu.c
7885    M /trunk/src/input/input_ext-intf.c
7886    M /trunk/src/interface/intf_msg.c
7889 Win32 changes only:
7891  - defined off_t as a long long. This allows DVD navigation to work.
7892    This change is to be implemented on a compiler by compiler basis. For
7893    now, it works on mingw32 (tested) and should work on MSVC (not tested).
7895  - Implemented a quick and dirty hack in intf_msg.c to be able to display
7896    long long integers with printf on Win32. This change is also necessary
7897    to avoid segfaults when debug is enabled in vlc on Win32.
7899  - few minor changes in the directx plugins.
7901  - defined snprintf in common.h and removed a few #ifdef WIN32
7903 ------------------------------------------------------------------------
7904 r973 | reno | 2001-07-09 01:15:11 +0200 (Mon, 09 Jul 2001) | 4 lines
7905 Changed paths:
7906    M /trunk/include/ac3_imdct.h
7907    M /trunk/plugins/downmix/ac3_downmix_3dn.c
7908    M /trunk/plugins/downmix/ac3_downmix_sse.c
7909    M /trunk/plugins/imdct/ac3_imdct_3dn.c
7910    M /trunk/plugins/imdct/ac3_imdct_sse.c
7911    M /trunk/plugins/imdct/ac3_srfft_3dn.c
7912    M /trunk/plugins/imdct/ac3_srfft_sse.c
7913    M /trunk/src/ac3_decoder/ac3_decoder.h
7914    M /trunk/src/ac3_decoder/ac3_decoder_thread.c
7915    M /trunk/src/ac3_decoder/ac3_decoder_thread.h
7917 * Alignement in asm functions
7918 * 16 bytes alignement for data (need fo SSE)
7919 * Optimization in SSE
7921 ------------------------------------------------------------------------
7922 r974 | gbazin | 2001-07-10 08:07:53 +0200 (Tue, 10 Jul 2001) | 7 lines
7923 Changed paths:
7924    M /trunk/plugins/x11/vout_xvideo.c
7925    M /trunk/src/video_output/video_output.c
7928 - Fixed the segfault in vout_UnloadFont
7929 - DestroyThread in video_output doesn't call pf_destroy if pf_create has
7930     failed previously.
7931 - The Xvideo plugin now closes the video window when it XVideoGetPort
7932     fails in vout_Create.
7934 ------------------------------------------------------------------------
7935 r975 | sam | 2001-07-11 04:01:05 +0200 (Wed, 11 Jul 2001) | 11 lines
7936 Changed paths:
7937    M /trunk/AUTHORS
7938    M /trunk/Makefile
7939    M /trunk/Makefile.opts.in
7940    M /trunk/configure
7941    M /trunk/configure.in
7942    M /trunk/extras/libdvdcss/css.c
7943    M /trunk/extras/libdvdcss/css.h
7944    M /trunk/extras/libdvdcss/csstables.h
7945    M /trunk/extras/libdvdcss/libdvdcss.c
7946    M /trunk/extras/libdvdcss/libdvdcss.h
7947    M /trunk/extras/libdvdcss/videolan/dvdcss.h
7948    M /trunk/lib/.cvsignore
7949    A /trunk/plugins/.cvsignore
7950    M /trunk/plugins/alsa/Makefile
7951    M /trunk/plugins/alsa/aout_alsa.c
7952    M /trunk/plugins/beos/Makefile
7953    M /trunk/plugins/darwin/Makefile
7954    M /trunk/plugins/directx/Makefile
7955    M /trunk/plugins/downmix/Makefile
7956    M /trunk/plugins/downmix/downmix.c
7957    M /trunk/plugins/downmix/downmix3dn.c
7958    M /trunk/plugins/downmix/downmixsse.c
7959    M /trunk/plugins/dsp/Makefile
7960    M /trunk/plugins/dummy/Makefile
7961    M /trunk/plugins/dvd/Makefile
7962    M /trunk/plugins/dvd/input_dvd.c
7963    M /trunk/plugins/esd/Makefile
7964    M /trunk/plugins/fb/Makefile
7965    M /trunk/plugins/ggi/Makefile
7966    M /trunk/plugins/glide/Makefile
7967    M /trunk/plugins/gtk/Makefile
7968    M /trunk/plugins/idct/Makefile
7969    M /trunk/plugins/idct/idct.c
7970    M /trunk/plugins/idct/idctaltivec.c
7971    M /trunk/plugins/idct/idctclassic.c
7972    M /trunk/plugins/idct/idctmmx.c
7973    M /trunk/plugins/idct/idctmmxext.c
7974    M /trunk/plugins/imdct/Makefile
7975    M /trunk/plugins/imdct/imdct.c
7976    M /trunk/plugins/imdct/imdct3dn.c
7977    M /trunk/plugins/imdct/imdctsse.c
7978    M /trunk/plugins/kde/Makefile
7979    M /trunk/plugins/kde/intf_plugin.h
7980    M /trunk/plugins/kde/kde.cpp
7981    M /trunk/plugins/macosx/Makefile
7982    M /trunk/plugins/mga/Makefile
7983    M /trunk/plugins/motion/Makefile
7984    M /trunk/plugins/motion/motion.c
7985    M /trunk/plugins/motion/motionmmx.c
7986    M /trunk/plugins/motion/motionmmxext.c
7987    M /trunk/plugins/mpeg/Makefile
7988    M /trunk/plugins/qt/Makefile
7989    M /trunk/plugins/sdl/Makefile
7990    M /trunk/plugins/sdl/vout_sdl.c
7991    M /trunk/plugins/text/Makefile
7992    M /trunk/plugins/x11/Makefile
7993    M /trunk/plugins/yuv/Makefile
7994    M /trunk/plugins/yuv/video_yuv.c
7995    M /trunk/plugins/yuv/video_yuvmmx.c
7996    M /trunk/src/misc/modules.c
7997    M /trunk/src/video_output/video_output.c
7998    M /trunk/src/video_parser/vpar_synchro.c
8001   * libdvdcss enhancements by Billy Biggs <vektor@dumbterm.net>. This breaks
8002     vlc's DVD input (looks like decoders are expecting data too early and
8003     DVD input can't cope with it due to decryption). Needs to be investigated.
8004   * Plugins are now compiled in plugins/* and libraries in lib/*.
8005   * The KDE UI compiles again but does not work yet.
8006   * ALSA plugin message corrections.
8007   * Calculation modules can now be calledwith a shorter name
8008     (eg. '--downmix mmx' instead of '--downmix downmixmmx').
8009   * Fixed insane verbosity of the SDL plugin.
8011 ------------------------------------------------------------------------
8012 r976 | gbazin | 2001-07-11 16:26:19 +0200 (Wed, 11 Jul 2001) | 10 lines
8013 Changed paths:
8014    M /trunk/plugins/directx/Makefile
8015    M /trunk/plugins/directx/vout_directx.c
8016    A /trunk/plugins/directx/vout_directx.h
8017    A /trunk/plugins/directx/vout_events.c
8020 DirectX plugin changes:
8021 - The Win32 GetMessage function has been isolated in a thread. This has
8022     been done because this function can block the thread. Thanks to this
8023     change, you can now move your window without any video and audio
8024     interruption.
8025 - Splitted the events handling code into a separate file.
8026 - Fixed the bug associated with the window dragging option in the
8027     diplay properties.
8029 ------------------------------------------------------------------------
8030 r977 | reno | 2001-07-12 22:31:33 +0200 (Thu, 12 Jul 2001) | 3 lines
8031 Changed paths:
8032    M /trunk/TODO
8033    M /trunk/include/audio_output.h
8034    M /trunk/plugins/esd/aout_esd.c
8035    M /trunk/src/audio_output/aout_s16.c
8036    M /trunk/src/audio_output/aout_u8.c
8038 * Fix audio/video synchro bug with esd
8039 * Should fix buggy sound due to 44100-48000 Hz conversions
8041 ------------------------------------------------------------------------
8042 r978 | reno | 2001-07-12 22:44:52 +0200 (Thu, 12 Jul 2001) | 2 lines
8043 Changed paths:
8044    M /trunk/plugins/alsa/aout_alsa.c
8045    M /trunk/plugins/beos/aout_beos.cpp
8046    M /trunk/plugins/directx/aout_directx.c
8047    M /trunk/plugins/dsp/aout_dsp.c
8048    M /trunk/plugins/dummy/aout_dummy.c
8049    M /trunk/plugins/macosx/aout_macosx.c
8050    M /trunk/plugins/sdl/aout_sdl.c
8052 I forgot to commit others aout plugins
8054 ------------------------------------------------------------------------
8055 r979 | gbazin | 2001-07-13 01:06:54 +0200 (Fri, 13 Jul 2001) | 15 lines
8056 Changed paths:
8057    M /trunk/extras/libdvdcss/libdvdcss.c
8058    M /trunk/include/input_iovec.h
8059    M /trunk/plugins/directx/vout_directx.c
8060    M /trunk/plugins/directx/vout_events.c
8061    M /trunk/plugins/mpeg/input_ts.c
8062    M /trunk/plugins/mpeg/input_ts.h
8065 - Fixed 2 Win32 bugs in libdvdcss (in _win32_dvdcss_readv), one of them
8066     should have prevented the Win9x dvd input from working.
8067 - Moved the "if(Win2k)" out of the loop in _win32_dvdcss_readv.
8069 - Put a readv() function in input_iovec.h, the input_es now compiles.
8070 - Modified input_ts to use this function.
8072 - Fixed an initialisation bug in vout_directx.c
8073 - Right clicking on the mouse now displays the navigation menu.
8076 PS: If someone is willing to test the DVD input on Win95/98/Me I will
8077     upload an up to date binary package.
8079 ------------------------------------------------------------------------
8080 r980 | gbazin | 2001-07-15 11:49:09 +0200 (Sun, 15 Jul 2001) | 4 lines
8081 Changed paths:
8082    M /trunk/extras/libdvdcss/libdvdcss.c
8085 - The Win98 DVD input is finally working. (had to install Win98 on my
8086     computer to find the problem ;-)
8088 ------------------------------------------------------------------------
8089 r981 | massiot | 2001-07-16 14:10:32 +0200 (Mon, 16 Jul 2001) | 2 lines
8090 Changed paths:
8091    M /trunk/include/input_ext-dec.h
8093 Fixed GetChunk for chunks < 4 bytes.
8095 ------------------------------------------------------------------------
8096 r982 | massiot | 2001-07-16 16:33:40 +0200 (Mon, 16 Jul 2001) | 2 lines
8097 Changed paths:
8098    M /trunk/plugins/sdl/vout_sdl.c
8100 Reactivated SDL parachute in non-debug mode (memory leak otherwise).
8102 ------------------------------------------------------------------------
8103 r983 | massiot | 2001-07-16 17:54:59 +0200 (Mon, 16 Jul 2001) | 4 lines
8104 Changed paths:
8105    D /trunk/doc/common.tex
8106    D /trunk/doc/conventions
8107    A /trunk/doc/developer
8108    A /trunk/doc/developer/Makefile
8109    A /trunk/doc/developer/audio_output.xml
8110    A /trunk/doc/developer/debugging.xml
8111    A /trunk/doc/developer/decoders.xml
8112    A /trunk/doc/developer/gfdl.xml
8113    A /trunk/doc/developer/glossary.xml
8114    A /trunk/doc/developer/history.xml
8115    A /trunk/doc/developer/input.xml
8116    A /trunk/doc/developer/interface.xml
8117    A /trunk/doc/developer/manual.xml
8118    A /trunk/doc/developer/modules.eps
8119    A /trunk/doc/developer/modules.fig
8120    A /trunk/doc/developer/modules.gif
8121    A /trunk/doc/developer/overview.xml
8122    A /trunk/doc/developer/ports.xml
8123    A /trunk/doc/developer/ps.eps
8124    A /trunk/doc/developer/ps.fig
8125    A /trunk/doc/developer/ps.gif
8126    A /trunk/doc/developer/stream.eps
8127    A /trunk/doc/developer/stream.fig
8128    A /trunk/doc/developer/stream.gif
8129    A /trunk/doc/developer/ts.eps
8130    A /trunk/doc/developer/ts.fig
8131    A /trunk/doc/developer/ts.gif
8132    A /trunk/doc/developer/video_output.xml
8133    D /trunk/doc/main.tex
8134    D /trunk/doc/organization.fig
8135    D /trunk/doc/threads.tex
8137 * Added IDEALX developer documentation into main CVS - PLEASE UPDATE
8138 REGULARLY ;
8139 * Cleaned up doc/ directory.
8141 ------------------------------------------------------------------------
8142 r984 | massiot | 2001-07-16 18:26:21 +0200 (Mon, 16 Jul 2001) | 3 lines
8143 Changed paths:
8144    M /trunk/ChangeLog
8145    M /trunk/Makefile
8146    M /trunk/TODO
8147    D /trunk/src/generic_decoder
8149 * Exploded the outdated generic decoder ;
8150 * Updated ChangeLog and TODO.
8152 ------------------------------------------------------------------------
8153 r985 | massiot | 2001-07-16 18:39:00 +0200 (Mon, 16 Jul 2001) | 2 lines
8154 Changed paths:
8155    A /trunk/src/video_decoder/video_fifo.c
8156    A /trunk/src/video_decoder/video_parser.c
8157    A /trunk/src/video_decoder/vpar_blocks.c
8158    A /trunk/src/video_decoder/vpar_headers.c
8159    A /trunk/src/video_decoder/vpar_synchro.c
8160    D /trunk/src/video_parser
8162 Moved video parser into video decoder.
8164 ------------------------------------------------------------------------
8165 r986 | massiot | 2001-07-16 18:40:14 +0200 (Mon, 16 Jul 2001) | 2 lines
8166 Changed paths:
8167    M /trunk/Makefile
8169 ...and the associated Makefile modifications.
8171 ------------------------------------------------------------------------
8172 r987 | gbazin | 2001-07-17 00:00:45 +0200 (Tue, 17 Jul 2001) | 4 lines
8173 Changed paths:
8174    M /trunk/include/modules_export.h
8175    M /trunk/src/interface/main.c
8176    M /trunk/src/misc/modules.c
8179 Added intf_DbgMsg and intf_DbgMsgImm symbols to modules_export.h
8180 This fixes the TRACE build.
8182 ------------------------------------------------------------------------
8183 r988 | massiot | 2001-07-17 11:48:08 +0200 (Tue, 17 Jul 2001) | 3 lines
8184 Changed paths:
8185    D /trunk/include/input.h
8186    A /trunk/include/input_ext-plugins.h
8187    D /trunk/include/input_netlist.h
8188    M /trunk/include/modules.h
8189    D /trunk/include/mpeg_system.h
8190    A /trunk/include/vdec_ext-plugins.h
8191    D /trunk/include/vdec_motion.h
8192    D /trunk/include/video_decoder.h
8193    D /trunk/include/video_fifo.h
8194    D /trunk/include/video_parser.h
8195    D /trunk/include/vpar_blocks.h
8196    D /trunk/include/vpar_headers.h
8197    D /trunk/include/vpar_synchro.h
8198    M /trunk/plugins/dummy/input_dummy.c
8199    M /trunk/plugins/dvd/dvd_netlist.c
8200    M /trunk/plugins/dvd/input_dvd.c
8201    M /trunk/plugins/idct/idct.c
8202    M /trunk/plugins/idct/idctaltivec.c
8203    M /trunk/plugins/idct/idctclassic.c
8204    M /trunk/plugins/idct/idctmmx.c
8205    M /trunk/plugins/idct/idctmmxext.c
8206    M /trunk/plugins/idct/vdec_block.h
8207    M /trunk/plugins/idct/vdec_block_c.c
8208    M /trunk/plugins/idct/vdec_block_mmx.c
8209    M /trunk/plugins/idct/vdec_idct.c
8210    M /trunk/plugins/idct/vdec_idct.h
8211    M /trunk/plugins/motion/vdec_motion_common.c
8212    M /trunk/plugins/mpeg/input_es.c
8213    M /trunk/plugins/mpeg/input_ps.c
8214    M /trunk/plugins/mpeg/input_ts.c
8215    M /trunk/src/input/input.c
8216    M /trunk/src/input/input_clock.c
8217    M /trunk/src/input/input_dec.c
8218    M /trunk/src/input/input_ext-dec.c
8219    M /trunk/src/input/input_ext-intf.c
8220    M /trunk/src/input/input_netlist.c
8221    M /trunk/src/input/input_programs.c
8222    M /trunk/src/input/mpeg_system.c
8223    M /trunk/src/misc/modules.c
8224    M /trunk/src/video_decoder/video_decoder.c
8225    A /trunk/src/video_decoder/video_decoder.h
8226    M /trunk/src/video_decoder/video_fifo.c
8227    A /trunk/src/video_decoder/video_fifo.h
8228    M /trunk/src/video_decoder/video_parser.c
8229    A /trunk/src/video_decoder/video_parser.h
8230    M /trunk/src/video_decoder/vpar_blocks.c
8231    A /trunk/src/video_decoder/vpar_blocks.h
8232    M /trunk/src/video_decoder/vpar_headers.c
8233    A /trunk/src/video_decoder/vpar_headers.h
8234    M /trunk/src/video_decoder/vpar_synchro.c
8235    A /trunk/src/video_decoder/vpar_synchro.h
8237 Cleaned up include/. Unnecessary headers are no longer under include/, but
8238 under src/. (eat that)
8240 ------------------------------------------------------------------------
8241 r989 | massiot | 2001-07-18 16:21:00 +0200 (Wed, 18 Jul 2001) | 5 lines
8242 Changed paths:
8243    M /trunk/Makefile
8244    M /trunk/include/config.h.in
8245    M /trunk/include/input_ext-intf.h
8246    M /trunk/include/input_ext-plugins.h
8247    M /trunk/include/modules_export.h
8248    M /trunk/include/stream_control.h
8249    M /trunk/include/threads.h
8250    M /trunk/include/vdec_ext-plugins.h
8251    M /trunk/include/video.h
8252    M /trunk/src/input/input.c
8253    M /trunk/src/input/input_clock.c
8254    M /trunk/src/input/input_dec.c
8255    M /trunk/src/input/input_ext-intf.c
8256    M /trunk/src/interface/interface.c
8257    M /trunk/src/interface/main.c
8258    M /trunk/src/video_decoder/video_decoder.c
8259    M /trunk/src/video_decoder/video_decoder.h
8260    D /trunk/src/video_decoder/video_fifo.c
8261    D /trunk/src/video_decoder/video_fifo.h
8262    M /trunk/src/video_decoder/video_parser.c
8263    M /trunk/src/video_decoder/video_parser.h
8264    M /trunk/src/video_decoder/vpar_blocks.c
8265    D /trunk/src/video_decoder/vpar_blocks.h
8266    M /trunk/src/video_decoder/vpar_headers.c
8267    D /trunk/src/video_decoder/vpar_headers.h
8268    A /trunk/src/video_decoder/vpar_pool.c
8269    A /trunk/src/video_decoder/vpar_pool.h
8270    M /trunk/src/video_decoder/vpar_synchro.c
8271    D /trunk/src/video_decoder/vpar_synchro.h
8272    M /trunk/src/video_output/video_output.c
8274 * Rewrote the video decoder to take advantage of several processors (SMP mode) ;
8275 * Fixed a bug in the video decoder initialization :-p ;
8276 * Added --smp option and several hooks in src/input/input_ext-intf.c ;
8277 * Grayscale mode now turns off chroma IDCT.
8279 ------------------------------------------------------------------------
8280 r990 | massiot | 2001-07-18 17:21:51 +0200 (Wed, 18 Jul 2001) | 4 lines
8281 Changed paths:
8282    M /trunk/ChangeLog
8283    M /trunk/src/input/mpeg_system.c
8285 A BIG kludge for the calculation of mux_rate, so that times displayed in
8286 the scroll bar are now correct for MPEG-2 streams. There is probably a
8287 better way to do it, but I haven't found in months.
8289 ------------------------------------------------------------------------
8290 r991 | massiot | 2001-07-18 19:05:39 +0200 (Wed, 18 Jul 2001) | 3 lines
8291 Changed paths:
8292    A /trunk/doc/developer/.cvsignore
8293    M /trunk/doc/developer/Makefile
8294    M /trunk/doc/developer/decoders.xml
8295    M /trunk/doc/developer/overview.xml
8296    M /trunk/include/config.h.in
8297    M /trunk/src/video_decoder/video_decoder.c
8298    M /trunk/src/video_decoder/vpar_blocks.c
8300 * Updated documentation with recent changes ;
8301 * Decoders are niced again, for it is really better.
8303 ------------------------------------------------------------------------
8304 r992 | massiot | 2001-07-19 13:42:31 +0200 (Thu, 19 Jul 2001) | 2 lines
8305 Changed paths:
8306    M /trunk/AUTHORS
8307    M /trunk/ChangeLog
8308    M /trunk/Makefile.opts.in
8309    M /trunk/TODO
8311 * FreeBSD compilation fix, by ?\239?\191?\189yvind Kolbu.
8313 ------------------------------------------------------------------------
8314 r993 | massiot | 2001-07-19 13:50:51 +0200 (Thu, 19 Jul 2001) | 2 lines
8315 Changed paths:
8316    M /trunk/AUTHORS
8317    M /trunk/ChangeLog
8318    M /trunk/Makefile.opts.in
8319    M /trunk/configure
8320    M /trunk/configure.in
8321    M /trunk/extras/libdvdcss/ioctl.c
8322    M /trunk/include/defs.h.in
8323    A /trunk/plugins/qnx
8324    A /trunk/plugins/qnx/Makefile
8325    A /trunk/plugins/qnx/aout_qnx.c
8326    A /trunk/plugins/qnx/qnx.c
8327    A /trunk/plugins/qnx/vout_qnx.c
8329 * QNX RTOS plug-in by Jon Lech Johansen.
8331 ------------------------------------------------------------------------
8332 r994 | massiot | 2001-07-20 18:20:25 +0200 (Fri, 20 Jul 2001) | 2 lines
8333 Changed paths:
8334    M /trunk/src/input/input_clock.c
8336 Fixed the "paused movie won't restart" bug.
8338 ------------------------------------------------------------------------
8339 r995 | xav | 2001-07-24 11:40:05 +0200 (Tue, 24 Jul 2001) | 5 lines
8340 Changed paths:
8341    M /trunk/Makefile
8344 Quick and ugly hack in the makefile to allow vlc_win32 to compile when
8345 getting it directly from the CVS. As a result, the vlc_win32 program
8346 doesn't have an icon any more. Too bad.
8348 ------------------------------------------------------------------------
8349 r996 | xav | 2001-07-24 13:16:09 +0200 (Tue, 24 Jul 2001) | 4 lines
8350 Changed paths:
8351    M /trunk/Makefile
8354 Removed the changes made ; vlc should compile when following the
8355 instructions in INSTALL-win32.
8357 ------------------------------------------------------------------------
8358 r997 | massiot | 2001-07-24 14:03:00 +0200 (Tue, 24 Jul 2001) | 2 lines
8359 Changed paths:
8360    M /trunk/src/video_decoder/vpar_synchro.c
8362 Tuned constants, since it seems to make people happy.
8364 ------------------------------------------------------------------------
8365 r998 | sam | 2001-07-25 02:23:40 +0200 (Wed, 25 Jul 2001) | 4 lines
8366 Changed paths:
8367    M /trunk/extras/libdvdcss/css.h
8368    M /trunk/extras/libdvdcss/ioctl.c
8369    M /trunk/extras/libdvdcss/libdvdcss.c
8370    M /trunk/extras/libdvdcss/libdvdcss.h
8373   * libdvdcss segfault fixes, at last!
8374      (I really wonder how it could have worked before :)
8376 ------------------------------------------------------------------------
8377 r999 | sam | 2001-07-25 05:12:33 +0200 (Wed, 25 Jul 2001) | 5 lines
8378 Changed paths:
8379    M /trunk/configure
8380    M /trunk/configure.in
8381    M /trunk/plugins/gtk/Makefile
8382    M /trunk/plugins/gtk/gtk_control.c
8383    M /trunk/plugins/gtk/gtk_display.c
8384    M /trunk/plugins/gtk/gtk_menu.c
8385    M /trunk/plugins/gtk/gtk_modules.c
8386    M /trunk/plugins/gtk/gtk_open.c
8387    M /trunk/plugins/gtk/gtk_playlist.c
8388    M /trunk/plugins/gtk/gtk_preferences.c
8389    M /trunk/plugins/text/intf_ncurses.c
8390    M /trunk/plugins/text/ncurses.c
8393   * ncurses compilation fix by Michael Mondragon <mammon@lokmail.net>.
8394   * fix for large inline functions and gcc 3.0.
8395   * fixed the gnome plugin so that it does not include gtk headers.
8397 ------------------------------------------------------------------------
8398 r1000 | sam | 2001-07-25 05:53:19 +0200 (Wed, 25 Jul 2001) | 3 lines
8399 Changed paths:
8400    M /trunk/ChangeLog
8403   * Updated ChangeLog.
8405 ------------------------------------------------------------------------
8406 r1001 | gbazin | 2001-07-25 10:41:22 +0200 (Wed, 25 Jul 2001) | 13 lines
8407 Changed paths:
8408    M /trunk/ChangeLog
8409    M /trunk/extras/libdvdcss/libdvdcss.c
8410    M /trunk/extras/libdvdcss/libdvdcss.h
8411    M /trunk/include/threads.h
8412    M /trunk/plugins/directx/aout_directx.c
8413    M /trunk/plugins/directx/vout_events.c
8414    M /trunk/plugins/dvd/dvd_ifo.c
8415    M /trunk/plugins/idct/vdec_idct.c
8416    M /trunk/plugins/sdl/aout_sdl.c
8419  * dvdcss_readv optimisations for Win32. We now send only one read command
8420    to the DVD drive for the whole iovec.
8421  * Fixed _win32_dvdcss_aread to work around the WinASPI32 64kb transfer
8422    size restriction.
8423  * New and theoretically better Win32 pthread implementation which fixes a
8424    problem I was having when changing title on a DVD (netlist related).
8425    vlc_cond_multicast may or may not work.
8426  * Fixed the "quit" event handling in directx/vout_events.c.
8427  * dvd_ifo.c now takes into account error messages from UDFFindFile.
8428  * Temporarily disabled aout_Probe() in aout_SDL (this function
8429    is creating an awful lot of problems - libSDL bug ).
8431 ------------------------------------------------------------------------
8432 r1002 | sam | 2001-07-25 16:14:38 +0200 (Wed, 25 Jul 2001) | 3 lines
8433 Changed paths:
8434    M /trunk/plugins/gtk/Makefile
8437   * Fixed my latest gnome Makefile breakage.
8439 ------------------------------------------------------------------------
8440 r1003 | bozo | 2001-07-25 16:51:48 +0200 (Wed, 25 Jul 2001) | 2 lines
8441 Changed paths:
8442    M /trunk/src/audio_output/aout_spdif.c
8444 The spdif audio output won't kill itself anymore at the beginning.
8446 ------------------------------------------------------------------------
8447 r1004 | massiot | 2001-07-25 17:37:34 +0200 (Wed, 25 Jul 2001) | 2 lines
8448 Changed paths:
8449    M /trunk/src/video_decoder/vpar_headers.c
8451 Fixed a reinit bug after a discontinuity - such as seek().
8453 ------------------------------------------------------------------------
8454 r1005 | massiot | 2001-07-25 20:06:27 +0200 (Wed, 25 Jul 2001) | 2 lines
8455 Changed paths:
8456    M /trunk/src/video_decoder/vpar_headers.c
8458 Fixed a stupid bug in buffer management with field pictures.
8460 ------------------------------------------------------------------------
8461 r1006 | massiot | 2001-07-25 21:14:06 +0200 (Wed, 25 Jul 2001) | 2 lines
8462 Changed paths:
8463    M /trunk/configure
8464    M /trunk/configure.in
8465    M /trunk/include/defs.h.in
8466    M /trunk/plugins/sdl/aout_sdl.c
8467    M /trunk/plugins/sdl/vout_sdl.c
8469 Now use sdl-config for SDL.
8471 ------------------------------------------------------------------------
8472 r1007 | sam | 2001-07-26 05:13:30 +0200 (Thu, 26 Jul 2001) | 4 lines
8473 Changed paths:
8474    M /trunk/TODO
8475    M /trunk/extras/libdvdcss/css.c
8476    M /trunk/plugins/dummy/input_dummy.c
8477    M /trunk/plugins/yuv/transforms_yuvmmx.h
8480   * Fixed the MMX YUV plugin issues with gcc 2.96 and 3.0.
8481   * Updated TODO, cosmetic changes.
8483 ------------------------------------------------------------------------
8484 r1008 | massiot | 2001-07-26 11:08:57 +0200 (Thu, 26 Jul 2001) | 2 lines
8485 Changed paths:
8486    M /trunk/configure
8487    M /trunk/configure.in
8489 Accept SDL 1.1.5 or later.
8491 ------------------------------------------------------------------------
8492 r1009 | massiot | 2001-07-26 13:36:52 +0200 (Thu, 26 Jul 2001) | 2 lines
8493 Changed paths:
8494    M /trunk/src/video_decoder/vpar_headers.c
8496 (Hopefully) fixed the #@!$ field pictures bug.
8498 ------------------------------------------------------------------------
8499 r1010 | massiot | 2001-07-26 16:53:24 +0200 (Thu, 26 Jul 2001) | 2 lines
8500 Changed paths:
8501    M /trunk/Makefile.opts.in
8503 Now using gcc -pipe.
8505 ------------------------------------------------------------------------
8506 r1011 | reno | 2001-07-26 22:00:33 +0200 (Thu, 26 Jul 2001) | 4 lines
8507 Changed paths:
8508    M /trunk/doc/vlc.1
8509    M /trunk/plugins/imdct/ac3_imdct_3dn.c
8510    M /trunk/plugins/imdct/ac3_imdct_sse.c
8511    M /trunk/plugins/imdct/ac3_srfft_sse.c
8513 * Format asm functions for gcc
8514   -> fixed the segfaults with imdct_sse
8515   -> sound is hugly with imdct_sse in debug mode
8517 ------------------------------------------------------------------------
8518 r1012 | bozo | 2001-07-27 02:49:46 +0200 (Fri, 27 Jul 2001) | 4 lines
8519 Changed paths:
8520    M /trunk/src/ac3_spdif/ac3_spdif.c
8522 Fix a bug in aout spdif with dolby stereo (use of obsolete PTS).
8524 Bozo and Stef : the dream team of bozos. Stef you're gonna die (dunga).
8526 ------------------------------------------------------------------------
8527 r1013 | sam | 2001-07-27 03:05:17 +0200 (Fri, 27 Jul 2001) | 13 lines
8528 Changed paths:
8529    M /trunk/Makefile
8530    M /trunk/Makefile.opts.in
8531    M /trunk/configure
8532    M /trunk/configure.in
8533    M /trunk/extras/libdvdcss/Makefile
8534    M /trunk/extras/libdvdcss/css.c
8535    M /trunk/extras/libdvdcss/libdvdcss.c
8536    M /trunk/plugins/dvd/Makefile
8537    M /trunk/plugins/dvd/dvd.c
8538    M /trunk/plugins/dvd/dvd_summary.c
8539    M /trunk/plugins/dvd/dvd_udf.c
8540    M /trunk/plugins/dvd/input_dvd.c
8543   * Changed libdvdcss API to force binary incompatibility. Yeah, this is
8544     evil, but if we don't do it now we'll have to do it when more people
8545     are using it.
8546   * Fixed minor libdvdcss stuff such as the soname and compilation flags.
8547   * New --with-dvdcss flag.
8548     Explanation:
8549      o default: build libdvdcss, statically link vlc against it.
8550      o --with-dvdcss=no: build libdvdcss, dynamically link vlc against it.
8551      o --with-dvdcss=yes: don't build libdvdcss, use already installed one.
8552      o --with-dvdcss=/foo: don't build libdvdcss, use libdvdcss from /foo/*.
8553     (this looks a bit strange to me, I'll find better flag settings)
8555 ------------------------------------------------------------------------
8556 r1014 | bozo | 2001-07-27 03:19:24 +0200 (Fri, 27 Jul 2001) | 2 lines
8557 Changed paths:
8558    M /trunk/src/ac3_spdif/ac3_spdif.c
8560 Fix another little silly thing.
8562 ------------------------------------------------------------------------
8563 r1015 | massiot | 2001-07-27 11:17:38 +0200 (Fri, 27 Jul 2001) | 2 lines
8564 Changed paths:
8565    M /trunk/src/video_decoder/vpar_blocks.c
8567 Disabled Dual Prime Arithmetic message for the release :-p.
8569 ------------------------------------------------------------------------
8570 r1016 | sam | 2001-07-27 16:43:30 +0200 (Fri, 27 Jul 2001) | 9 lines
8571 Changed paths:
8572    M /trunk/ChangeLog
8573    M /trunk/configure
8574    M /trunk/configure.in
8575    M /trunk/debian/changelog
8576    M /trunk/debian/changelog-css
8577    M /trunk/debian/control
8578    M /trunk/debian/rules
8579    M /trunk/extras/libdvdcss/videolan/dvdcss.h
8580    M /trunk/vlc.spec
8583   * Updated version numbers for imminent release.
8584   * Fixed the --with-dvdcss flag:
8585      o --with-dvdcss - build libdvdcss, link statically (also default behaviour)
8586      o --with-dvdcss=local-static - build libdvdcss, link statically
8587      o --with-dvdcss=local-shared - build libdvdcss, link dynamically
8588      o --with-dvdcss=/foo/bar - don't build libdvdcss, use libdvdcss in /foo/bar
8589   * Fixed an omission in the dvdcss.h header.
8591 ------------------------------------------------------------------------
8592 r1017 | sam | 2001-07-27 18:14:58 +0200 (Fri, 27 Jul 2001) | 3 lines
8593 Changed paths:
8594    M /trunk/ChangeLog
8595    M /trunk/INSTALL
8596    M /trunk/INSTALL-win32.txt
8597    M /trunk/INSTALL.libdvdcss
8598    M /trunk/Makefile
8599    M /trunk/extras/libdvdcss/Makefile
8602   * Added a make uninstall rule.
8604 ------------------------------------------------------------------------
8605 r1018 | sam | 2001-07-27 18:23:14 +0200 (Fri, 27 Jul 2001) | 3 lines
8606 Changed paths:
8607    M /trunk/ChangeLog
8608    M /trunk/configure
8609    M /trunk/configure.in
8612   * Additional fixes to the sdl-config detection.
8614 ------------------------------------------------------------------------
8615 r1019 | massiot | 2001-07-27 18:40:20 +0200 (Fri, 27 Jul 2001) | 2 lines
8616 Changed paths:
8617    M /trunk/plugins/sdl/aout_sdl.c
8618    M /trunk/plugins/sdl/vout_sdl.c
8620 Fixed a FreeBSD bug (again).
8622 ------------------------------------------------------------------------
8623 r1020 | sam | 2001-07-28 04:17:37 +0200 (Sat, 28 Jul 2001) | 5 lines
8624 Changed paths:
8625    M /trunk/ChangeLog
8626    M /trunk/configure
8627    M /trunk/configure.in
8628    M /trunk/debian/changelog
8629    M /trunk/debian/changelog-css
8630    M /trunk/extras/libdvdcss/libdvdcss.c
8631    M /trunk/vlc.spec
8634   * Fix in libdvdcss in the key caching code.
8635   * Removed useless variables in configure.in which caused all subsequent
8636     compilation tests to fail.
8638 ------------------------------------------------------------------------
8639 r1021 | sam | 2001-07-30 00:54:29 +0200 (Mon, 30 Jul 2001) | 5 lines
8640 Changed paths:
8641    M /trunk/ChangeLog
8642    M /trunk/configure
8643    M /trunk/configure.in
8644    M /trunk/vlc.spec
8647   * Better gtk-config detection.
8648   * Removed duplicate checks in configure.in.
8649   * Fixed a typo in vlc.spec.
8651 ------------------------------------------------------------------------
8652 r1022 | sam | 2001-07-30 02:53:05 +0200 (Mon, 30 Jul 2001) | 3 lines
8653 Changed paths:
8654    M /trunk/ChangeLog
8655    M /trunk/configure
8656    M /trunk/configure.in
8657    M /trunk/extras/libdvdcss/libdvdcss.c
8658    M /trunk/include/common.h
8659    M /trunk/plugins/directx/aout_directx.c
8660    M /trunk/plugins/directx/vout_directx.c
8661    M /trunk/plugins/directx/vout_events.c
8662    M /trunk/plugins/dvd/dvd_netlist.c
8663    M /trunk/plugins/dvd/input_dvd.c
8664    M /trunk/plugins/mpeg/input_es.c
8665    M /trunk/plugins/mpeg/input_ts.c
8666    M /trunk/src/input/input_netlist.c
8667    M /trunk/src/interface/main.c
8670   * VC++/Intel compiler fixes by Jon Lech Johansen <jon-vl@nanocrew.net>.
8672 ------------------------------------------------------------------------
8673 r1023 | massiot | 2001-07-30 15:57:46 +0200 (Mon, 30 Jul 2001) | 8 lines
8674 Changed paths:
8675    M /trunk/Makefile
8676    M /trunk/configure
8677    M /trunk/configure.in
8678    M /trunk/include/defs.h.in
8679    M /trunk/plugins/kde/.cvsignore
8680    M /trunk/plugins/kde/Makefile
8681    M /trunk/plugins/sdl/aout_sdl.c
8682    M /trunk/plugins/sdl/vout_sdl.c
8684 * Don't miserably die in `make` when ./configure hasn't be run ;
8685 * Fixed a bug when compiling KDE plug-in without Qt plug-in ;
8686 * Now taking into account $KDEDIR ;
8687 * Made SDL configure error messages more explicit ;
8688 * --disable-sdl is now correctly taken into account ;
8689 * Changed the order of evaluation of sdl-config and sdl11-config ;
8690 * Finally fixed SDL*/SDL.h check ;
8692 ------------------------------------------------------------------------
8693 r1024 | massiot | 2001-07-30 16:13:35 +0200 (Mon, 30 Jul 2001) | 2 lines
8694 Changed paths:
8695    M /trunk/configure
8696    M /trunk/configure.in
8698 * Now use SDL_CFLAGS for searching SDL/SDL.h.
8700 ------------------------------------------------------------------------
8701 r1025 | gbazin | 2001-07-30 20:56:36 +0200 (Mon, 30 Jul 2001) | 7 lines
8702 Changed paths:
8703    M /trunk/extras/libdvdcss/libdvdcss.c
8704    M /trunk/plugins/directx/aout_directx.c
8705    M /trunk/plugins/dvd/input_dvd.c
8706    M /trunk/plugins/x11/vout_xvideo.c
8709 * Fixed a Win32 bug in libdvdcss. This bug was appearing on title change.
8710 * Modified input_dvd so you can now go directly to the selected chapter
8711   when you change the title.
8712 * Implemented the Probe function in the Xvideo plugin. Xvideo is now the
8713   default video output plugin when it is supported.
8715 ------------------------------------------------------------------------
8716 r1026 | gbazin | 2001-07-31 23:13:30 +0200 (Tue, 31 Jul 2001) | 5 lines
8717 Changed paths:
8718    M /trunk/include/threads.h
8719    M /trunk/plugins/mpeg/input_ps.c
8720    M /trunk/src/video_decoder/video_decoder.c
8723 * Fixed a segfault in PSEnd in input_ps.c
8724 * The video decoder thread is now also reniced to a lower priority on
8725   Win32 (as in the linux version). This slightly increases the responsiveness of vlc.
8727 ------------------------------------------------------------------------
8728 r1027 | gbazin | 2001-08-03 18:04:17 +0200 (Fri, 03 Aug 2001) | 10 lines
8729 Changed paths:
8730    M /trunk/plugins/x11/vout_x11.c
8731    M /trunk/plugins/x11/vout_xvideo.c
8732    M /trunk/plugins/yuv/video_yuvmmx.c
8735 * Fixed a segfault in yuv_End() in video_yuvmmx.c
8736 * Fixed the "Gdk-ERROR **: BadCursor" bug in the x11 and xvideo plugins
8737 * Fixed a segfault in SetBufferPicture() in video_output.c. This segfault
8738     only happened with the xvideo plugin because this one is not using
8739     SetBuffers().
8741 PS: The last fix broke the overlay output of SDL (black screen) I will
8742   investigate this later on.
8744 ------------------------------------------------------------------------
8745 r1028 | gbazin | 2001-08-03 20:03:32 +0200 (Fri, 03 Aug 2001) | 3 lines
8746 Changed paths:
8747    M /trunk/src/video_output/video_output.c
8750 Oops, forgot to commit this file.
8752 ------------------------------------------------------------------------
8753 r1029 | gbazin | 2001-08-05 17:32:47 +0200 (Sun, 05 Aug 2001) | 7 lines
8754 Changed paths:
8755    M /trunk/plugins/directx/aout_directx.c
8756    M /trunk/plugins/directx/vout_directx.c
8757    M /trunk/plugins/x11/vout_xvideo.c
8758    M /trunk/src/ac3_decoder/ac3_decoder_thread.c
8759    M /trunk/src/ac3_decoder/ac3_decoder_thread.h
8760    M /trunk/src/input/input.c
8761    M /trunk/src/interface/main.c
8762    M /trunk/src/video_output/video_text.c
8765 * Big rewrite of the DirectX audio plugin. The audio output is now (almost)
8766     perfect on Win32.
8767 * Fixed a bug in ac3dec_CreateThread() in ac3_decoder_thread.
8768 * On Win32, open() will now open files in binary mode by default.
8769 * A few minor changes to vout_xvideo.c
8771 ------------------------------------------------------------------------
8772 r1030 | gbazin | 2001-08-05 20:57:59 +0200 (Sun, 05 Aug 2001) | 3 lines
8773 Changed paths:
8774    M /trunk/plugins/directx/aout_directx.c
8777 * Minor bug fix to aout_directx.c
8779 ------------------------------------------------------------------------
8780 r1031 | sam | 2001-08-06 15:13:06 +0200 (Mon, 06 Aug 2001) | 5 lines
8781 Changed paths:
8782    M /trunk/plugins/text/intf_rc.c
8783    M /trunk/src/spu_decoder/spu_decoder.c
8786   * Made the remote command plugin usable even with no stream.
8787   * Fixed a deadlock in the remote command plugin.
8788   * Fixed a deadlock in the SPU decoder.
8790 ------------------------------------------------------------------------
8791 r1032 | sam | 2001-08-06 15:28:01 +0200 (Mon, 06 Aug 2001) | 12 lines
8792 Changed paths:
8793    M /trunk/AUTHORS
8794    M /trunk/Makefile
8795    M /trunk/Makefile.opts.in
8796    A /trunk/README.libdvdcss
8797    M /trunk/configure
8798    M /trunk/configure.in
8799    D /trunk/debian/changelog-css
8800    M /trunk/debian/control
8801    D /trunk/debian/control-css
8802    A /trunk/debian/libdvdcss0.0.2-dev.dirs
8803    A /trunk/debian/libdvdcss0.0.2.dirs
8804    A /trunk/debian/libdvdcss0.0.2.docs
8805    M /trunk/debian/rules
8806    D /trunk/debian/rules-css
8807    M /trunk/debian/vlc.dirs
8808    M /trunk/extras/libdvdcss/Makefile
8809    M /trunk/extras/libdvdcss/css.c
8810    M /trunk/extras/libdvdcss/ioctl.c
8811    M /trunk/extras/libdvdcss/libdvdcss.c
8812    M /trunk/include/defs.h.in
8813    M /trunk/plugins/alsa/Makefile
8814    M /trunk/plugins/beos/Makefile
8815    M /trunk/plugins/darwin/Makefile
8816    M /trunk/plugins/directx/Makefile
8817    M /trunk/plugins/downmix/Makefile
8818    M /trunk/plugins/dsp/Makefile
8819    M /trunk/plugins/dummy/Makefile
8820    M /trunk/plugins/dvd/Makefile
8821    A /trunk/plugins/dvd/dummy_dvdcss.c
8822    A /trunk/plugins/dvd/dummy_dvdcss.h
8823    M /trunk/plugins/dvd/dvd.c
8824    M /trunk/plugins/dvd/dvd_ifo.c
8825    M /trunk/plugins/dvd/dvd_summary.c
8826    M /trunk/plugins/dvd/dvd_udf.c
8827    M /trunk/plugins/dvd/input_dvd.c
8828    M /trunk/plugins/esd/Makefile
8829    M /trunk/plugins/fb/Makefile
8830    M /trunk/plugins/ggi/Makefile
8831    M /trunk/plugins/glide/Makefile
8832    M /trunk/plugins/gtk/Makefile
8833    M /trunk/plugins/idct/Makefile
8834    M /trunk/plugins/imdct/Makefile
8835    M /trunk/plugins/kde/Makefile
8836    M /trunk/plugins/macosx/Makefile
8837    M /trunk/plugins/mga/Makefile
8838    M /trunk/plugins/motion/Makefile
8839    M /trunk/plugins/mpeg/Makefile
8840    M /trunk/plugins/qnx/Makefile
8841    M /trunk/plugins/qt/Makefile
8842    M /trunk/plugins/sdl/Makefile
8843    M /trunk/plugins/text/Makefile
8844    M /trunk/plugins/x11/Makefile
8845    M /trunk/plugins/yuv/Makefile
8846    M /trunk/vlc.spec
8849   * Added a dummy libdvdcss so that the DVD plugin can be used without
8850     libdvdcss. It will try to dlopen() libdvdcss at runtime, though,
8851     and will use the dummy functions only if it couldn't find a valid
8852     libdvdcss. This is probably only useful to package maintainers.
8854   * Tidied the snapshot-* Makefile rules.
8855   * Tidied the modules Makefiles.
8856   * Removed useless stuff in the debian/ directory.
8857   * Removed the "make all" kludge in the Makefile.opts rule. I hope this
8858     patch is harmless on all systems.
8860 ------------------------------------------------------------------------
8861 r1033 | sam | 2001-08-06 15:46:54 +0200 (Mon, 06 Aug 2001) | 3 lines
8862 Changed paths:
8863    M /trunk/debian/.cvsignore
8864    A /trunk/debian/libdvdcss0.0.2.copyright
8865    M /trunk/debian/rules
8868   * libdvdcss* packages are now a bit more policy-compliant.
8870 ------------------------------------------------------------------------
8871 r1034 | gbazin | 2001-08-06 22:45:55 +0200 (Mon, 06 Aug 2001) | 3 lines
8872 Changed paths:
8873    M /trunk/plugins/sdl/vout_sdl.c
8876 * Fixed the sdl video output plugin that I broke 2 days ago.
8878 ------------------------------------------------------------------------
8879 r1035 | sam | 2001-08-07 04:48:25 +0200 (Tue, 07 Aug 2001) | 8 lines
8880 Changed paths:
8881    M /trunk/Makefile
8882    M /trunk/Makefile.dep
8883    M /trunk/Makefile.opts.in
8884    M /trunk/configure
8885    M /trunk/configure.in
8886    M /trunk/extras/libdvdcss/Makefile
8887    M /trunk/extras/libdvdcss/ioctl.c
8888    M /trunk/include/defs.h.in
8889    M /trunk/plugins/dvd/dvd.c
8890    M /trunk/plugins/mpeg/input_ps.c
8891    M /trunk/src/interface/main.c
8894   * Got Makefile to launch ./configure almost properly. $(MAKECMDGOALS) rules !
8895   * Various debian scripts fixes.
8896   * Added -lmsvcrt40 to the win32 flags for proper execution under Wine.
8897   * Fixed broken soname setting under Solaris (and OS X, sort of).
8898   * Made the illegal instruction report more explicit.
8899   * BSD/OS 4.3beta1 fixes by Steven M. Schultz <sms@TO.GD-ES.COM>.
8901 ------------------------------------------------------------------------
8902 r1036 | sam | 2001-08-07 12:54:51 +0200 (Tue, 07 Aug 2001) | 5 lines
8903 Changed paths:
8904    M /trunk/AUTHORS
8905    M /trunk/ChangeLog
8906    M /trunk/Makefile.dep
8907    M /trunk/configure
8908    M /trunk/configure.in
8909    M /trunk/debian/changelog
8910    M /trunk/debian/control
8911    M /trunk/vlc.spec
8914   * Updated version number to 0.2.82.
8915   * Updated ChangeLog.
8916   * Fixed a typo in Makefile.dep.
8918 ------------------------------------------------------------------------
8919 r1037 | sam | 2001-08-08 04:48:44 +0200 (Wed, 08 Aug 2001) | 3 lines
8920 Changed paths:
8921    M /trunk/AUTHORS
8922    M /trunk/ChangeLog
8923    M /trunk/configure
8924    M /trunk/configure.in
8925    M /trunk/extras/libdvdcss/ioctl.c
8926    M /trunk/extras/libdvdcss/ioctl.h
8927    M /trunk/include/defs.h.in
8930   * Solaris DVD decryption support by H}kan Hjort <d95hjort@dtek.chalmers.se>.
8932 ------------------------------------------------------------------------
8933 r1038 | sam | 2001-08-09 10:20:26 +0200 (Thu, 09 Aug 2001) | 11 lines
8934 Changed paths:
8935    M /trunk/AUTHORS
8936    M /trunk/ChangeLog
8937    M /trunk/Makefile
8938    M /trunk/extras/libdvdcss/ioctl.c
8939    M /trunk/include/modules_export.h
8940    M /trunk/plugins/dummy/input_dummy.c
8941    M /trunk/plugins/gtk/gtk_display.c
8942    M /trunk/src/input/input.c
8943    M /trunk/src/interface/intf_playlist.c
8946   * Fixed a bug in the gtk interface which caused vlc to go amok after
8947     having met a zero-sized area.
8948   * Found out how to type '?\239?\191?\189' in vim :-)
8949   * Added missing bloat to modules_export.h.
8950   * 'snapshot*' rules do not depend on 'clean', and don't use /tmp anymore.
8951   * Added vlc:loop playlist command to go back at the beginning.
8952     Usage: vlc file1.mpeg file2.mpeg ... fileN.mpeg vlc:loop
8953     This change isn't very elegant but there are already bugs in the
8954     playlist handling, I'll try to polish it once the playlist is fixed.
8956 ------------------------------------------------------------------------
8957 r1039 | jlj | 2001-08-09 22:16:17 +0200 (Thu, 09 Aug 2001) | 2 lines
8958 Changed paths:
8959    M /trunk/plugins/dvd/dvd_ifo.c
8960    M /trunk/plugins/dvd/dvd_netlist.c
8961    M /trunk/plugins/dvd/input_dvd.c
8962    M /trunk/src/input/input_programs.c
8964 Fixed a memory leak in the ifo parser and input_EndStream
8966 ------------------------------------------------------------------------
8967 r1040 | sam | 2001-08-10 01:12:36 +0200 (Fri, 10 Aug 2001) | 9 lines
8968 Changed paths:
8969    M /trunk/ChangeLog
8970    M /trunk/Makefile
8971    M /trunk/Makefile.opts.in
8972    M /trunk/configure
8973    M /trunk/configure.in
8974    M /trunk/debian/control
8975    D /trunk/debian/libdvdcss0.0.2-dev.dirs
8976    D /trunk/debian/libdvdcss0.0.2.copyright
8977    D /trunk/debian/libdvdcss0.0.2.dirs
8978    D /trunk/debian/libdvdcss0.0.2.docs
8979    A /trunk/debian/libdvdcss0.0.3-dev.dirs
8980    A /trunk/debian/libdvdcss0.0.3.copyright
8981    A /trunk/debian/libdvdcss0.0.3.dirs
8982    A /trunk/debian/libdvdcss0.0.3.docs
8983    M /trunk/debian/rules
8984    A /trunk/extras/BSDI_dvdioctl
8985    A /trunk/extras/BSDI_dvdioctl/COPYING
8986    A /trunk/extras/BSDI_dvdioctl/Makefile
8987    A /trunk/extras/BSDI_dvdioctl/blkreset.c
8988    A /trunk/extras/BSDI_dvdioctl/dvd.h
8989    A /trunk/extras/BSDI_dvdioctl/dvdioctl.c
8990    M /trunk/extras/libdvdcss/Makefile
8991    M /trunk/extras/libdvdcss/ioctl.c
8994   * Added BSD/OS libdvd by Steven M. Schultz <sms@TO.GD-ES.COM> in
8995     extras/BSDI_dvdioctl after he suggested it. License is GPL.
8996   * ./configure now checks for an installed libdvd under BSD/OS and
8997     falls back to ours if not found.
8998   * Fixed harmless typos in yesterday's Solaris libdvd patches.
8999   * Bumped libdvdcss version number up to 0.0.3 ; release will probably
9000     follow once the BSDI changes have been tested.
9002 ------------------------------------------------------------------------
9003 r1041 | massiot | 2001-08-10 18:38:09 +0200 (Fri, 10 Aug 2001) | 2 lines
9004 Changed paths:
9005    M /trunk/plugins/mpeg/input_ps.c
9007 Fixed a bug in System End Code handling. Contact me in case of problem.
9009 ------------------------------------------------------------------------
9010 r1042 | sam | 2001-08-10 18:38:59 +0200 (Fri, 10 Aug 2001) | 4 lines
9011 Changed paths:
9012    M /trunk/ChangeLog
9013    M /trunk/Makefile.opts.in
9014    M /trunk/configure
9015    M /trunk/configure.in
9016    M /trunk/debian/control
9017    M /trunk/plugins/dvd/Makefile
9020   * Added proper Conflicts: rules in debian/control.
9021   * configure.in fixes for BSD/OS.
9023 ------------------------------------------------------------------------
9024 r1043 | massiot | 2001-08-10 19:14:11 +0200 (Fri, 10 Aug 2001) | 2 lines
9025 Changed paths:
9026    M /trunk/configure
9027    M /trunk/configure.in
9029 Added --with-sdl-config-path option if you sdl-config is not in $PATH.
9031 ------------------------------------------------------------------------
9032 r1044 | sam | 2001-08-10 19:43:50 +0200 (Fri, 10 Aug 2001) | 3 lines
9033 Changed paths:
9034    M /trunk/configure
9035    M /trunk/configure.in
9036    M /trunk/extras/libdvdcss/ioctl.c
9037    M /trunk/include/defs.h.in
9040   * Another mistake in the BSD/OS configuration process.
9042 ------------------------------------------------------------------------
9043 r1045 | sam | 2001-08-10 19:53:48 +0200 (Fri, 10 Aug 2001) | 3 lines
9044 Changed paths:
9045    M /trunk/extras/libdvdcss/Makefile
9048   * Another stupid typo (hope I got it right this time :p).
9050 ------------------------------------------------------------------------
9051 r1046 | sam | 2001-08-13 14:24:58 +0200 (Mon, 13 Aug 2001) | 4 lines
9052 Changed paths:
9053    M /trunk/debian/control
9054    A /trunk/debian/vlc-alsa.dirs
9055    A /trunk/debian/vlc-esd.dirs
9056    A /trunk/debian/vlc-ggi.dirs
9057    A /trunk/debian/vlc-glide.dirs
9058    A /trunk/debian/vlc-gnome.dirs
9059    A /trunk/debian/vlc-gtk.dirs
9060    A /trunk/debian/vlc-qt.dirs
9061    A /trunk/debian/vlc-sdl.dirs
9064   * Added missing debian files I forgot to add a long time ago.
9065   * Fixed libglide2/libglide3 inconsistency in debian/control.
9067 ------------------------------------------------------------------------
9068 r1047 | sam | 2001-08-14 02:00:04 +0200 (Tue, 14 Aug 2001) | 5 lines
9069 Changed paths:
9070    M /trunk/ChangeLog
9071    M /trunk/src/video_output/video_output.c
9074   * Fixed a crash in subtitle rendering.
9075   * Activated old crappy subtitle rendering in overlay mode (ugly but
9076     probably better than having no subtitles at all).
9078 ------------------------------------------------------------------------
9079 r1048 | sam | 2001-08-14 06:52:39 +0200 (Tue, 14 Aug 2001) | 3 lines
9080 Changed paths:
9081    M /trunk/ChangeLog
9082    M /trunk/configure
9083    M /trunk/configure.in
9084    M /trunk/include/common.h
9085    M /trunk/include/defs.h.in
9086    M /trunk/include/threads.h
9087    M /trunk/plugins/mpeg/input_ps.c
9090   * GNU/Hurd configuration and compilation fixes.
9092 ------------------------------------------------------------------------
9093 r1049 | tcastley | 2001-08-14 14:09:03 +0200 (Tue, 14 Aug 2001) | 3 lines
9094 Changed paths:
9095    M /trunk/plugins/beos/VideoWindow.h
9096    M /trunk/plugins/beos/vout_beos.cpp
9098 Rewritten vout for BeOS.  Now does not support overlay however code is simpler
9099 and easier to implement overlay and DirectWindow.
9101 ------------------------------------------------------------------------
9102 r1050 | sam | 2001-08-14 19:53:23 +0200 (Tue, 14 Aug 2001) | 3 lines
9103 Changed paths:
9104    M /trunk/configure
9105    M /trunk/configure.in
9108   * Fixed yesterday's pthread detection fix.
9110 ------------------------------------------------------------------------
9111 r1051 | jlj | 2001-08-17 03:26:45 +0200 (Fri, 17 Aug 2001) | 3 lines
9112 Changed paths:
9113    M /trunk/plugins/qnx/aout_qnx.c
9114    M /trunk/plugins/qnx/vout_qnx.c
9117   * Overlay now works under latest QNX release.
9119 ------------------------------------------------------------------------
9120 r1052 | sam | 2001-08-20 01:35:13 +0200 (Mon, 20 Aug 2001) | 7 lines
9121 Changed paths:
9122    M /trunk/ChangeLog
9123    M /trunk/Makefile.opts.in
9124    M /trunk/configure
9125    M /trunk/configure.in
9126    M /trunk/include/threads.h
9129   * Added support in ./configure for the cprof profiler.
9130   * Activated -D_FILE_OFFSET_BITS=64 -D__USE_UNIX98 on all platforms, fixes
9131     issues under Solaris and QNX.
9132   * Additional checks for SSE-specific (non-MMXEXT) instructions, as
9133     reported in <20010817114220.A23480@slartibartfast.angrypacket.com>.
9135 ------------------------------------------------------------------------
9136 r1053 | jlj | 2001-08-20 03:03:28 +0200 (Mon, 20 Aug 2001) | 4 lines
9137 Changed paths:
9138    M /trunk/plugins/qnx/aout_qnx.c
9141   * Switched QNX audio output to block mode as stream mode is no
9142     longer supported under the latest QNX release.
9144 ------------------------------------------------------------------------
9145 r1054 | sam | 2001-08-22 16:23:57 +0200 (Wed, 22 Aug 2001) | 5 lines
9146 Changed paths:
9147    M /trunk/ChangeLog
9148    A /trunk/ChangeLog.libdvdcss
9149    M /trunk/Makefile
9150    M /trunk/TODO
9151    M /trunk/configure.in
9152    M /trunk/debian/changelog
9153    M /trunk/debian/control
9154    M /trunk/debian/libdvdcss0.0.3.copyright
9155    M /trunk/debian/rules
9156    M /trunk/debian/vlc.copyright
9157    M /trunk/doc/vlc.1
9158    M /trunk/include/config.h.in
9159    M /trunk/plugins/x11/vout_xvideo.c
9160    M /trunk/src/interface/main.c
9161    M /trunk/vlc.spec
9164   * Split ChangeLog into ChangeLog and ChangeLog.libdvdcss.
9165   * Added --xvadaptor flag to select the XVideo adaptor to use.
9166   * Everything is ready for the 0.2.83 release.
9168 ------------------------------------------------------------------------
9169 r1055 | sam | 2001-08-22 17:16:02 +0200 (Wed, 22 Aug 2001) | 3 lines
9170 Changed paths:
9171    M /trunk/ChangeLog.libdvdcss
9174   * Grmbl. Forgot to update the libdvdcss changelog.
9176 ------------------------------------------------------------------------
9177 r1056 | massiot | 2001-08-22 19:21:46 +0200 (Wed, 22 Aug 2001) | 8 lines
9178 Changed paths:
9179    M /trunk/AUTHORS
9180    M /trunk/configure
9181    M /trunk/configure.in
9182    D /trunk/include/attributes.h
9183    M /trunk/include/common.h
9184    M /trunk/include/defs.h.in
9185    M /trunk/include/input_ext-dec.h
9186    M /trunk/include/modules.h
9187    M /trunk/include/vdec_ext-plugins.h
9188    M /trunk/include/video.h
9189    M /trunk/plugins/idct/idct.c
9190    M /trunk/plugins/idct/idctaltivec.c
9191    M /trunk/plugins/idct/idctclassic.c
9192    M /trunk/plugins/idct/idctmmx.c
9193    M /trunk/plugins/idct/idctmmxext.c
9194    D /trunk/plugins/idct/vdec_block.h
9195    M /trunk/plugins/idct/vdec_block_c.c
9196    M /trunk/plugins/idct/vdec_block_mmx.c
9197    M /trunk/plugins/idct/vdec_idct.c
9198    M /trunk/plugins/idct/vdec_idct.h
9199    M /trunk/plugins/motion/Makefile
9200    M /trunk/plugins/motion/motion.c
9201    A /trunk/plugins/motion/motion3dnow.c
9202    M /trunk/plugins/motion/motionmmx.c
9203    M /trunk/plugins/motion/motionmmxext.c
9204    D /trunk/plugins/motion/vdec_motion_common.c
9205    D /trunk/plugins/motion/vdec_motion_inner.c
9206    D /trunk/plugins/motion/vdec_motion_inner_mmx.c
9207    D /trunk/plugins/motion/vdec_motion_inner_mmxext.c
9208    M /trunk/src/ac3_decoder/ac3_parse.c
9209    M /trunk/src/audio_decoder/audio_decoder.c
9210    M /trunk/src/input/input_ext-dec.c
9211    M /trunk/src/video_decoder/video_decoder.c
9212    M /trunk/src/video_decoder/video_decoder.h
9213    M /trunk/src/video_decoder/video_parser.c
9214    M /trunk/src/video_decoder/video_parser.h
9215    M /trunk/src/video_decoder/vpar_blocks.c
9216    A /trunk/src/video_decoder/vpar_blocks.h
9217    M /trunk/src/video_decoder/vpar_headers.c
9218    M /trunk/src/video_decoder/vpar_pool.c
9219    M /trunk/src/video_decoder/vpar_pool.h
9221 * Totally rewrote the video decoder (inspired by walken's mpeg2dec), implying :
9222 - performance boost ;
9223 - fixed the "Dual Prime Arithmetic" bug ;
9224 - 3DNow! motion compensation module ;
9225 * BTW, fixed numerous bugs ;
9226 * AC3dec statistics do not show up with --enable-stats, because I doubt
9227 they're understandable by a normal human being, and they pollute the output.
9229 ------------------------------------------------------------------------
9230 r1057 | massiot | 2001-08-22 20:47:52 +0200 (Wed, 22 Aug 2001) | 3 lines
9231 Changed paths:
9232    A /trunk/doc/web-streaming.html
9234 * Added a documentation to use VLC as a netscape plug-in and do some
9235 (buggy) web streaming.
9237 ------------------------------------------------------------------------
9238 r1058 | gbazin | 2001-08-22 23:18:43 +0200 (Wed, 22 Aug 2001) | 4 lines
9239 Changed paths:
9240    M /trunk/Makefile.opts.in
9241    M /trunk/src/video_output/video_output.c
9244 - The win32 port is once again using msvcrt.dll instead of msvcrt40.dll
9245 - Fixed a synchro bug (typo) in video_output.c
9247 ------------------------------------------------------------------------
9248 r1059 | massiot | 2001-08-23 12:08:26 +0200 (Thu, 23 Aug 2001) | 2 lines
9249 Changed paths:
9250    M /trunk/src/video_decoder/vpar_blocks.c
9252 Very small enhancements.
9254 ------------------------------------------------------------------------
9255 r1060 | massiot | 2001-08-23 15:24:38 +0200 (Thu, 23 Aug 2001) | 4 lines
9256 Changed paths:
9257    M /trunk/Makefile.opts.in
9258    M /trunk/configure
9259    M /trunk/configure.in
9261 Removed /usr/local/include, because it is unsafe in a cross-compilation
9262 environment. If you have problems with this, tell me and we'll find an
9263 alternate solution.
9265 ------------------------------------------------------------------------
9266 r1061 | sam | 2001-08-23 17:39:46 +0200 (Thu, 23 Aug 2001) | 3 lines
9267 Changed paths:
9268    M /trunk/ChangeLog.libdvdcss
9269    M /trunk/configure
9270    M /trunk/configure.in
9273   * Attempt to fix the SDL detection under *BSD.
9275 ------------------------------------------------------------------------
9276 r1062 | massiot | 2001-08-24 11:20:05 +0200 (Fri, 24 Aug 2001) | 2 lines
9277 Changed paths:
9278    M /trunk/extras/libdvdcss/Makefile
9280 Install doesn't explode if libdvdcss hasn't been compiled.
9282 ------------------------------------------------------------------------
9283 r1063 | sam | 2001-08-24 12:51:53 +0200 (Fri, 24 Aug 2001) | 4 lines
9284 Changed paths:
9285    M /trunk/Makefile
9286    M /trunk/debian/changelog
9287    M /trunk/debian/control
9288    M /trunk/debian/rules
9291   * Fixed build dependencies for architectures not supporting libasound2
9292     (Closes Debian bug #109722).
9294 ------------------------------------------------------------------------
9295 r1064 | massiot | 2001-08-24 18:28:49 +0200 (Fri, 24 Aug 2001) | 4 lines
9296 Changed paths:
9297    M /trunk/plugins/dsp/aout_dsp.c
9299 * Removed O_NONBLCK in aout_Play because we don't use it and some drivers
9300 (e.g. have problems with this) ;
9301 * Added warning messages.
9303 ------------------------------------------------------------------------
9304 r1065 | massiot | 2001-08-27 18:13:20 +0200 (Mon, 27 Aug 2001) | 2 lines
9305 Changed paths:
9306    M /trunk/AUTHORS
9307    M /trunk/plugins/mpeg/input_ts.c
9308    M /trunk/src/input/input.c
9310 IP Multicast support, courtesy of Mathias Kretschmer <mathias@research.att.com>.
9312 ------------------------------------------------------------------------
9313 r1066 | jlj | 2001-09-05 01:21:34 +0200 (Wed, 05 Sep 2001) | 2 lines
9314 Changed paths:
9315    M /trunk/src/video_decoder/vpar_blocks.c
9317   * Fixed a problem with field streams not working with new video decoder.
9319 ------------------------------------------------------------------------
9320 r1067 | massiot | 2001-09-05 18:07:50 +0200 (Wed, 05 Sep 2001) | 5 lines
9321 Changed paths:
9322    M /trunk/AUTHORS
9323    M /trunk/Makefile.opts.in
9324    M /trunk/configure
9325    M /trunk/configure.in
9326    M /trunk/include/input_ext-intf.h
9327    M /trunk/include/modules.h
9328    M /trunk/include/vdec_ext-plugins.h
9329    M /trunk/plugins/idct/Makefile
9330    A /trunk/plugins/idct/block_c.h
9331    A /trunk/plugins/idct/block_mmx.h
9332    M /trunk/plugins/idct/idct.c
9333    A /trunk/plugins/idct/idct.h
9334    A /trunk/plugins/idct/idct_decl.h
9335    A /trunk/plugins/idct/idct_sparse.h
9336    A /trunk/plugins/idct/idctaltivec.S
9337    M /trunk/plugins/idct/idctaltivec.c
9338    D /trunk/plugins/idct/idctaltivec.h
9339    M /trunk/plugins/idct/idctclassic.c
9340    M /trunk/plugins/idct/idctmmx.c
9341    M /trunk/plugins/idct/idctmmxext.c
9342    D /trunk/plugins/idct/vdec_block_c.c
9343    D /trunk/plugins/idct/vdec_block_mmx.c
9344    D /trunk/plugins/idct/vdec_idct.c
9345    D /trunk/plugins/idct/vdec_idct.h
9346    M /trunk/plugins/motion/Makefile
9347    M /trunk/plugins/motion/motion3dnow.c
9348    A /trunk/plugins/motion/motionaltivec.c
9349    M /trunk/src/input/input_clock.c
9350    M /trunk/src/interface/main.c
9351    M /trunk/src/video_decoder/video_decoder.c
9352    M /trunk/src/video_decoder/video_parser.c
9353    M /trunk/src/video_decoder/video_parser.h
9354    M /trunk/src/video_decoder/vpar_blocks.c
9355    M /trunk/src/video_decoder/vpar_pool.h
9357 * Altivec IDCT and motion compensation, based on Paul Mackerras's mpeg2dec
9358 (untested !) ;
9359 * Local minor optimizations in IDCT ;
9360 * Removed a hopeless kludge in input_clock.c
9362 ------------------------------------------------------------------------
9363 r1068 | massiot | 2001-09-05 18:20:23 +0200 (Wed, 05 Sep 2001) | 2 lines
9364 Changed paths:
9365    M /trunk/plugins/idct/Makefile
9366    D /trunk/plugins/idct/idctaltivec.S
9367    A /trunk/plugins/idct/idctaltivecasm.S
9369 * Fixed a compilation bug.
9371 ------------------------------------------------------------------------
9372 r1069 | massiot | 2001-09-05 18:46:10 +0200 (Wed, 05 Sep 2001) | 5 lines
9373 Changed paths:
9374    M /trunk/src/ac3_decoder/ac3_decoder_thread.c
9375    M /trunk/src/audio_decoder/adec_generic.c
9377 * MPEG audio emphasis fix, courtesy of Matthieu Lochegnies
9378 <lochegm1@cti.ecp.fr> ;
9379 * ac3dec uninitialized data structure fix, courtesy of Damian Ivereigh
9380 <damian@cisco.com>.
9382 ------------------------------------------------------------------------
9383 r1070 | henri | 2001-09-06 06:28:36 +0200 (Thu, 06 Sep 2001) | 2 lines
9384 Changed paths:
9385    M /trunk/ChangeLog
9386    M /trunk/src/lpcm_decoder/lpcm_decoder_thread.c
9388 A very tiny small useless optimization in the LPCM decoder
9390 ------------------------------------------------------------------------
9391 r1071 | henri | 2001-09-06 09:31:39 +0200 (Thu, 06 Sep 2001) | 3 lines
9392 Changed paths:
9393    M /trunk/ChangeLog
9394    M /trunk/configure
9395    M /trunk/configure.in
9397 Added gnome.h check and cleaned the error messages in the configure
9398 script
9400 ------------------------------------------------------------------------
9401 r1072 | massiot | 2001-09-06 12:19:18 +0200 (Thu, 06 Sep 2001) | 2 lines
9402 Changed paths:
9403    M /trunk/plugins/idct/idct.c
9404    M /trunk/plugins/idct/idctaltivec.c
9405    M /trunk/plugins/idct/idctclassic.c
9406    M /trunk/plugins/idct/idctmmx.c
9407    M /trunk/plugins/idct/idctmmxext.c
9409 Fixed a warning.
9411 ------------------------------------------------------------------------
9412 r1073 | massiot | 2001-09-06 12:39:10 +0200 (Thu, 06 Sep 2001) | 2 lines
9413 Changed paths:
9414    M /trunk/Makefile
9415    M /trunk/configure
9416    M /trunk/configure.in
9417    M /trunk/plugins/idct/Makefile
9418    M /trunk/plugins/motion/Makefile
9420 Fixed numerous bugs with the Altivec IDCT (still not compiling).
9422 ------------------------------------------------------------------------
9423 r1074 | massiot | 2001-09-06 15:16:26 +0200 (Thu, 06 Sep 2001) | 2 lines
9424 Changed paths:
9425    M /trunk/src/video_decoder/vpar_blocks.c
9426    M /trunk/src/video_decoder/vpar_headers.c
9428 Reworked jlj's patch for field pictures.
9430 ------------------------------------------------------------------------
9431 r1075 | massiot | 2001-09-06 15:24:21 +0200 (Thu, 06 Sep 2001) | 2 lines
9432 Changed paths:
9433    M /trunk/configure
9434    M /trunk/configure.in
9436 Another fix for the altivec detection.
9438 ------------------------------------------------------------------------
9439 r1076 | massiot | 2001-09-06 16:02:56 +0200 (Thu, 06 Sep 2001) | 2 lines
9440 Changed paths:
9441    M /trunk/plugins/idct/idctmmx.c
9442    M /trunk/plugins/idct/idctmmxext.c
9443    M /trunk/plugins/motion/motion.c
9444    M /trunk/plugins/motion/motion3dnow.c
9445    M /trunk/plugins/motion/motionaltivec.c
9446    M /trunk/plugins/motion/motionmmx.c
9447    M /trunk/plugins/motion/motionmmxext.c
9449 Various fixes for GCC 3.0.
9451 ------------------------------------------------------------------------
9452 r1077 | henri | 2001-09-06 20:21:02 +0200 (Thu, 06 Sep 2001) | 7 lines
9453 Changed paths:
9454    M /trunk/ChangeLog
9455    M /trunk/plugins/mpeg/input_ts.c
9456    M /trunk/src/input/input_netlist.c
9457    M /trunk/src/input/mpeg_system.c
9459 - Fixed a netlist packet leak in demuxPSI (Mark Gritter <mgritter@kealia.com>).
9461 - Removed the nuts message "unable to allocate memory" when the netlist got
9462 empty.
9464 - Cosmetic changes.
9466 ------------------------------------------------------------------------
9467 r1078 | sam | 2001-09-09 15:43:25 +0200 (Sun, 09 Sep 2001) | 15 lines
9468 Changed paths:
9469    M /trunk/AUTHORS
9470    M /trunk/ChangeLog
9471    M /trunk/ChangeLog.libdvdcss
9472    M /trunk/debian/changelog
9473    M /trunk/debian/control
9474    M /trunk/extras/libdvdcss/css.c
9475    M /trunk/extras/libdvdcss/libdvdcss.c
9476    M /trunk/extras/libdvdcss/libdvdcss.h
9477    M /trunk/plugins/text/intf_ncurses.c
9480  Changes to vlc:
9482   * Fixed arch-dependant build dependencies (Closes Debian bug #109722).
9483   * Minor changes to the (non-working) ncurses interface.
9485  Changes to libdvdcss (courtesy of H?\239?\191?\189kan Hjort <d95hjort@dtek.chalmers.se>):
9487   * If we see 3000 unencrypted blocks assume that the title is unencrypted.
9488   * If we have not seen any encrypted block and then discover that the block
9489     just read is not a valid block of an MPEG2 Program stream, assume that the
9490     title is unencrypted.
9491   * Empty keys (for unscrambled sectors) are now cached as well.
9492   * We try to decrypt the file even if DVD ioctls are not available.
9494 ------------------------------------------------------------------------
9495 r1079 | massiot | 2001-09-12 00:22:31 +0200 (Wed, 12 Sep 2001) | 2 lines
9496 Changed paths:
9497    M /trunk/plugins/idct/idctaltivec.c
9498    M /trunk/plugins/motion/motionaltivec.c
9500 Fixed typos, courtesy of Michel Lanners <mlan@cpu.lu>
9502 ------------------------------------------------------------------------
9503 r1080 | tcastley | 2001-09-12 03:30:07 +0200 (Wed, 12 Sep 2001) | 5 lines
9504 Changed paths:
9505    M /trunk/plugins/beos/InterfaceWindow.cpp
9506    M /trunk/plugins/beos/VideoWindow.h
9507    M /trunk/plugins/beos/vout_beos.cpp
9509 Fixed the slider overflow problem.
9510 Corrected Slider behaviour.
9511 Simplified Code in the vout_beos ready for another developer to implement
9512 more advanced video output.
9514 ------------------------------------------------------------------------
9515 r1081 | tcastley | 2001-09-12 03:31:37 +0200 (Wed, 12 Sep 2001) | 3 lines
9516 Changed paths:
9517    M /trunk/plugins/beos/MediaControlView.cpp
9518    M /trunk/plugins/beos/MediaControlView.h
9520 Fixed Slider overflow and slider behaviour.
9521 Also corrected the button status behavour.
9523 ------------------------------------------------------------------------
9524 r1082 | massiot | 2001-09-14 17:36:36 +0200 (Fri, 14 Sep 2001) | 2 lines
9525 Changed paths:
9526    M /trunk/configure
9527    M /trunk/configure.in
9529 Miscellaneous updates to configure, especially for cross-compilation.
9531 ------------------------------------------------------------------------
9532 r1083 | massiot | 2001-09-24 13:17:49 +0200 (Mon, 24 Sep 2001) | 2 lines
9533 Changed paths:
9534    M /trunk/configure
9535    M /trunk/configure.in
9536    M /trunk/include/input_ext-dec.h
9537    M /trunk/src/input/input.c
9538    M /trunk/src/input/input_ext-dec.c
9539    M /trunk/src/input/mpeg_system.c
9541 Fixed many alignment issues.
9543 ------------------------------------------------------------------------
9544 r1084 | massiot | 2001-09-25 13:46:14 +0200 (Tue, 25 Sep 2001) | 3 lines
9545 Changed paths:
9546    M /trunk/Makefile.opts.in
9547    M /trunk/configure
9548    M /trunk/configure.in
9549    M /trunk/include/common.h
9550    M /trunk/include/defs.h.in
9551    M /trunk/include/vdec_ext-plugins.h
9552    M /trunk/plugins/idct/Makefile
9553    M /trunk/plugins/idct/idctaltivec.c
9554    D /trunk/plugins/idct/idctaltivecasm.S
9555    M /trunk/plugins/motion/Makefile
9556    M /trunk/plugins/motion/motionaltivec.c
9557    M /trunk/src/interface/main.c
9558    M /trunk/src/video_decoder/vpar_pool.c
9559    M /trunk/src/video_output/video_output.c
9561 Altivec IDCT and motion compensation, courtesy of Michel Lespinasse for
9562 mpeg2dec (untested).
9564 ------------------------------------------------------------------------
9565 r1085 | massiot | 2001-09-26 14:32:25 +0200 (Wed, 26 Sep 2001) | 2 lines
9566 Changed paths:
9567    M /trunk/configure.in
9568    M /trunk/include/video_output.h
9569    M /trunk/plugins/beos/vout_beos.cpp
9570    M /trunk/plugins/sdl/vout_sdl.c
9571    M /trunk/plugins/x11/vout_x11.c
9572    M /trunk/plugins/x11/vout_xvideo.c
9573    M /trunk/src/spu_decoder/spu_decoder.c
9574    M /trunk/src/video_decoder/vpar_headers.c
9575    M /trunk/src/video_output/video_output.c
9577 By default, use the real size of the stream for the video output size.
9579 ------------------------------------------------------------------------
9580 r1086 | massiot | 2001-09-28 11:55:20 +0200 (Fri, 28 Sep 2001) | 2 lines
9581 Changed paths:
9582    M /trunk/plugins/idct/idctaltivec.c
9584 Fixed a stupid mistake in NormScan().
9586 ------------------------------------------------------------------------
9587 r1087 | massiot | 2001-09-28 11:57:08 +0200 (Fri, 28 Sep 2001) | 2 lines
9588 Changed paths:
9589    M /trunk/configure
9590    M /trunk/configure.in
9591    M /trunk/include/common.h
9592    M /trunk/include/defs.h.in
9594 If memalign isn't available, fall back on valloc.
9596 ------------------------------------------------------------------------
9597 r1088 | massiot | 2001-09-28 12:39:40 +0200 (Fri, 28 Sep 2001) | 2 lines
9598 Changed paths:
9599    M /trunk/configure
9600    M /trunk/configure.in
9601    M /trunk/include/defs.h.in
9603 Test for Altivec C extensions.
9605 ------------------------------------------------------------------------
9606 r1089 | massiot | 2001-09-28 16:17:16 +0200 (Fri, 28 Sep 2001) | 2 lines
9607 Changed paths:
9608    M /trunk/Makefile.opts.in
9609    M /trunk/configure
9610    M /trunk/configure.in
9611    M /trunk/plugins/idct/Makefile
9612    M /trunk/plugins/idct/idctaltivec.c
9613    M /trunk/plugins/motion/Makefile
9614    M /trunk/plugins/motion/motionaltivec.c
9616 Faster configure script and as-yet untested Darwin patches.
9618 ------------------------------------------------------------------------
9619 r1090 | massiot | 2001-09-28 17:08:40 +0200 (Fri, 28 Sep 2001) | 2 lines
9620 Changed paths:
9621    M /trunk/Makefile.opts.in
9622    M /trunk/plugins/idct/idctaltivec.c
9624 Fixed bugs in the MacOS X port.
9626 ------------------------------------------------------------------------
9627 r1091 | massiot | 2001-09-28 17:24:11 +0200 (Fri, 28 Sep 2001) | 2 lines
9628 Changed paths:
9629    M /trunk/extras/libdvdcss/ioctl.c
9631 Darwin ioctl, courtesy of ej0.
9633 ------------------------------------------------------------------------
9634 r1092 | bozo | 2001-09-29 16:52:01 +0200 (Sat, 29 Sep 2001) | 5 lines
9635 Changed paths:
9636    M /trunk/src/ac3_spdif/ac3_iec958.c
9637    M /trunk/src/ac3_spdif/ac3_spdif.c
9639 Fix bad dates in ac3 spdif "decoder" (playing with the bit stream is very
9640 funny).
9641 Thanks to Stef for his ideas, Meuuh for his bit stream, and Sam for his
9642 trolls :)
9644 ------------------------------------------------------------------------
9645 r1093 | stef | 2001-09-30 02:33:22 +0200 (Sun, 30 Sep 2001) | 6 lines
9646 Changed paths:
9647    M /trunk/src/audio_output/aout_spdif.c
9650 .better handling of the buffer of the sound driver to try to remove
9651  sratches in spdif.
9653 Thanx to bozo for his help :)
9655 ------------------------------------------------------------------------
9656 r1094 | stef | 2001-09-30 03:05:37 +0200 (Sun, 30 Sep 2001) | 5 lines
9657 Changed paths:
9658    M /trunk/plugins/x11/vout_xvideo.c
9660 . video output grows to respect acpect ratio instead of shrinking (not
9661 in x11 because it takes cpu to resize a picture)
9663 . disable dpms in xvideo
9665 ------------------------------------------------------------------------
9666 r1095 | stef | 2001-09-30 03:26:44 +0200 (Sun, 30 Sep 2001) | 2 lines
9667 Changed paths:
9668    M /trunk/plugins/dvd/input_dvd.c
9670 . in spdif ac3 in selected by default
9672 ------------------------------------------------------------------------
9673 r1096 | bozo | 2001-09-30 22:25:13 +0200 (Sun, 30 Sep 2001) | 2 lines
9674 Changed paths:
9675    M /trunk/src/ac3_spdif/ac3_spdif.c
9676    M /trunk/src/ac3_spdif/ac3_spdif.h
9678 Small optimisation of my previous commit.
9680 ------------------------------------------------------------------------
9681 r1097 | massiot | 2001-10-01 12:27:17 +0200 (Mon, 01 Oct 2001) | 3 lines
9682 Changed paths:
9683    M /trunk/src/video_decoder/vpar_blocks.c
9685 "added support for an unusual construct at the start of some
9686 slices", says walken :-).
9688 ------------------------------------------------------------------------
9689 r1098 | massiot | 2001-10-01 14:48:01 +0200 (Mon, 01 Oct 2001) | 2 lines
9690 Changed paths:
9691    M /trunk/Makefile
9692    M /trunk/include/threads.h
9693    M /trunk/src/interface/main.c
9695 Error checks in debug mode : pthread ERRORCHECK_MUTEX and MALLOC_CHECK_=2.
9697 ------------------------------------------------------------------------
9698 r1099 | massiot | 2001-10-01 18:18:49 +0200 (Mon, 01 Oct 2001) | 8 lines
9699 Changed paths:
9700    M /trunk/Makefile.opts.in
9701    M /trunk/configure
9702    M /trunk/configure.in
9703    M /trunk/include/config.h.in
9704    M /trunk/include/input_ext-intf.h
9705    M /trunk/include/intf_msg.h
9706    M /trunk/include/main.h
9707    M /trunk/include/video_output.h
9708    M /trunk/plugins/mpeg/input_ps.c
9709    M /trunk/src/input/input.c
9710    M /trunk/src/input/input_ext-intf.c
9711    M /trunk/src/input/mpeg_system.c
9712    M /trunk/src/interface/intf_msg.c
9713    M /trunk/src/interface/main.c
9714    M /trunk/src/video_decoder/video_parser.c
9715    M /trunk/src/video_decoder/video_parser.h
9716    M /trunk/src/video_decoder/vpar_headers.c
9717    M /trunk/src/video_decoder/vpar_synchro.c
9718    M /trunk/src/video_output/video_output.c
9720 * Removed -march=pentiumpro ; should now work on pentium-class machines ;
9721 * Removed --enable-stats configuration directive. Stats are now activated
9722 at runtime with --stats ;
9723 * New intf_StatMsg() call ;
9724 * Vout picture heap is now 8 pictures instead of 5 (better synchro) ;
9725 * Tremendous enhancements in statistics display ;
9726 * Better capabilities handling.
9728 ------------------------------------------------------------------------
9729 r1100 | massiot | 2001-10-01 18:44:07 +0200 (Mon, 01 Oct 2001) | 3 lines
9730 Changed paths:
9731    M /trunk/include/config.h.in
9732    M /trunk/src/video_decoder/video_parser.h
9733    M /trunk/src/video_decoder/vpar_blocks.c
9734    M /trunk/src/video_decoder/vpar_headers.c
9736 Dramatically improve compilation time, with a negligible performance
9737 tradeoff.
9739 ------------------------------------------------------------------------
9740 r1101 | massiot | 2001-10-02 15:34:56 +0200 (Tue, 02 Oct 2001) | 5 lines
9741 Changed paths:
9742    M /trunk/Makefile.opts.in
9743    M /trunk/configure
9744    M /trunk/configure.in
9745    A /trunk/extras/libdvdcss/libdvdcss.spec
9746    M /trunk/vlc.spec
9748 * Borrowed Mandrakesoft's vlc.spec and libdvdcss.spec ;
9749 * New configure option --with-tuning=[arch], extending --enable-pentiumpro ;
9750 for Pentium, use --with-tuning=pentium, for PowerPC 604 use --with-tuning=604,
9751 and so on.
9753 ------------------------------------------------------------------------
9754 r1102 | massiot | 2001-10-02 18:46:59 +0200 (Tue, 02 Oct 2001) | 16 lines
9755 Changed paths:
9756    M /trunk/include/input_ext-intf.h
9757    M /trunk/plugins/dvd/input_dvd.c
9758    M /trunk/plugins/mpeg/input_es.c
9759    M /trunk/plugins/mpeg/input_ps.c
9760    M /trunk/plugins/mpeg/input_ps.h
9761    M /trunk/plugins/mpeg/input_ts.c
9762    M /trunk/src/input/input.c
9763    M /trunk/src/input/input_programs.c
9764    M /trunk/src/misc/modules.c
9766 * Cleaned up sam's mess with input's pf_open and pf_close (not completely) ;
9767 * With -vvv modules now show up their scores ;
9769 This afternoon I have been a little bored, so the feature of the day is :
9770 * HTTP input support.
9772 You can test it with :
9773 ./vlc http://mysite.com:80/mystream.mpg
9774 It doesn't implement any kind of buffering, so make sure you have enough
9775 bandwidth, otherwise you'll just get nothing.
9777 It is compatible with HTTP proxy, just set http_proxy :
9778 export http_proxy="http://proxy.mycompany.com:3128/"
9780 Enjoy !
9782 ------------------------------------------------------------------------
9783 r1103 | massiot | 2001-10-02 19:04:43 +0200 (Tue, 02 Oct 2001) | 4 lines
9784 Changed paths:
9785    M /trunk/plugins/mpeg/input_es.c
9786    M /trunk/src/input/input.c
9788 * Fixed a warning in input_es.c ;
9789 * Don't connect on INADDR_ANY, patch courtesy of Mathias Kretschmer
9790   <mathias@research.att.com>.
9792 ------------------------------------------------------------------------
9793 r1104 | sam | 2001-10-02 19:09:44 +0200 (Tue, 02 Oct 2001) | 5 lines
9794 Changed paths:
9795    M /trunk/Makefile
9796    M /trunk/plugins/ggi/vout_ggi.c
9797    M /trunk/src/input/input.c
9800   * Added HTTP virtualhost support in the HTTP input.
9801   * Enabled mouse clicks in the GGI plugin.
9802   * Minor Makefile alteration.
9804 ------------------------------------------------------------------------
9805 r1105 | tcastley | 2001-10-03 04:19:21 +0200 (Wed, 03 Oct 2001) | 2 lines
9806 Changed paths:
9807    M /trunk/src/input/input.c
9809 Changes to ensure the BeOS compile still works.
9811 ------------------------------------------------------------------------
9812 r1106 | tcastley | 2001-10-03 04:20:39 +0200 (Wed, 03 Oct 2001) | 2 lines
9813 Changed paths:
9814    M /trunk/src/misc/netutils.c
9816 Updated to compile on BeOS.
9818 ------------------------------------------------------------------------
9819 r1107 | xav | 2001-10-03 04:53:49 +0200 (Wed, 03 Oct 2001) | 3 lines
9820 Changed paths:
9821    M /trunk/configure
9822    M /trunk/configure.in
9824 Modified configure.in to allow cross-compiling with Mingw32.
9825 Quick and ugly, i'm gonna find a better way to do it.
9827 ------------------------------------------------------------------------
9828 r1108 | xav | 2001-10-03 05:32:05 +0200 (Wed, 03 Oct 2001) | 8 lines
9829 Changed paths:
9830    M /trunk/src/input/input.c
9831    M /trunk/src/video_decoder/video_parser.c
9832    M /trunk/src/video_output/video_output.c
9834 The vlc now compiles when cross-compiling with Mingw32. It segfaults
9835 while browsing plugins (modules.o, it seems).
9837 Oh, btw, stats won't work under win32, since <sys/times.h> and the
9838 function times don't seem to exist.
9840 Sam, may I speak with you tomorrow about modules.c ?
9842 ------------------------------------------------------------------------
9843 r1109 | massiot | 2001-10-03 12:12:52 +0200 (Wed, 03 Oct 2001) | 2 lines
9844 Changed paths:
9845    M /trunk/src/input/input.c
9847 Info : you can use #ifndef instead of #ifdef... #else :p
9849 ------------------------------------------------------------------------
9850 r1110 | massiot | 2001-10-03 14:46:17 +0200 (Wed, 03 Oct 2001) | 4 lines
9851 Changed paths:
9852    M /trunk/configure
9853    M /trunk/configure.in
9854    M /trunk/include/input_ext-dec.h
9855    M /trunk/src/input/input_ext-dec.c
9856    M /trunk/vlc.spec
9858 * Minor ShowBits() optimization ;
9859 * Fixed a bug in vlc.spec ;
9860 * New --disable-plugins option ; make all plug-ins built-in.
9862 ------------------------------------------------------------------------
9863 r1111 | massiot | 2001-10-03 14:58:57 +0200 (Wed, 03 Oct 2001) | 2 lines
9864 Changed paths:
9865    M /trunk/src/input/input.c
9867 * Repaired dummy input broken yesterday.
9869 ------------------------------------------------------------------------
9870 r1112 | sam | 2001-10-03 15:14:05 +0200 (Wed, 03 Oct 2001) | 3 lines
9871 Changed paths:
9872    M /trunk/configure
9873    M /trunk/configure.in
9874    M /trunk/include/defs.h.in
9875    M /trunk/src/input/input.c
9876    M /trunk/src/video_decoder/video_parser.c
9877    M /trunk/src/video_output/video_output.c
9879   * Added an endianness check for cross-compilations.
9880   * We now check for sys/times.h.
9882 ------------------------------------------------------------------------
9883 r1113 | massiot | 2001-10-03 16:41:08 +0200 (Wed, 03 Oct 2001) | 3 lines
9884 Changed paths:
9885    M /trunk/Makefile.opts.in
9886    M /trunk/plugins/mpeg/input_ps.c
9888 * Enhanced --with-tuning
9889 * Fixed a nasty segfault
9891 ------------------------------------------------------------------------
9892 r1114 | sam | 2001-10-03 17:10:55 +0200 (Wed, 03 Oct 2001) | 3 lines
9893 Changed paths:
9894    M /trunk/include/config.h.in
9895    M /trunk/src/input/input.c
9896    M /trunk/src/input/input_programs.c
9897    M /trunk/src/interface/main.c
9899   * Added User-Agent header in the HTTP input.
9900   * Fixed an input segfault which occured using ES input.
9902 ------------------------------------------------------------------------
9903 r1115 | sam | 2001-10-04 02:50:24 +0200 (Thu, 04 Oct 2001) | 3 lines
9904 Changed paths:
9905    M /trunk/plugins/gtk/gtk_playlist.c
9906    M /trunk/plugins/gtk/intf_gnome.c
9907    M /trunk/plugins/gtk/intf_gtk.c
9908    M /trunk/plugins/gtk/intf_gtk.h
9911   * Added HTTP url drop (from a WWW browser) to the gtk/gnome interface.
9913 ------------------------------------------------------------------------
9914 r1116 | massiot | 2001-10-08 11:21:57 +0200 (Mon, 08 Oct 2001) | 2 lines
9915 Changed paths:
9916    M /trunk/configure
9917    M /trunk/configure.in
9918    M /trunk/plugins/motion/Makefile
9920 Fixed bugs in the altivec detection, courtesy of Michel Lanners <mlan@cpu.lu>.
9922 ------------------------------------------------------------------------
9923 r1117 | massiot | 2001-10-08 18:20:25 +0200 (Mon, 08 Oct 2001) | 3 lines
9924 Changed paths:
9925    M /trunk/AUTHORS
9926    M /trunk/Makefile
9927    M /trunk/configure
9928    M /trunk/configure.in
9929    M /trunk/plugins/macosx/Makefile
9930    M /trunk/plugins/macosx/aout_macosx.c
9931    M /trunk/plugins/macosx/intf_macosx.c
9932    M /trunk/plugins/macosx/macosx.c
9933    M /trunk/plugins/macosx/macosx_common.h
9934    M /trunk/plugins/macosx/vout_macosx.c
9936 MacOS X port : native QuickTime video output, courtesy of Florian G.
9937 Pflug <fgp@phlo.org>. Use it with -I macosx_qt.
9939 ------------------------------------------------------------------------
9940 r1118 | massiot | 2001-10-09 01:10:28 +0200 (Tue, 09 Oct 2001) | 2 lines
9941 Changed paths:
9942    A /trunk/plugins/macosx/intf_macosx_qt.c
9943    A /trunk/plugins/macosx/macosx_qt.c
9944    A /trunk/plugins/macosx/macosx_qt_common.h
9945    A /trunk/plugins/macosx/vout_macosx_qt.c
9947 Beuheuheuheuhuehueuhuehuehu forgot to add new QuickTime files :*-(((
9949 ------------------------------------------------------------------------
9950 r1119 | massiot | 2001-10-09 13:46:08 +0200 (Tue, 09 Oct 2001) | 2 lines
9951 Changed paths:
9952    M /trunk/Makefile.opts.in
9954 MacOS X port : replaced -traditional-cpp (deprecated) with -no-cpp-precomp.
9956 ------------------------------------------------------------------------
9957 r1120 | sam | 2001-10-10 16:25:15 +0200 (Wed, 10 Oct 2001) | 6 lines
9958 Changed paths:
9959    M /trunk/ChangeLog
9960    M /trunk/ChangeLog.libdvdcss
9961    M /trunk/Makefile
9962    M /trunk/configure
9963    M /trunk/configure.in
9964    M /trunk/debian/changelog
9965    M /trunk/debian/rules
9966    M /trunk/plugins/gtk/gtk_open.c
9967    M /trunk/src/input/input.c
9968    M /trunk/src/misc/netutils.c
9969    M /trunk/vlc.spec
9972   * 0.2.90 release.
9973   * Updated ChangeLog files.
9974   * XVideo module now compiled as built-in for Debian packages, to avoid
9975     PIC and non-PIC code collision (Closes Debian bug #111790).
9977 ------------------------------------------------------------------------
9978 r1121 | sam | 2001-10-10 17:18:55 +0200 (Wed, 10 Oct 2001) | 3 lines
9979 Changed paths:
9980    M /trunk/ChangeLog
9983   * Fixed bad ChangeLog formatting.
9985 ------------------------------------------------------------------------
9986 r1122 | massiot | 2001-10-11 13:28:42 +0200 (Thu, 11 Oct 2001) | 3 lines
9987 Changed paths:
9988    M /trunk/configure
9989    M /trunk/configure.in
9990    M /trunk/extras/libdvdcss/libdvdcss.spec
9991    M /trunk/vlc.spec
9993 * Fixed bugs in RPM spec files ;
9994 * Fixed a bug in configure where ix86 machines were improperly detected.
9996 ------------------------------------------------------------------------
9997 r1123 | massiot | 2001-10-11 15:19:27 +0200 (Thu, 11 Oct 2001) | 3 lines
9998 Changed paths:
9999    M /trunk/include/vdec_ext-plugins.h
10000    M /trunk/plugins/yuv/transforms_common.h
10001    M /trunk/plugins/yuv/transforms_yuv.h
10002    M /trunk/src/video_decoder/video_decoder.c
10003    M /trunk/src/video_decoder/video_decoder.h
10004    M /trunk/src/video_decoder/video_parser.h
10005    M /trunk/src/video_decoder/vpar_blocks.c
10006    M /trunk/src/video_decoder/vpar_headers.c
10007    M /trunk/src/video_decoder/vpar_pool.c
10008    M /trunk/src/video_decoder/vpar_pool.h
10010 * Chroma 4:2:2 and 4:4:4 support in the decoder.
10011 * Fixed bugs in the C YUV transform with 4:2:2 format.
10013 ------------------------------------------------------------------------
10014 r1124 | massiot | 2001-10-11 18:12:43 +0200 (Thu, 11 Oct 2001) | 3 lines
10015 Changed paths:
10016    M /trunk/include/vdec_ext-plugins.h
10017    M /trunk/plugins/sdl/vout_sdl.c
10018    M /trunk/src/video_decoder/video_decoder.c
10019    M /trunk/src/video_decoder/vpar_blocks.c
10021 * Minor video parser optimization ;
10022 * SDL now displays an error message on 422 streams.
10024 ------------------------------------------------------------------------
10025 r1125 | stef | 2001-10-13 17:34:21 +0200 (Sat, 13 Oct 2001) | 21 lines
10026 Changed paths:
10027    M /trunk/configure
10028    M /trunk/configure.in
10029    M /trunk/extras/libdvdcss/css.c
10030    M /trunk/extras/libdvdcss/css.h
10031    M /trunk/extras/libdvdcss/csstables.h
10032    M /trunk/extras/libdvdcss/ioctl.c
10033    M /trunk/extras/libdvdcss/ioctl.h
10034    M /trunk/extras/libdvdcss/libdvdcss.c
10035    M /trunk/extras/libdvdcss/libdvdcss.h
10036    M /trunk/extras/libdvdcss/videolan/dvdcss.h
10037    M /trunk/include/config.h.in
10038    M /trunk/include/defs.h.in
10039    M /trunk/plugins/dvd/dvd_ifo.c
10040    M /trunk/plugins/dvd/dvd_udf.c
10041    M /trunk/plugins/dvd/input_dvd.c
10042    M /trunk/src/audio_output/aout_spdif.c
10043    M /trunk/src/interface/main.c
10045 New features for libdvdcss: we have three ways now to decode a title key.
10047 1) Crack the title key (the method that was here before). The only change
10048 here is that we search the key for the exact chapter we are seeking with
10049 DVDSetArea (in case the key has changed within a title). It is maybe not a
10050 good idea.
10052 2) Crack the disc key, which allows us to decode instantly all title keys.
10053 I've used an algorithm from Frank Stevenson ; it eats much memory (64MB),
10054 and takes about 15 s at launch time.
10056 3) Decode the disc key with player keys (libcss method). However, you need
10057 licensed player keys at build time for that to work.
10059 To choose between libdvdcss methods, a command line options is supplied:
10061         vlc --dvdcss <method> where method is one of title, disc, key.
10063 Note that all these changes only work with linux now, since we have to add a
10064 specific ioctl to read title key. I hope that I haven't broken too many things.
10066 ------------------------------------------------------------------------
10067 r1126 | stef | 2001-10-14 05:26:20 +0200 (Sun, 14 Oct 2001) | 2 lines
10068 Changed paths:
10069    M /trunk/extras/libdvdcss/css.c
10070    M /trunk/extras/libdvdcss/libdvdcss.c
10071    M /trunk/extras/libdvdcss/videolan/dvdcss.h
10072    M /trunk/include/config.h.in
10073    M /trunk/plugins/dvd/input_dvd.c
10075 Use of an environment variable to choose libdvdcss method.
10077 ------------------------------------------------------------------------
10078 r1127 | stef | 2001-10-15 15:33:00 +0200 (Mon, 15 Oct 2001) | 7 lines
10079 Changed paths:
10080    M /trunk/plugins/dvd/input_dvd.c
10082 Reverted one change from my previous commit: when using title cracking
10083 method in libdvdcss, the key is only checked at title start, not before each
10084 chapter.
10086 The behaviour when we have decrypted the disc key is to check the key before
10087 each seek (although I'm still fighting against a bug).
10089 ------------------------------------------------------------------------
10090 r1128 | sam | 2001-10-15 16:59:56 +0200 (Mon, 15 Oct 2001) | 3 lines
10091 Changed paths:
10092    M /trunk/src/input/input.c
10095   * Fixed an error in the ts://server[:port][/broadcast] input parsing.
10097 ------------------------------------------------------------------------
10098 r1129 | stef | 2001-10-16 12:46:24 +0200 (Tue, 16 Oct 2001) | 4 lines
10099 Changed paths:
10100    M /trunk/extras/libdvdcss/css.c
10102 Removed unnecessary headers added by error.
10104 It should fix libdvdcss compilation issue on non-linux platforms.
10106 ------------------------------------------------------------------------
10107 r1130 | stef | 2001-10-16 18:51:28 +0200 (Tue, 16 Oct 2001) | 4 lines
10108 Changed paths:
10109    M /trunk/extras/libdvdcss/css.c
10110    M /trunk/extras/libdvdcss/libdvdcss.c
10111    M /trunk/include/config.h.in
10112    M /trunk/plugins/dvd/input_dvd.c
10114 -defining TRACE_DVDCSS in config.h displays libdvdcss debug message.
10115 -libdvdcss error messages are reported in input_dvd.c.
10116 -vlc verbosity also enables more error messages from libdvdcss.
10118 ------------------------------------------------------------------------
10119 r1131 | ej | 2001-10-19 01:13:46 +0200 (Fri, 19 Oct 2001) | 5 lines
10120 Changed paths:
10121    M /trunk/extras/libdvdcss/ioctl.c
10123 * Fixed undefined KEY_SIZE compile bug mentioned by Dave Thorup
10124 * Fixed CSS ioctl for Darwin/OSX - still might need tweaking of 'dataLength' fields
10125 * Added ReadTitleKey ioctl for Darwin/OSX
10126 * Minor cleanup
10128 ------------------------------------------------------------------------
10129 r1132 | tcastley | 2001-10-21 08:05:30 +0200 (Sun, 21 Oct 2001) | 2 lines
10130 Changed paths:
10131    M /trunk/plugins/beos/InterfaceWindow.cpp
10132    M /trunk/plugins/beos/MediaControlView.cpp
10134 Tidied up the code to remove interface messages not required.
10136 ------------------------------------------------------------------------
10137 r1133 | tcastley | 2001-10-21 08:06:20 +0200 (Sun, 21 Oct 2001) | 2 lines
10138 Changed paths:
10139    M /trunk/plugins/beos/VideoWindow.h
10140    M /trunk/plugins/beos/vout_beos.cpp
10142 Resizing the video out window in BeOS now retains the scaling.
10144 ------------------------------------------------------------------------
10145 r1134 | lool | 2001-10-22 01:17:03 +0200 (Mon, 22 Oct 2001) | 5 lines
10146 Changed paths:
10147    M /trunk/src/input/mpeg_system.c
10149 Moved unlock in the if structure. This suppresses the dead_lock which
10150 was crashing the windows port in TS_input.
10152 The audio still segfaults.
10154 ------------------------------------------------------------------------
10155 r1135 | jobi | 2001-10-22 02:43:23 +0200 (Mon, 22 Oct 2001) | 2 lines
10156 Changed paths:
10157    M /trunk/src/interface/main.c
10159 *** empty log message ***
10161 ------------------------------------------------------------------------
10162 r1136 | xav | 2001-10-22 04:33:54 +0200 (Mon, 22 Oct 2001) | 6 lines
10163 Changed paths:
10164    M /trunk/plugins/mpeg/input_ts.c
10165    M /trunk/src/input/input.c
10167 The vlc now crosscompiles smoothly without having to correct one file
10168 BUT this is UGLY ! We HAVE to find a way to make multicast function
10169 under Win32.
10171 BTW, it does now definitely read TS Streams, locally or from the network.
10173 ------------------------------------------------------------------------
10174 r1137 | massiot | 2001-10-22 13:35:45 +0200 (Mon, 22 Oct 2001) | 2 lines
10175 Changed paths:
10176    M /trunk/vlc.spec
10178 Qt fix courtesy of Christopher Johnson <cjohnson@mint.net>.
10180 ------------------------------------------------------------------------
10181 r1138 | sam | 2001-10-22 14:02:17 +0200 (Mon, 22 Oct 2001) | 6 lines
10182 Changed paths:
10183    M /trunk/configure
10184    M /trunk/configure.in
10185    M /trunk/debian/rules
10186    M /trunk/include/defs.h.in
10187    M /trunk/src/interface/main.c
10190   * xvideo.so is now built in by default. Mixing PIC and non-PIC code was not
10191   very nice.
10192   * Fixed compilation errors in src/interface/main.c when the compiler did
10193   not support SSE or 3DNow! inline assembly.
10195 ------------------------------------------------------------------------
10196 r1139 | massiot | 2001-10-22 14:28:53 +0200 (Mon, 22 Oct 2001) | 2 lines
10197 Changed paths:
10198    M /trunk/include/common.h
10199    M /trunk/include/netutils.h
10200    M /trunk/src/misc/modules_core.h
10202 Fixed compilation problems with OpenBSD.
10204 ------------------------------------------------------------------------
10205 r1140 | sam | 2001-10-22 16:07:36 +0200 (Mon, 22 Oct 2001) | 3 lines
10206 Changed paths:
10207    M /trunk/configure
10208    M /trunk/configure.in
10209    M /trunk/include/defs.h.in
10212   * Fixed NetBSD (and probably OpenBSD) libdvdcss compilation.
10214 ------------------------------------------------------------------------
10215 r1141 | massiot | 2001-10-22 17:17:19 +0200 (Mon, 22 Oct 2001) | 2 lines
10216 Changed paths:
10217    M /trunk/configure
10218    M /trunk/configure.in
10220 Fixed ATTR_ALIGN configure test.
10222 ------------------------------------------------------------------------
10223 r1142 | jobi | 2001-10-23 05:06:50 +0200 (Tue, 23 Oct 2001) | 10 lines
10224 Changed paths:
10225    M /trunk/Makefile
10226    M /trunk/configure
10227    M /trunk/configure.in
10228    M /trunk/plugins/gtk/gnome_interface.c
10229    M /trunk/plugins/gtk/gtk_interface.c
10230    M /trunk/plugins/gtk/intf_gnome.glade
10231    M /trunk/plugins/gtk/intf_gtk.glade
10232    M /trunk/src/input/input.c
10234 Added VCD input plugin for Linux :
10236 The Linux specific stuff is located in linux_cdrom_tools files.
10237 For the time being, it only has title (tracks). Chapters will come if I
10238 ever can read .vcd files.
10239 I've modified Gnome and GTK+, not the others.
10240 I've noticed a big bug, it segfaults at the end of a title. I will
10241 have a look on this tomorrow.
10242 Please be indulgent, it's my first peace of code ;-)
10244 ------------------------------------------------------------------------
10245 r1143 | jobi | 2001-10-23 05:17:49 +0200 (Tue, 23 Oct 2001) | 6 lines
10246 Changed paths:
10247    A /trunk/plugins/vcd
10248    A /trunk/plugins/vcd/Makefile
10249    A /trunk/plugins/vcd/input_vcd.c
10250    A /trunk/plugins/vcd/input_vcd.h
10251    A /trunk/plugins/vcd/linux_cdrom_tools.c
10252    A /trunk/plugins/vcd/linux_cdrom_tools.h
10253    A /trunk/plugins/vcd/vcd.c
10255 Sorry,
10257 the VCD input arrives now :)
10259 I'd better go to bed !
10261 ------------------------------------------------------------------------
10262 r1144 | sam | 2001-10-24 01:41:00 +0200 (Wed, 24 Oct 2001) | 4 lines
10263 Changed paths:
10264    M /trunk/configure
10265    M /trunk/configure.in
10266    M /trunk/debian/changelog
10267    M /trunk/include/defs.h.in
10268    M /trunk/plugins/dvd/dummy_dvdcss.c
10269    M /trunk/plugins/dvd/dummy_dvdcss.h
10272   * Synced dummy_dvdcss with Stef's changes to libdvdcss.
10273   * configure now compiles the VCD plugin if linux/cdrom.h is present.
10275 ------------------------------------------------------------------------
10276 r1145 | massiot | 2001-10-26 18:23:06 +0200 (Fri, 26 Oct 2001) | 2 lines
10277 Changed paths:
10278    A /trunk/FAQ
10280 VLC FAQ TBU.
10282 ------------------------------------------------------------------------
10283 r1146 | tcastley | 2001-10-29 12:07:09 +0100 (Mon, 29 Oct 2001) | 4 lines
10284 Changed paths:
10285    M /trunk/plugins/beos/InterfaceWindow.cpp
10286    M /trunk/plugins/beos/MsgVals.h
10288 Interface changes to include menu for Title and chapter navigation.
10289 Also improved more "BeOS" CD detection.
10290 Todo new graphics for the navigation controls.
10292 ------------------------------------------------------------------------
10293 r1147 | massiot | 2001-10-30 11:48:14 +0100 (Tue, 30 Oct 2001) | 2 lines
10294 Changed paths:
10295    M /trunk/Makefile
10296    M /trunk/configure
10297    M /trunk/configure.in
10298    A /trunk/extras/MacOSX
10299    A /trunk/extras/MacOSX/Resources
10300    A /trunk/extras/MacOSX/Resources/English.lproj
10301    A /trunk/extras/MacOSX/Resources/English.lproj/InfoPlist.strings
10302    A /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib
10303    A /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
10304    A /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
10305    A /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
10306    A /trunk/extras/MacOSX/Resources/English.lproj/MainMenu~.nib
10307    A /trunk/extras/MacOSX/Resources/English.lproj/MainMenu~.nib/classes.nib
10308    A /trunk/extras/MacOSX/Resources/English.lproj/MainMenu~.nib/info.nib
10309    A /trunk/extras/MacOSX/Resources/English.lproj/MainMenu~.nib/objects.nib
10310    A /trunk/extras/MacOSX/Resources/pause.png
10311    A /trunk/extras/MacOSX/Resources/play.png
10312    A /trunk/extras/MacOSX/Resources/stepf.png
10313    A /trunk/extras/MacOSX/Resources/stepr.png
10314    A /trunk/extras/MacOSX/Resources/stop.png
10315    A /trunk/extras/MacOSX/Resources/vlc.icns
10316    A /trunk/extras/MacOSX/vlc.pbproj
10317    A /trunk/extras/MacOSX/vlc.pbproj/fgp.pbxuser
10318    A /trunk/extras/MacOSX/vlc.pbproj/project.pbxproj
10319    D /trunk/extras/MacOSX_app
10320    M /trunk/plugins/macosx/Makefile
10321    A /trunk/plugins/macosx/intf_controller.c
10322    A /trunk/plugins/macosx/intf_controller.h
10323    D /trunk/plugins/macosx/intf_macosx.c
10324    D /trunk/plugins/macosx/intf_macosx_qt.c
10325    A /trunk/plugins/macosx/intf_main.c
10326    A /trunk/plugins/macosx/intf_qdview.c
10327    A /trunk/plugins/macosx/intf_qdview.h
10328    A /trunk/plugins/macosx/intf_vlc_wrapper.c
10329    A /trunk/plugins/macosx/intf_vlc_wrapper.h
10330    M /trunk/plugins/macosx/macosx.c
10331    A /trunk/plugins/macosx/macosx.h
10332    D /trunk/plugins/macosx/macosx_common.h
10333    D /trunk/plugins/macosx/macosx_qt.c
10334    D /trunk/plugins/macosx/macosx_qt_common.h
10335    M /trunk/plugins/macosx/vout_macosx.c
10336    D /trunk/plugins/macosx/vout_macosx_qt.c
10337    A /trunk/plugins/vcd/.cvsignore
10338    M /trunk/src/input/input.c
10340 New interface for MacOS X, courtesy of Florian G. Pflug.
10342 ------------------------------------------------------------------------
10343 r1148 | massiot | 2001-10-30 11:57:37 +0100 (Tue, 30 Oct 2001) | 2 lines
10344 Changed paths:
10345    M /trunk/src/input/input.c
10347 Fixed '-' input.
10349 ------------------------------------------------------------------------
10350 r1149 | asmax | 2001-10-30 13:49:59 +0100 (Tue, 30 Oct 2001) | 2 lines
10351 Changed paths:
10352    M /trunk/include/config.h.in
10353    M /trunk/plugins/gtk/gnome_interface.c
10354    M /trunk/plugins/gtk/gtk_interface.c
10355    M /trunk/plugins/gtk/intf_gnome.glade
10356    M /trunk/plugins/gtk/intf_gtk.glade
10358 - Changed default configuration for vls/vlcs hostname/IP
10360 ------------------------------------------------------------------------
10361 r1150 | reno | 2001-10-30 20:34:53 +0100 (Tue, 30 Oct 2001) | 5 lines
10362 Changed paths:
10363    M /trunk/include/ac3_imdct.h
10364    M /trunk/include/common.h
10365    M /trunk/plugins/imdct/ac3_imdct_sse.c
10366    M /trunk/plugins/imdct/ac3_retables.h
10367    M /trunk/plugins/imdct/ac3_srfft.h
10368    M /trunk/plugins/imdct/ac3_srfft_sse.c
10369    M /trunk/plugins/imdct/imdctsse.c
10370    M /trunk/src/ac3_decoder/ac3_decoder.c
10371    M /trunk/src/ac3_decoder/ac3_decoder.h
10372    M /trunk/src/ac3_decoder/ac3_decoder_thread.c
10373    M /trunk/src/ac3_decoder/ac3_decoder_thread.h
10374    M /trunk/src/ac3_decoder/ac3_imdct.c
10375    M /trunk/src/ac3_decoder/ac3_mantissa.c
10376    M /trunk/src/ac3_decoder/ac3_mantissa.h
10377    M /trunk/src/ac3_decoder/ac3_rematrix.c
10379 * Use memalign for aligned data (instead of a greek malloc)
10380 * Some optimization in imdct (all data are now aligned)
10381 * SSE downmix now works for windows
10382 * SSE imdct is desactivated for windows (MINGW32 doesn't know how to aligned data)
10384 ------------------------------------------------------------------------
10385 r1151 | asmax | 2001-10-30 22:38:24 +0100 (Tue, 30 Oct 2001) | 3 lines
10386 Changed paths:
10387    M /trunk/plugins/gtk/gnome_interface.c
10388    M /trunk/plugins/gtk/gtk_interface.c
10389    M /trunk/plugins/gtk/intf_gnome.glade
10390    M /trunk/plugins/gtk/intf_gtk.glade
10392 - Enabled http button in gtk/gnome interface
10393 - Fixed a polioterie from previous commit
10395 ------------------------------------------------------------------------
10396 r1152 | massiot | 2001-10-31 00:45:08 +0100 (Wed, 31 Oct 2001) | 2 lines
10397 Changed paths:
10398    D /trunk/extras/MacOSX/Resources/English.lproj/MainMenu~.nib
10399    D /trunk/extras/MacOSX/vlc.pbproj/fgp.pbxuser
10400    M /trunk/plugins/macosx/aout_macosx.c
10402 Fixed mistakes in my previous commit.
10404 ------------------------------------------------------------------------
10405 r1153 | reno | 2001-10-31 12:55:53 +0100 (Wed, 31 Oct 2001) | 2 lines
10406 Changed paths:
10407    M /trunk/include/common.h
10408    M /trunk/plugins/imdct/ac3_srfft_sse.c
10409    M /trunk/src/ac3_decoder/ac3_decoder.h
10410    M /trunk/src/ac3_decoder/ac3_decoder_thread.c
10412 * Fixed a segfault on exit under Windows 2000
10414 ------------------------------------------------------------------------
10415 r1154 | asmax | 2001-11-01 01:29:54 +0100 (Thu, 01 Nov 2001) | 2 lines
10416 Changed paths:
10417    M /trunk/src/audio_output/aout_common.h
10419 - Do not resample if delta is short enough
10421 ------------------------------------------------------------------------
10422 r1155 | tcastley | 2001-11-01 04:17:49 +0100 (Thu, 01 Nov 2001) | 3 lines
10423 Changed paths:
10424    M /trunk/plugins/beos/InterfaceWindow.cpp
10426 changes to remove unwanted volumes from the Disk Menu.
10427 Readonly filesystems like NTFS where being incorrectly added.
10429 ------------------------------------------------------------------------
10430 r1156 | stef | 2001-11-01 14:35:43 +0100 (Thu, 01 Nov 2001) | 3 lines
10431 Changed paths:
10432    M /trunk/plugins/gtk/gnome_interface.c
10433    M /trunk/plugins/gtk/intf_gnome.glade
10435 Change chapter selection buttons aspect to try and differentiate them
10436 from title selection ones.
10438 ------------------------------------------------------------------------
10439 r1157 | sam | 2001-11-01 16:30:50 +0100 (Thu, 01 Nov 2001) | 4 lines
10440 Changed paths:
10441    M /trunk/src/input/input.c
10444   * Modified the pf_close kludge in input.c so that we don't segfault when
10445     pf_init fails.
10447 ------------------------------------------------------------------------
10448 r1158 | fgp | 2001-11-01 22:52:02 +0100 (Thu, 01 Nov 2001) | 5 lines
10449 Changed paths:
10450    M /trunk/plugins/macosx/intf_controller.c
10451    M /trunk/plugins/macosx/intf_controller.h
10452    M /trunk/plugins/macosx/intf_vlc_wrapper.c
10453    M /trunk/plugins/macosx/intf_vlc_wrapper.h
10455 Made it possible to open a File after vlc was started (you can use vlc now
10456 without starting it from the command line)
10458 Cleaned up playlist handling in Intf_Vlc_Wrapper.
10460 ------------------------------------------------------------------------
10461 r1159 | jlj | 2001-11-01 22:55:47 +0100 (Thu, 01 Nov 2001) | 4 lines
10462 Changed paths:
10463    M /trunk/plugins/directx/vout_directx.c
10465 The intf was being accessed indirectly from vout_Destroy.
10466 This is a problem because the intf is currently destroyed
10467 before the vout.
10469 ------------------------------------------------------------------------
10470 r1160 | fgp | 2001-11-01 22:58:16 +0100 (Thu, 01 Nov 2001) | 2 lines
10471 Changed paths:
10472    M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
10473    M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
10475 Reimported Intf_Controller, connected "File/Open/File" to Intf_Controller::file:Open.
10477 ------------------------------------------------------------------------
10478 r1161 | massiot | 2001-11-02 14:30:38 +0100 (Fri, 02 Nov 2001) | 2 lines
10479 Changed paths:
10480    M /trunk/configure
10481    M /trunk/configure.in
10482    M /trunk/extras/libdvdcss/ioctl.h
10483    M /trunk/include/defs.h.in
10484    M /trunk/src/input/input.c
10486 * libdvdcss port to OpenBSD.
10488 ------------------------------------------------------------------------
10489 r1162 | massiot | 2001-11-05 16:22:44 +0100 (Mon, 05 Nov 2001) | 2 lines
10490 Changed paths:
10491    M /trunk/include/config.h.in
10492    M /trunk/src/audio_output/audio_output.c
10493    M /trunk/src/interface/main.c
10495 New --volume option (untested, like usual :).
10497 ------------------------------------------------------------------------
10498 r1163 | fgp | 2001-11-05 22:24:40 +0100 (Mon, 05 Nov 2001) | 6 lines
10499 Changed paths:
10500    M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
10501    M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
10503 Added a new drawer to the control window to support:
10504 1) Title / Chapter selection
10505 2) Subtitle selection
10506 3) Audiochannel/Language selection
10507 4) Angle selection
10509 ------------------------------------------------------------------------
10510 r1164 | sam | 2001-11-06 01:59:31 +0100 (Tue, 06 Nov 2001) | 3 lines
10511 Changed paths:
10512    M /trunk/src/input/mpeg_system.c
10515   * Fixed support for SPU and LPCM streams over network.
10517 ------------------------------------------------------------------------
10518 r1165 | stef | 2001-11-06 17:59:06 +0100 (Tue, 06 Nov 2001) | 2 lines
10519 Changed paths:
10520    M /trunk/plugins/x11/vout_xvideo.c
10522  Maybe corrected aspect ratio issue in fullscreen xvideo.
10524 ------------------------------------------------------------------------
10525 r1166 | massiot | 2001-11-06 18:12:02 +0100 (Tue, 06 Nov 2001) | 2 lines
10526 Changed paths:
10527    M /trunk/Makefile.opts.in
10528    M /trunk/configure
10529    M /trunk/configure.in
10530    M /trunk/debian/rules
10531    M /trunk/include/config.h.in
10532    M /trunk/src/input/input.c
10533    M /trunk/vlc.spec
10535 New --enable-release config option.
10537 ------------------------------------------------------------------------
10538 r1167 | massiot | 2001-11-06 19:13:21 +0100 (Tue, 06 Nov 2001) | 2 lines
10539 Changed paths:
10540    M /trunk/src/lpcm_decoder/lpcm_decoder_thread.c
10541    M /trunk/src/lpcm_decoder/lpcm_decoder_thread.h
10543 Removed deprecated code and structures.
10545 ------------------------------------------------------------------------
10546 r1168 | stef | 2001-11-07 03:10:14 +0100 (Wed, 07 Nov 2001) | 2 lines
10547 Changed paths:
10548    M /trunk/plugins/x11/vout_xvideo.c
10550 I've committed crap last time.
10552 ------------------------------------------------------------------------
10553 r1169 | stef | 2001-11-07 04:37:27 +0100 (Wed, 07 Nov 2001) | 8 lines
10554 Changed paths:
10555    M /trunk/plugins/dvd/dvd_ifo.c
10557 *Corrected ?\239?\191?\189 long time bug (around 0.2.81 I think), that created a
10558 corruption in ifo data. This was the reason why some DVDs that worked with
10559 0.2.80 no longer worked with newer version of vlc. They should work again
10560 now.
10562 This is certainly one of the last updates of the current DVD plugin until
10563 we move to libdvdread that will give us navigation ES.
10565 ------------------------------------------------------------------------
10566 r1170 | massiot | 2001-11-07 11:34:28 +0100 (Wed, 07 Nov 2001) | 2 lines
10567 Changed paths:
10568    M /trunk/AUTHORS
10570 Added fgp.
10572 ------------------------------------------------------------------------
10573 r1171 | stef | 2001-11-07 18:37:16 +0100 (Wed, 07 Nov 2001) | 6 lines
10574 Changed paths:
10575    M /trunk/Makefile
10576    A /trunk/include/iso_lang.h
10577    M /trunk/plugins/dvd/dvd_ifo.c
10578    M /trunk/plugins/dvd/dvd_summary.c
10579    M /trunk/plugins/dvd/dvd_summary.h
10580    M /trunk/plugins/dvd/dvd_udf.c
10581    M /trunk/plugins/dvd/input_dvd.c
10582    A /trunk/src/misc/iso_lang.c
10584 *Move function that translates language codes into country name in src/misc
10585 so that every plugin can use it
10587 *Change the name of a function in dvd_udf.c to fit with the forthcoming
10588  libdvdread plugin.
10590 ------------------------------------------------------------------------
10591 r1172 | stef | 2001-11-07 18:42:04 +0100 (Wed, 07 Nov 2001) | 2 lines
10592 Changed paths:
10593    M /trunk/plugins/dvd/dvd_udf.h
10595 -forgot one file
10597 ------------------------------------------------------------------------
10598 r1173 | jlj | 2001-11-07 23:58:13 +0100 (Wed, 07 Nov 2001) | 4 lines
10599 Changed paths:
10600    M /trunk/include/common.h
10601    M /trunk/plugins/dummy/input_dummy.c
10602    M /trunk/src/audio_output/aout_common.h
10603    M /trunk/src/input/input.c
10606   * Fixed some win32 compile issues.
10607   * Don't use long long, use u64/s64 (int_types.h).
10609 ------------------------------------------------------------------------
10610 r1174 | jlj | 2001-11-08 02:48:09 +0100 (Thu, 08 Nov 2001) | 3 lines
10611 Changed paths:
10612    M /trunk/include/common.h
10613    M /trunk/include/modules.h
10616   * Fixed some win32 64-bit issues.
10618 ------------------------------------------------------------------------
10619 r1175 | stef | 2001-11-08 15:45:44 +0100 (Thu, 08 Nov 2001) | 5 lines
10620 Changed paths:
10621    M /trunk/include/input_ext-intf.h
10622    M /trunk/src/input/input_clock.c
10624 -kludge to have less discontinuity after a zero scr in DVD.
10626 Maybe we should try to predict the date instead of taking the last one but
10627 it seems quite hard.
10629 ------------------------------------------------------------------------
10630 r1176 | jlj | 2001-11-08 22:07:24 +0100 (Thu, 08 Nov 2001) | 3 lines
10631 Changed paths:
10632    M /trunk/include/common.h
10635   * Fixed a mingw32 problem I introduced last night :)
10637 ------------------------------------------------------------------------
10638 r1177 | reno | 2001-11-09 11:02:31 +0100 (Fri, 09 Nov 2001) | 2 lines
10639 Changed paths:
10640    M /trunk/plugins/imdct/ac3_srfft_sse.c
10642 * imdctsse should now compile and work in plugin and under BeOS
10644 ------------------------------------------------------------------------
10645 r1178 | massiot | 2001-11-09 14:49:27 +0100 (Fri, 09 Nov 2001) | 3 lines
10646 Changed paths:
10647    M /trunk/configure
10648    M /trunk/configure.in
10649    M /trunk/plugins/vcd/linux_cdrom_tools.h
10650    M /trunk/src/input/input.c
10652 * BSD/OS VCD patch, courtesy of Steven M. Schultz <sms@TO.GD-ES.COM>
10653 * Win32 network fix.
10655 ------------------------------------------------------------------------
10656 r1179 | stef | 2001-11-11 02:32:03 +0100 (Sun, 11 Nov 2001) | 4 lines
10657 Changed paths:
10658    M /trunk/include/input_ext-plugins.h
10659    M /trunk/include/modules_export.h
10660    M /trunk/plugins/dvd/Makefile
10661    D /trunk/plugins/dvd/dvd_netlist.c
10662    D /trunk/plugins/dvd/dvd_netlist.h
10663    M /trunk/plugins/dvd/input_dvd.c
10664    M /trunk/plugins/mpeg/input_es.c
10665    M /trunk/plugins/mpeg/input_ts.c
10666    M /trunk/src/input/input_netlist.c
10668 -Merged DVD netlist with input netlist to remove duplicated code.
10669 Basically, this adds the ability for the netlist to handle transport
10670 packets that carry more than one data_packet.
10672 ------------------------------------------------------------------------
10673 r1180 | jlj | 2001-11-11 05:51:10 +0100 (Sun, 11 Nov 2001) | 3 lines
10674 Changed paths:
10675    M /trunk/extras/libdvdcss/css.c
10678   * Fixed a buffer overflow in CSSAuth()
10680 ------------------------------------------------------------------------
10681 r1181 | sam | 2001-11-11 19:15:42 +0100 (Sun, 11 Nov 2001) | 4 lines
10682 Changed paths:
10683    M /trunk/include/input_ext-intf.h
10684    M /trunk/plugins/dvd/input_dvd.c
10685    M /trunk/plugins/gtk/gtk_menu.c
10686    M /trunk/plugins/gtk/gtk_menu.h
10687    M /trunk/plugins/gtk/gtk_playlist.c
10690   * Fixed compilation (and quite probably runtime) issues under IA64
10691     due to mixed int/void* casts.
10693 ------------------------------------------------------------------------
10694 r1182 | stef | 2001-11-12 02:56:33 +0100 (Mon, 12 Nov 2001) | 3 lines
10695 Changed paths:
10696    M /trunk/src/input/mpeg_system.c
10698 -Fixed bug with MPEG audio in TS streams: MPEG audio & LPCM are _not_
10699 private ES :p
10701 ------------------------------------------------------------------------
10702 r1183 | stef | 2001-11-12 04:07:13 +0100 (Mon, 12 Nov 2001) | 5 lines
10703 Changed paths:
10704    M /trunk/plugins/dvd/input_dvd.c
10705    M /trunk/src/input/mpeg_system.c
10706    M /trunk/src/misc/netutils.c
10708 -LPCM _is_ a private stream. Sorry.
10710 -GetMACAddress takes the interface defined in the environment variable
10711 vlc_iface instead of eth0
10713 ------------------------------------------------------------------------
10714 r1184 | sam | 2001-11-12 05:12:38 +0100 (Mon, 12 Nov 2001) | 3 lines
10715 Changed paths:
10716    M /trunk/.cvsignore
10717    M /trunk/include/netutils.h
10718    M /trunk/plugins/gtk/gtk_callbacks.c
10719    M /trunk/src/input/input.c
10720    M /trunk/src/interface/intf_playlist.c
10721    M /trunk/src/misc/netutils.c
10724   * Automatic handling of the Channel Server's response in network mode.
10726 ------------------------------------------------------------------------
10727 r1185 | sam | 2001-11-12 06:15:39 +0100 (Mon, 12 Nov 2001) | 4 lines
10728 Changed paths:
10729    M /trunk/Makefile
10730    A /trunk/install-win32
10733   * Added Oct's NSIS installer script. It will probably not work for you,
10734     but I need it to build the Win32 auto installer.
10736 ------------------------------------------------------------------------
10737 r1186 | massiot | 2001-11-12 11:33:42 +0100 (Mon, 12 Nov 2001) | 2 lines
10738 Changed paths:
10739    M /trunk/src/input/mpeg_system.c
10741 Corrected a typo.
10743 ------------------------------------------------------------------------
10744 r1187 | massiot | 2001-11-12 12:13:18 +0100 (Mon, 12 Nov 2001) | 2 lines
10745 Changed paths:
10746    M /trunk/plugins/directx/aout_directx.c
10748 Disabled DirectX audio output for the time being.
10750 ------------------------------------------------------------------------
10751 r1188 | massiot | 2001-11-12 12:30:44 +0100 (Mon, 12 Nov 2001) | 2 lines
10752 Changed paths:
10753    M /trunk/debian/rules
10754    A /trunk/ipkg
10755    A /trunk/ipkg/control
10756    A /trunk/ipkg/rules
10758 ipkg script for Familiar Linux 0.5 & bug fix in debian/rules.
10760 ------------------------------------------------------------------------
10761 r1189 | massiot | 2001-11-12 12:37:30 +0100 (Mon, 12 Nov 2001) | 2 lines
10762 Changed paths:
10763    M /trunk/FAQ
10764    M /trunk/INSTALL
10766 Documentation updates.
10768 ------------------------------------------------------------------------
10769 r1190 | massiot | 2001-11-12 13:54:16 +0100 (Mon, 12 Nov 2001) | 2 lines
10770 Changed paths:
10771    M /trunk/src/interface/main.c
10773 New --channelserver switch.
10775 ------------------------------------------------------------------------
10776 r1191 | massiot | 2001-11-12 14:22:08 +0100 (Mon, 12 Nov 2001) | 2 lines
10777 Changed paths:
10778    M /trunk/debian/vlc.docs
10779    M /trunk/vlc.spec
10781 Added FAQ.
10783 ------------------------------------------------------------------------
10784 r1192 | sam | 2001-11-12 21:16:33 +0100 (Mon, 12 Nov 2001) | 7 lines
10785 Changed paths:
10786    M /trunk/ChangeLog
10787    M /trunk/ChangeLog.libdvdcss
10788    M /trunk/Makefile
10789    M /trunk/configure
10790    M /trunk/configure.in
10791    M /trunk/debian/changelog
10792    M /trunk/debian/control
10793    D /trunk/debian/libdvdcss0.0.3-dev.dirs
10794    D /trunk/debian/libdvdcss0.0.3.copyright
10795    D /trunk/debian/libdvdcss0.0.3.dirs
10796    D /trunk/debian/libdvdcss0.0.3.docs
10797    A /trunk/debian/libdvdcss1-dev.dirs
10798    A /trunk/debian/libdvdcss1.copyright
10799    A /trunk/debian/libdvdcss1.dirs
10800    A /trunk/debian/libdvdcss1.docs
10801    M /trunk/debian/rules
10802    M /trunk/doc/vlc.1
10803    M /trunk/extras/libdvdcss/css.c
10804    M /trunk/extras/libdvdcss/libdvdcss.c
10805    M /trunk/extras/libdvdcss/libdvdcss.h
10806    M /trunk/extras/libdvdcss/videolan/dvdcss.h
10807    M /trunk/include/config.h.in
10808    M /trunk/install-win32
10809    M /trunk/plugins/alsa/Makefile
10810    M /trunk/plugins/alsa/aout_alsa.c
10811    M /trunk/plugins/dvd/dummy_dvdcss.c
10812    M /trunk/plugins/dvd/dummy_dvdcss.h
10813    M /trunk/plugins/dvd/dvd.c
10814    M /trunk/plugins/dvd/input_dvd.c
10815    M /trunk/src/interface/main.c
10816    M /trunk/src/misc/netutils.c
10817    M /trunk/vlc.spec
10820   * Made everything ready for a vlc-0.2.91 / libdvdcss-1.0.0 release.
10821   * Updated ChangeLog and ChangeLog.libdvdcss.
10822   * Increased vlcs response message length.
10823   * Removed the i_flags argument to dvdcss_open. Everything is done through
10824     environment variables now.
10826 ------------------------------------------------------------------------
10827 r1193 | sam | 2001-11-12 21:44:19 +0100 (Mon, 12 Nov 2001) | 3 lines
10828 Changed paths:
10829    M /trunk/Makefile
10832   * Fixed a bug in the "make snapshot*" rules.
10834 ------------------------------------------------------------------------
10835 r1194 | massiot | 2001-11-12 21:49:44 +0100 (Mon, 12 Nov 2001) | 2 lines
10836 Changed paths:
10837    M /trunk/ipkg/control
10839 Bumped up version number to 0.2.91.
10841 ------------------------------------------------------------------------
10842 r1195 | sam | 2001-11-12 23:42:56 +0100 (Mon, 12 Nov 2001) | 4 lines
10843 Changed paths:
10844    M /trunk/Makefile
10845    A /trunk/include/win32_specific.h
10846    M /trunk/src/input/input.c
10847    M /trunk/src/interface/main.c
10848    M /trunk/src/misc/netutils.c
10849    A /trunk/src/misc/win32_specific.c
10852   * Fixed the vlcs communication issue by initializing WinSock at
10853     startup (thanks Meuuh for the tip).
10855 ------------------------------------------------------------------------
10856 r1196 | sam | 2001-11-13 00:56:53 +0100 (Tue, 13 Nov 2001) | 3 lines
10857 Changed paths:
10858    M /trunk/src/misc/netutils.c
10861   * Fixed the vlcs communication for real now.
10863 ------------------------------------------------------------------------
10864 r1197 | sam | 2001-11-13 01:46:23 +0100 (Tue, 13 Nov 2001) | 4 lines
10865 Changed paths:
10866    M /trunk/Makefile
10867    M /trunk/src/misc/netutils.c
10870   * Added a "make package-beos" rule.
10871   * Fixed a BeOS compilation issue.
10873 ------------------------------------------------------------------------
10874 r1198 | sam | 2001-11-13 02:25:05 +0100 (Tue, 13 Nov 2001) | 3 lines
10875 Changed paths:
10876    M /trunk/ChangeLog.libdvdcss
10877    M /trunk/extras/libdvdcss/libdvdcss.c
10878    M /trunk/extras/libdvdcss/videolan/dvdcss.h
10879    M /trunk/plugins/dvd/dummy_dvdcss.h
10880    M /trunk/plugins/dvd/input_dvd.c
10883   * Got rid of DVDCSS_SEEK_INI in libdvdcss.
10885 ------------------------------------------------------------------------
10886 r1199 | sam | 2001-11-13 03:03:46 +0100 (Tue, 13 Nov 2001) | 3 lines
10887 Changed paths:
10888    M /trunk/extras/libdvdcss/css.c
10889    M /trunk/extras/libdvdcss/libdvdcss.c
10890    M /trunk/extras/libdvdcss/libdvdcss.h
10893   * Damn recursion! Fixed an infinite loop in libdvdcss.
10895 ------------------------------------------------------------------------
10896 r1200 | massiot | 2001-11-13 12:05:49 +0100 (Tue, 13 Nov 2001) | 2 lines
10897 Changed paths:
10898    M /trunk/extras/libdvdcss/libdvdcss.spec
10900 Bumped up version number to 1.0.0 :p.
10902 ------------------------------------------------------------------------
10903 r1201 | sam | 2001-11-13 12:44:15 +0100 (Tue, 13 Nov 2001) | 3 lines
10904 Changed paths:
10905    M /trunk/debian/changelog
10908   * Closing Debian bug #119369 which was fixed a while ago.
10910 ------------------------------------------------------------------------
10911 r1202 | henri | 2001-11-13 13:09:18 +0100 (Tue, 13 Nov 2001) | 6 lines
10912 Changed paths:
10913    M /trunk/AUTHORS
10914    M /trunk/Makefile
10915    M /trunk/TODO
10916    M /trunk/configure
10917    M /trunk/configure.in
10918    M /trunk/doc/developer/decoders.xml
10919    M /trunk/doc/developer/manual.xml
10920    M /trunk/include/common.h
10921    M /trunk/include/input_ext-dec.h
10922    M /trunk/include/input_ext-intf.h
10923    M /trunk/include/input_ext-plugins.h
10924    M /trunk/include/modules.h
10925    M /trunk/include/modules_export.h
10926    A /trunk/plugins/ac3_adec
10927    A /trunk/plugins/ac3_adec/Makefile
10928    A /trunk/plugins/ac3_adec/ac3_adec.c
10929    A /trunk/plugins/ac3_adec/ac3_adec.h
10930    A /trunk/plugins/ac3_adec/ac3_bit_allocate.c
10931    A /trunk/plugins/ac3_adec/ac3_decoder.c
10932    A /trunk/plugins/ac3_adec/ac3_decoder.h
10933    A /trunk/plugins/ac3_adec/ac3_exponent.c
10934    A /trunk/plugins/ac3_adec/ac3_exponent.h
10935    A /trunk/plugins/ac3_adec/ac3_imdct.c
10936    A /trunk/plugins/ac3_adec/ac3_internal.h
10937    A /trunk/plugins/ac3_adec/ac3_mantissa.c
10938    A /trunk/plugins/ac3_adec/ac3_mantissa.h
10939    A /trunk/plugins/ac3_adec/ac3_parse.c
10940    A /trunk/plugins/ac3_adec/ac3_rematrix.c
10941    A /trunk/plugins/ac3_spdif
10942    A /trunk/plugins/ac3_spdif/Makefile
10943    A /trunk/plugins/ac3_spdif/ac3_iec958.c
10944    A /trunk/plugins/ac3_spdif/ac3_iec958.h
10945    A /trunk/plugins/ac3_spdif/ac3_spdif.c
10946    A /trunk/plugins/ac3_spdif/ac3_spdif.h
10947    A /trunk/plugins/lpcm_adec
10948    A /trunk/plugins/lpcm_adec/Makefile
10949    A /trunk/plugins/lpcm_adec/lpcm_adec.c
10950    A /trunk/plugins/lpcm_adec/lpcm_adec.h
10951    A /trunk/plugins/mpeg_adec
10952    A /trunk/plugins/mpeg_adec/Makefile
10953    A /trunk/plugins/mpeg_adec/adec_layer1.c
10954    A /trunk/plugins/mpeg_adec/adec_layer1.h
10955    A /trunk/plugins/mpeg_adec/adec_layer2.c
10956    A /trunk/plugins/mpeg_adec/adec_layer2.h
10957    A /trunk/plugins/mpeg_adec/adec_math.c
10958    A /trunk/plugins/mpeg_adec/adec_math.h
10959    A /trunk/plugins/mpeg_adec/adec_test.c
10960    A /trunk/plugins/mpeg_adec/mpeg_adec.c
10961    A /trunk/plugins/mpeg_adec/mpeg_adec.h
10962    A /trunk/plugins/mpeg_adec/mpeg_adec_generic.c
10963    A /trunk/plugins/mpeg_adec/mpeg_adec_generic.h
10964    A /trunk/plugins/mpeg_vdec
10965    A /trunk/plugins/mpeg_vdec/Makefile
10966    A /trunk/plugins/mpeg_vdec/video_decoder.c
10967    A /trunk/plugins/mpeg_vdec/video_decoder.h
10968    A /trunk/plugins/mpeg_vdec/video_parser.c
10969    A /trunk/plugins/mpeg_vdec/video_parser.h
10970    A /trunk/plugins/mpeg_vdec/vpar_blocks.c
10971    A /trunk/plugins/mpeg_vdec/vpar_blocks.h
10972    A /trunk/plugins/mpeg_vdec/vpar_headers.c
10973    A /trunk/plugins/mpeg_vdec/vpar_pool.c
10974    A /trunk/plugins/mpeg_vdec/vpar_pool.h
10975    A /trunk/plugins/mpeg_vdec/vpar_synchro.c
10976    A /trunk/plugins/spu_dec
10977    A /trunk/plugins/spu_dec/Makefile
10978    A /trunk/plugins/spu_dec/spu_decoder.c
10979    A /trunk/plugins/spu_dec/spu_decoder.h
10980    D /trunk/src/ac3_decoder
10981    D /trunk/src/ac3_spdif
10982    D /trunk/src/audio_decoder
10983    M /trunk/src/input/input_dec.c
10984    M /trunk/src/input/input_programs.c
10985    D /trunk/src/lpcm_decoder
10986    D /trunk/src/spu_decoder
10987    D /trunk/src/video_decoder
10990 All decoders (audio, video, subtitles) are now modules.
10992 - mpeg_vdec, mpeg_adec and ac3_adec are builtins by default
10993 - ac3_spdif, spu_dec and lpcm_dec are plugins by default
10995 ------------------------------------------------------------------------
10996 r1203 | sam | 2001-11-13 13:11:27 +0100 (Tue, 13 Nov 2001) | 3 lines
10997 Changed paths:
10998    A /trunk/doc/release-howto.txt
11001   * Commited my little release-howto (only useful to core vlc developers).
11003 ------------------------------------------------------------------------
11004 r1204 | henri | 2001-11-13 13:15:21 +0100 (Tue, 13 Nov 2001) | 4 lines
11005 Changed paths:
11006    M /trunk/ChangeLog
11007    M /trunk/doc/developer/decoders.xml
11010 Forgot Changelog.
11011 Began to re-read the documentation.
11013 ------------------------------------------------------------------------
11014 r1205 | massiot | 2001-11-13 13:19:13 +0100 (Tue, 13 Nov 2001) | 2 lines
11015 Changed paths:
11016    M /trunk/doc/release-howto.txt
11018 RPM builds.
11020 ------------------------------------------------------------------------
11021 r1206 | sam | 2001-11-13 16:08:25 +0100 (Tue, 13 Nov 2001) | 4 lines
11022 Changed paths:
11023    M /trunk/configure
11024    M /trunk/configure.in
11025    M /trunk/include/defs.h.in
11026    M /trunk/plugins/spu_dec/spu_decoder.c
11029   * configure should no longer assume AltiVec is supported when it actually
11030     isn't with buggy compilers and/or pre-set $CFLAGS.
11032 ------------------------------------------------------------------------
11033 r1207 | sam | 2001-11-13 17:00:54 +0100 (Tue, 13 Nov 2001) | 3 lines
11034 Changed paths:
11035    M /trunk/src/input/input.c
11038   * Fixed a crash when using `--input dvd /dev/dvd' instead of `dvd:/dev/dvd'
11040 ------------------------------------------------------------------------
11041 r1208 | massiot | 2001-11-13 17:28:05 +0100 (Tue, 13 Nov 2001) | 2 lines
11042 Changed paths:
11043    M /trunk/INSTALL-win32.txt
11045 Typo.
11047 ------------------------------------------------------------------------
11048 r1209 | sam | 2001-11-13 19:10:39 +0100 (Tue, 13 Nov 2001) | 3 lines
11049 Changed paths:
11050    M /trunk/include/modules.h
11051    A /trunk/plugins/ac3_adec/.cvsignore
11052    M /trunk/plugins/ac3_adec/ac3_adec.c
11053    M /trunk/plugins/ac3_adec/ac3_imdct.c
11054    A /trunk/plugins/ac3_spdif/.cvsignore
11055    M /trunk/plugins/imdct/ac3_imdct_sse.c
11056    A /trunk/plugins/lpcm_adec/.cvsignore
11057    A /trunk/plugins/mpeg_adec/.cvsignore
11058    A /trunk/plugins/mpeg_vdec/.cvsignore
11059    A /trunk/plugins/spu_dec/.cvsignore
11062   * Fixed heap corruption issues in ac3dec (thanks reno).
11064 ------------------------------------------------------------------------
11065 r1210 | jlj | 2001-11-14 01:01:36 +0100 (Wed, 14 Nov 2001) | 7 lines
11066 Changed paths:
11067    M /trunk/include/threads.h
11068    M /trunk/src/interface/main.c
11069    M /trunk/src/misc/win32_specific.c
11071 The default file-translation mode was not being set under win32.
11072 In other words, file playback in 0.2.91 does not work. For de-
11073 scheduling threads use a 0ms sleep instead of 1ms, as it was
11074 causing problems under WinXP. I hope this does not introduce
11075 problems under previous windows versions. I noticed it was
11076 originally 0ms, but later changed to 1ms...
11078 ------------------------------------------------------------------------
11079 r1211 | stef | 2001-11-14 04:38:11 +0100 (Wed, 14 Nov 2001) | 4 lines
11080 Changed paths:
11081    M /trunk/plugins/ac3_spdif/ac3_spdif.c
11082    M /trunk/src/audio_output/aout_spdif.c
11084 -moved warning message to debug message in spdif pass-through plugin
11086 -changed a bit the wait time. It works better here, please test (Bozo ? 0:-)
11088 ------------------------------------------------------------------------
11089 r1212 | xav | 2001-11-14 05:55:49 +0100 (Wed, 14 Nov 2001) | 4 lines
11090 Changed paths:
11091    M /trunk/plugins/directx/vout_directx.c
11094 It seems that the 'focus' bug under WinME is solved. Could someone with
11095 a 98 check, and someone under win2k check that nothing is broken ? :)
11097 ------------------------------------------------------------------------
11098 r1213 | massiot | 2001-11-14 17:55:05 +0100 (Wed, 14 Nov 2001) | 2 lines
11099 Changed paths:
11100    M /trunk/configure
11101    M /trunk/configure.in
11103 Fixed a bug in altivec detection on MacOS X.
11105 ------------------------------------------------------------------------
11106 r1214 | gbazin | 2001-11-14 19:08:27 +0100 (Wed, 14 Nov 2001) | 7 lines
11107 Changed paths:
11108    M /trunk/INSTALL-win32.txt
11109    M /trunk/configure
11110    M /trunk/configure.in
11112 - The ./configure script is more friendly for Win32 users.
11113     ( xvideo, x11 and dsp plugins are not enabled by default for win32,
11114       plus a few other Win32 cosmetic changes )
11115 - Updated the INSTALL-win32.txt file.
11117 (Let's hope I didn't break anything ;-)
11119 ------------------------------------------------------------------------
11120 r1215 | xav | 2001-11-15 00:19:38 +0100 (Thu, 15 Nov 2001) | 6 lines
11121 Changed paths:
11122    M /trunk/configure
11123    M /trunk/configure.in
11126 Please, please, don't forget those who use the --with-directx flag when
11127 ./configuring ! :p
11128 Now, to configure directx, use the --enable-directx and --with-directx
11129 if necessary.
11131 ------------------------------------------------------------------------
11132 r1216 | massiot | 2001-11-15 17:15:59 +0100 (Thu, 15 Nov 2001) | 2 lines
11133 Changed paths:
11134    M /trunk/include/input_ext-dec.h
11136 Removed unused structure.
11138 ------------------------------------------------------------------------
11139 r1217 | sam | 2001-11-15 18:39:13 +0100 (Thu, 15 Nov 2001) | 4 lines
11140 Changed paths:
11141    M /trunk/include/input_ext-dec.h
11142    M /trunk/include/input_ext-intf.h
11143    M /trunk/include/input_ext-plugins.h
11144    M /trunk/plugins/ac3_adec/ac3_adec.c
11145    M /trunk/plugins/ac3_spdif/ac3_spdif.c
11146    M /trunk/plugins/mpeg_adec/mpeg_adec.c
11147    M /trunk/plugins/mpeg_vdec/video_parser.c
11148    M /trunk/plugins/spu_dec/spu_decoder.c
11149    M /trunk/src/input/input_dec.c
11150    M /trunk/src/input/input_programs.c
11153   * Fixed a few crashes due to race conditions in the decoder spawning.
11154   * Removed unused code here and there.
11156 ------------------------------------------------------------------------
11157 r1218 | sam | 2001-11-15 19:11:50 +0100 (Thu, 15 Nov 2001) | 4 lines
11158 Changed paths:
11159    M /trunk/plugins/motion/motionmmxext.c
11160    M /trunk/src/input/input_dec.c
11163   * Fixed a little crash introduced in my previous commit :-)
11164   * Removed more unused code.
11166 ------------------------------------------------------------------------
11167 r1219 | sam | 2001-11-15 19:50:49 +0100 (Thu, 15 Nov 2001) | 4 lines
11168 Changed paths:
11169    M /trunk/src/input/input.c
11172   * Fixed MacOS X 10.1 network input, thanks to Mathias Kretschmer
11173     <mathias@research.att.com>.
11175 ------------------------------------------------------------------------
11176 r1220 | xav | 2001-11-15 22:27:53 +0100 (Thu, 15 Nov 2001) | 5 lines
11177 Changed paths:
11178    M /trunk/plugins/directx/vout_directx.c
11181 Removed my modification, it seems the libs we're linking with are far
11182 too old to support this option. And it also seems it doesn't function
11183 anywhere out of my box :)
11185 ------------------------------------------------------------------------
11186 r1221 | stef | 2001-11-16 01:29:52 +0100 (Fri, 16 Nov 2001) | 10 lines
11187 Changed paths:
11188    M /trunk/plugins/gtk/gnome_interface.c
11189    M /trunk/plugins/gtk/gtk_callbacks.c
11190    M /trunk/plugins/gtk/gtk_display.c
11191    M /trunk/plugins/gtk/gtk_interface.c
11192    M /trunk/plugins/gtk/gtk_open.c
11193    M /trunk/plugins/gtk/intf_gnome.c
11194    M /trunk/plugins/gtk/intf_gnome.glade
11195    M /trunk/plugins/gtk/intf_gtk.c
11196    M /trunk/plugins/gtk/intf_gtk.glade
11197    M /trunk/plugins/gtk/intf_gtk.h
11198    M /trunk/src/misc/netutils.c
11200 * --chennels puts gtk/gnome in multi-channel network mode.
11202 * the network window of the interface reports the values of the environment
11203  variables.
11205 * channels mode excludes vls configuration
11207 * the vlc does not try to bind vls.via.ecp.fr by default when you select
11208  channels mode.
11210 ------------------------------------------------------------------------
11211 r1222 | stef | 2001-11-19 16:13:11 +0100 (Mon, 19 Nov 2001) | 12 lines
11212 Changed paths:
11213    M /trunk/extras/libdvdcss/libdvdcss.c
11214    M /trunk/extras/libdvdcss/videolan/dvdcss.h
11215    M /trunk/plugins/dvd/input_dvd.c
11217 -fixed a bug in libdvdcss: the key wasn't searched when it had to.
11219 dvdcss_seek : searches a new title key when
11220         -the flag is DVDCSS_SEEK_KEY,
11221         -the flag is DVDCSS_SEEK_MPEG, only if method is not "title".
11223 dvdcss_seek with DVDCSS_SEEK_KEY flags does actually the same things as
11224 dvdcss_title (which might eventually be removed).
11226 Thus, the flag DVDCSS_SEEK_KEY (formerly DVDCSS_SEEK_INI) could not be
11227 removed (sorry sam, I've mistaken you by forgetting that)
11229 ------------------------------------------------------------------------
11230 r1223 | sam | 2001-11-20 00:49:43 +0100 (Tue, 20 Nov 2001) | 4 lines
11231 Changed paths:
11232    M /trunk/AUTHORS
11233    M /trunk/Makefile
11234    M /trunk/Makefile.opts.in
11235    M /trunk/configure
11236    M /trunk/configure.in
11237    A /trunk/plugins/arts
11238    A /trunk/plugins/arts/.cvsignore
11239    A /trunk/plugins/arts/Makefile
11240    A /trunk/plugins/arts/aout_arts.c
11241    A /trunk/plugins/arts/arts.c
11242    M /trunk/plugins/esd/Makefile
11245   * aRts audio output courtesy of Emmanuel Blindauer <manu@agat.net>.
11246   * Fix to the esd plugin when esd-config --cflags is nonempty.
11248 ------------------------------------------------------------------------
11249 r1224 | massiot | 2001-11-21 11:47:20 +0100 (Wed, 21 Nov 2001) | 2 lines
11250 Changed paths:
11251    M /trunk/include/common.h
11252    M /trunk/include/modules_export.h
11254 Fixed compilation bugs with Qt and BeOS (henriiiiiiiiiiiiiiiiiiiiiiiii !!)
11256 ------------------------------------------------------------------------
11257 r1225 | massiot | 2001-11-21 17:47:46 +0100 (Wed, 21 Nov 2001) | 3 lines
11258 Changed paths:
11259    M /trunk/src/input/input.c
11260    M /trunk/src/misc/netutils.c
11262 (Hopefully) fixed the network connect() bug under UNIX. I need
11263 confirmation that I didn't break the Win32 port, please.
11265 ------------------------------------------------------------------------
11266 r1226 | jlj | 2001-11-21 23:33:03 +0100 (Wed, 21 Nov 2001) | 3 lines
11267 Changed paths:
11268    M /trunk/plugins/mpeg_vdec/video_parser.c
11269    M /trunk/src/misc/netutils.c
11271 Don`t use long long, use u64/s64 (int_types.h).
11272 Fixed a stale pointer in mpeg_vdec_Run().
11274 ------------------------------------------------------------------------
11275 r1227 | massiot | 2001-11-23 19:47:51 +0100 (Fri, 23 Nov 2001) | 18 lines
11276 Changed paths:
11277    M /trunk/include/netutils.h
11278    M /trunk/plugins/mpeg/input_ts.c
11279    M /trunk/src/input/input.c
11280    M /trunk/src/interface/main.c
11281    M /trunk/src/misc/netutils.c
11283 Major rewrite of the network layer. The following syntax ARE NO LONGER
11284 SUPPORTED :
11285 ts:toto:1234/meuh
11286 --server toto --broadcast meuh --port 1234
11288 The only supported syntax is :
11289 udp[stream]:[//][serveraddr:[serverport]][@[bindaddr][:bindport]]
11290 example : udpstream:toto@meuh:toto
11292 In most cases, simply passing "udpstream:" should work, since it enables
11293 unicast and broadcast reception on port 1234 from any server. Other
11294 options are only used for fine tuning and multicast.
11296 TODO :
11297 * The GTK interface is broken (glade knowledge wanted !)
11298 * Test this on all supported platforms (and fix them :)
11299 [this won't work with current channel servers - fix needed]
11301 ------------------------------------------------------------------------
11302 r1228 | sam | 2001-11-25 02:26:54 +0100 (Sun, 25 Nov 2001) | 3 lines
11303 Changed paths:
11304    M /trunk/debian/changelog
11305    M /trunk/debian/vlc-gnome.menu
11306    M /trunk/debian/vlc-gtk.menu
11307    M /trunk/debian/vlc-qt.menu
11308    M /trunk/debian/vlc.menu
11311   * Added "Video" menu hint to debian/*menu (Closes Debian bug #121036).
11313 ------------------------------------------------------------------------
11314 r1229 | stef | 2001-11-25 06:04:38 +0100 (Sun, 25 Nov 2001) | 20 lines
11315 Changed paths:
11316    M /trunk/Makefile
11317    M /trunk/Makefile.opts.in
11318    M /trunk/configure
11319    M /trunk/configure.in
11320    A /trunk/extras/libdvdread
11321    A /trunk/extras/libdvdread/.cvsignore
11322    A /trunk/extras/libdvdread/Makefile
11323    A /trunk/extras/libdvdread/bswap.h
11324    A /trunk/extras/libdvdread/dvd_reader.c
11325    A /trunk/extras/libdvdread/dvd_reader.h
11326    A /trunk/extras/libdvdread/dvd_udf.c
11327    A /trunk/extras/libdvdread/dvd_udf.h
11328    A /trunk/extras/libdvdread/dvdcss.h
11329    A /trunk/extras/libdvdread/dvdread.c
11330    A /trunk/extras/libdvdread/ifo_print.c
11331    A /trunk/extras/libdvdread/ifo_print.h
11332    A /trunk/extras/libdvdread/ifo_read.c
11333    A /trunk/extras/libdvdread/ifo_read.h
11334    A /trunk/extras/libdvdread/ifo_types.h
11335    A /trunk/extras/libdvdread/nav_print.c
11336    A /trunk/extras/libdvdread/nav_print.h
11337    A /trunk/extras/libdvdread/nav_read.c
11338    A /trunk/extras/libdvdread/nav_read.h
11339    A /trunk/extras/libdvdread/nav_types.h
11340    A /trunk/extras/libdvdread/videolan
11341    A /trunk/extras/libdvdread/videolan/.cvsignore
11342    A /trunk/extras/libdvdread/videolan/dvdread.c
11343    A /trunk/extras/libdvdread/videolan/dvdread.h
11344    A /trunk/plugins/dvdread
11345    A /trunk/plugins/dvdread/.cvsignore
11346    A /trunk/plugins/dvdread/Makefile
11347    A /trunk/plugins/dvdread/dvdread.c
11348    A /trunk/plugins/dvdread/input_dvdread.c
11349    A /trunk/plugins/dvdread/input_dvdread.h
11350    M /trunk/src/input/input.c
11352 Support for libdvdread.
11354 Libdvdread files are in extras/libdvdread. They have not been changed from
11355 those of libdvdread 0.9.2. The changes are in the subdirectory videolan.
11356 They basically consist of a new function in the API that does a readv()
11357 instead fo a read().
11359 The library is statically linked with libdvdcss from extras/libdvdcss, and
11360 the whole is statically linked with the plugin dvdread. Dvdread can only be
11361 compiled as a builtin module for the time being, I think (which means I
11362 haven't tried to compile it as a plugin).
11364 Basically, input_dvdread.c is a copy and paste from input_dvd.c with a few
11365 changes to use libdvdread calls. It is still in very alpha stage, but it
11366 should offer the same features as the current DVD input.
11368 It can be called with either the syntax: "dvdread:/dev/dvd"
11369 or "--input dvdread /dev/dvd". The command line switches (-t, -T, -c, -u)
11370 should work too.
11372 ------------------------------------------------------------------------
11373 r1230 | gbazin | 2001-11-25 23:52:21 +0100 (Sun, 25 Nov 2001) | 12 lines
11374 Changed paths:
11375    M /trunk/Makefile.opts.in
11376    M /trunk/configure
11377    M /trunk/configure.in
11378    M /trunk/extras/libdvdcss/ioctl.h
11379    A /trunk/include/bytes_swap.h
11380    M /trunk/include/common.h
11381    A /trunk/include/common_win32.h
11382    M /trunk/include/input_ext-intf.h
11383    M /trunk/include/input_ext-plugins.h
11384    M /trunk/include/modules_export.h
11385    M /trunk/include/threads.h
11386    M /trunk/plugins/ac3_adec/ac3_bit_allocate.c
11387    M /trunk/plugins/ac3_adec/ac3_decoder.c
11388    M /trunk/plugins/ac3_adec/ac3_exponent.c
11389    M /trunk/plugins/ac3_adec/ac3_imdct.c
11390    M /trunk/plugins/ac3_adec/ac3_mantissa.c
11391    M /trunk/plugins/ac3_adec/ac3_parse.c
11392    M /trunk/plugins/ac3_adec/ac3_rematrix.c
11393    M /trunk/plugins/downmix/ac3_downmix_3dn.c
11394    M /trunk/plugins/downmix/ac3_downmix_sse.c
11395    M /trunk/plugins/dummy/input_dummy.c
11396    M /trunk/plugins/dvd/input_dvd.c
11397    M /trunk/plugins/mpeg/input_es.c
11398    M /trunk/plugins/mpeg/input_ps.c
11399    M /trunk/plugins/mpeg/input_ts.c
11400    M /trunk/plugins/text/Makefile
11401    M /trunk/plugins/text/intf_rc.c
11402    M /trunk/src/misc/modules.c
11405  * Big clean-up to allow compiling every module as plugins.
11406  * Added bytes_swap.h to provide ntoh() and htol() on Win32. With this
11407      change we don't have to link winsock2 with every plugin anymore. This
11408      should also give us a slight speed increase.
11409  * Added #define WIN32_LEAN_AND_MEAN in threads.h to speed-up compilation
11410      on Win32.
11411  * Modified ac_downmix_3dn and sse so they compile with the latest gcc for
11412      Win32.
11414 (PS: the dvdread plugin doesn't compile yet on Win32)
11416 ------------------------------------------------------------------------
11417 r1231 | massiot | 2001-11-26 16:56:36 +0100 (Mon, 26 Nov 2001) | 5 lines
11418 Changed paths:
11419    M /trunk/extras/libdvdcss/libdvdcss.c
11420    M /trunk/extras/libdvdcss/libdvdcss.h
11422 Reworked Keith Packard's raw device patch. The name of the raw device
11423 is in the environment variable DVDCSS_RAW_DEVICE.
11425 Untested (as usual :-). Feedback welcome.
11427 ------------------------------------------------------------------------
11428 r1232 | fgp | 2001-11-26 23:28:05 +0100 (Mon, 26 Nov 2001) | 15 lines
11429 Changed paths:
11430    M /trunk/extras/libdvdread/bswap.h
11431    M /trunk/extras/libdvdread/dvdread.c
11432    M /trunk/extras/libdvdread/ifo_print.h
11433    M /trunk/extras/libdvdread/ifo_read.h
11434    M /trunk/extras/libdvdread/ifo_types.h
11435    M /trunk/extras/libdvdread/nav_print.h
11436    M /trunk/extras/libdvdread/nav_read.h
11437    M /trunk/extras/libdvdread/nav_types.h
11438    M /trunk/plugins/macosx/vout_macosx.c
11440  *) changed includes from
11441     #include <dvdread/...> to
11442     #include "..."
11444  *) Darwin doesn't have off64_t, stat64, lseek64. Added
11445     #ifdef SYS_DARWIN
11446     #define off64_t off_t
11447     ....
11448     #endif
11449     to dvdread.c
11451  *) Fixed stupid bug in vout_macos.x. On startup, it would
11452     try to free a non-existant QuickTime Sequence. This could be
11453     the reasons for (some?) of the crashes at startup.
11455 ------------------------------------------------------------------------
11456 r1233 | marcari | 2001-11-27 00:06:02 +0100 (Tue, 27 Nov 2001) | 3 lines
11457 Changed paths:
11458    M /trunk/src/misc/netutils.c
11460 * changed the protocol version for communication between vlc and vlcs
11461 from 12 to 13 (due to change from ts:// to udpstream://)
11463 ------------------------------------------------------------------------
11464 r1234 | massiot | 2001-11-27 11:18:33 +0100 (Tue, 27 Nov 2001) | 3 lines
11465 Changed paths:
11466    M /trunk/extras/libdvdcss/libdvdcss.c
11467    M /trunk/src/input/input_netlist.c
11469 Fixed a potential packet corruption in the DVD input (I suspect this
11470 might be the cause of the OS X problem - please confirm).
11472 ------------------------------------------------------------------------
11473 r1235 | massiot | 2001-11-27 11:50:35 +0100 (Tue, 27 Nov 2001) | 2 lines
11474 Changed paths:
11475    M /trunk/src/input/input.c
11477 Fixed a compilation issue under Win32
11479 ------------------------------------------------------------------------
11480 r1236 | massiot | 2001-11-27 11:58:11 +0100 (Tue, 27 Nov 2001) | 3 lines
11481 Changed paths:
11482    M /trunk/configure
11483    M /trunk/configure.in
11485 Disabled dvdread by default since it causes many portability problems.
11486 Enable it with --enable-dvdread.
11488 ------------------------------------------------------------------------
11489 r1237 | massiot | 2001-11-27 12:14:55 +0100 (Tue, 27 Nov 2001) | 2 lines
11490 Changed paths:
11491    M /trunk/configure
11492    M /trunk/configure.in
11494 More WIN32 portability fixes.
11496 ------------------------------------------------------------------------
11497 r1238 | massiot | 2001-11-27 12:44:48 +0100 (Tue, 27 Nov 2001) | 4 lines
11498 Changed paths:
11499    M /trunk/plugins/dvd/input_dvd.c
11501 New syntax for the dvd input :
11502    dvd:<device>[:<raw device>]
11503 The raw device must have been prepared (by root) beforehands.
11505 ------------------------------------------------------------------------
11506 r1239 | massiot | 2001-11-27 13:33:20 +0100 (Tue, 27 Nov 2001) | 4 lines
11507 Changed paths:
11508    M /trunk/doc/vlc.1
11509    M /trunk/plugins/dvd/input_dvd.c
11511 * Updated man page.
11512 * dvd:<device>[@<raw device>] to avoid device namespace collision under
11513 win32.
11515 ------------------------------------------------------------------------
11516 r1240 | massiot | 2001-11-27 13:52:54 +0100 (Tue, 27 Nov 2001) | 2 lines
11517 Changed paths:
11518    M /trunk/FAQ
11519    M /trunk/INSTALL
11520    M /trunk/README
11522 Documentation updates.
11524 ------------------------------------------------------------------------
11525 r1241 | massiot | 2001-11-27 14:06:23 +0100 (Tue, 27 Nov 2001) | 2 lines
11526 Changed paths:
11527    M /trunk/FAQ
11529 Removed obsolete entry.
11531 ------------------------------------------------------------------------
11532 r1242 | massiot | 2001-11-27 15:31:19 +0100 (Tue, 27 Nov 2001) | 2 lines
11533 Changed paths:
11534    M /trunk/plugins/x11/vout_xvideo.c
11536 Various (sometimes hopeless) fixes to try to improve xvideo stability.
11538 ------------------------------------------------------------------------
11539 r1243 | sam | 2001-11-27 15:42:46 +0100 (Tue, 27 Nov 2001) | 3 lines
11540 Changed paths:
11541    M /trunk/src/misc/netutils.c
11544   * Fixed a deadlock (bug reported by marcari).
11546 ------------------------------------------------------------------------
11547 r1244 | massiot | 2001-11-28 16:08:06 +0100 (Wed, 28 Nov 2001) | 6 lines
11548 Changed paths:
11549    M /trunk/Makefile
11550    M /trunk/configure
11551    M /trunk/configure.in
11552    M /trunk/include/common.h
11553    M /trunk/include/config.h.in
11554    M /trunk/include/modules_export.h
11555    M /trunk/include/mtime.h
11556    M /trunk/include/threads.h
11557    M /trunk/plugins/ac3_adec/ac3_adec.c
11558    M /trunk/plugins/ac3_adec/ac3_bit_allocate.c
11559    M /trunk/plugins/ac3_adec/ac3_decoder.c
11560    M /trunk/plugins/ac3_adec/ac3_exponent.c
11561    M /trunk/plugins/ac3_adec/ac3_imdct.c
11562    M /trunk/plugins/ac3_adec/ac3_mantissa.c
11563    M /trunk/plugins/ac3_adec/ac3_parse.c
11564    M /trunk/plugins/ac3_adec/ac3_rematrix.c
11565    M /trunk/plugins/ac3_spdif/ac3_iec958.c
11566    M /trunk/plugins/ac3_spdif/ac3_spdif.c
11567    M /trunk/plugins/alsa/alsa.c
11568    M /trunk/plugins/alsa/aout_alsa.c
11569    M /trunk/plugins/arts/aout_arts.c
11570    M /trunk/plugins/arts/arts.c
11571    M /trunk/plugins/beos/InterfaceWindow.cpp
11572    M /trunk/plugins/beos/MediaControlView.cpp
11573    M /trunk/plugins/beos/PlayListWindow.cpp
11574    M /trunk/plugins/beos/aout_beos.cpp
11575    M /trunk/plugins/beos/beos.cpp
11576    M /trunk/plugins/beos/intf_beos.cpp
11577    M /trunk/plugins/beos/vout_beos.cpp
11578    D /trunk/plugins/darwin
11579    M /trunk/plugins/directx/aout_directx.c
11580    M /trunk/plugins/directx/directx.c
11581    M /trunk/plugins/directx/vout_directx.c
11582    M /trunk/plugins/directx/vout_events.c
11583    M /trunk/plugins/downmix/ac3_downmix_3dn.c
11584    M /trunk/plugins/downmix/ac3_downmix_c.c
11585    M /trunk/plugins/downmix/ac3_downmix_sse.c
11586    M /trunk/plugins/downmix/downmix.c
11587    M /trunk/plugins/downmix/downmix3dn.c
11588    M /trunk/plugins/downmix/downmixsse.c
11589    M /trunk/plugins/dsp/aout_dsp.c
11590    M /trunk/plugins/dsp/dsp.c
11591    M /trunk/plugins/dummy/aout_dummy.c
11592    M /trunk/plugins/dummy/dummy.c
11593    M /trunk/plugins/dummy/input_dummy.c
11594    M /trunk/plugins/dummy/intf_dummy.c
11595    M /trunk/plugins/dummy/null.c
11596    M /trunk/plugins/dummy/vout_dummy.c
11597    M /trunk/plugins/dvd/dvd.c
11598    M /trunk/plugins/dvd/dvd_ifo.c
11599    M /trunk/plugins/dvd/dvd_summary.c
11600    M /trunk/plugins/dvd/dvd_udf.c
11601    M /trunk/plugins/dvd/input_dvd.c
11602    M /trunk/plugins/dvdread/dvdread.c
11603    M /trunk/plugins/dvdread/input_dvdread.c
11604    M /trunk/plugins/esd/aout_esd.c
11605    M /trunk/plugins/esd/esd.c
11606    M /trunk/plugins/fb/fb.c
11607    M /trunk/plugins/fb/vout_fb.c
11608    M /trunk/plugins/ggi/ggi.c
11609    M /trunk/plugins/ggi/vout_ggi.c
11610    M /trunk/plugins/glide/glide.c
11611    M /trunk/plugins/glide/vout_glide.c
11612    M /trunk/plugins/gtk/gtk.c
11613    M /trunk/plugins/gtk/gtk_callbacks.c
11614    M /trunk/plugins/gtk/gtk_control.c
11615    M /trunk/plugins/gtk/gtk_display.c
11616    M /trunk/plugins/gtk/gtk_menu.c
11617    M /trunk/plugins/gtk/gtk_modules.c
11618    M /trunk/plugins/gtk/gtk_open.c
11619    M /trunk/plugins/gtk/gtk_playlist.c
11620    M /trunk/plugins/gtk/gtk_preferences.c
11621    M /trunk/plugins/gtk/intf_gnome.c
11622    M /trunk/plugins/gtk/intf_gtk.c
11623    M /trunk/plugins/idct/idct.c
11624    M /trunk/plugins/idct/idctaltivec.c
11625    M /trunk/plugins/idct/idctclassic.c
11626    M /trunk/plugins/idct/idctmmx.c
11627    M /trunk/plugins/idct/idctmmxext.c
11628    M /trunk/plugins/imdct/ac3_imdct_3dn.c
11629    M /trunk/plugins/imdct/ac3_imdct_c.c
11630    M /trunk/plugins/imdct/ac3_imdct_common.c
11631    M /trunk/plugins/imdct/ac3_imdct_sse.c
11632    M /trunk/plugins/imdct/ac3_srfft_3dn.c
11633    M /trunk/plugins/imdct/ac3_srfft_c.c
11634    M /trunk/plugins/imdct/ac3_srfft_sse.c
11635    M /trunk/plugins/imdct/imdct.c
11636    M /trunk/plugins/imdct/imdct3dn.c
11637    M /trunk/plugins/imdct/imdctsse.c
11638    M /trunk/plugins/kde/intf_plugin.h
11639    M /trunk/plugins/kde/kde.cpp
11640    M /trunk/plugins/lpcm_adec/lpcm_adec.c
11641    M /trunk/plugins/mga/mga.c
11642    M /trunk/plugins/mga/vout_mga.c
11643    M /trunk/plugins/motion/motion.c
11644    M /trunk/plugins/motion/motion3dnow.c
11645    M /trunk/plugins/motion/motionaltivec.c
11646    M /trunk/plugins/motion/motionmmx.c
11647    M /trunk/plugins/motion/motionmmxext.c
11648    M /trunk/plugins/mpeg/es.c
11649    M /trunk/plugins/mpeg/input_es.c
11650    M /trunk/plugins/mpeg/input_ps.c
11651    M /trunk/plugins/mpeg/input_ts.c
11652    M /trunk/plugins/mpeg/ps.c
11653    M /trunk/plugins/mpeg/ts.c
11654    M /trunk/plugins/mpeg_adec/adec_layer1.c
11655    M /trunk/plugins/mpeg_adec/adec_layer2.c
11656    M /trunk/plugins/mpeg_adec/mpeg_adec.c
11657    M /trunk/plugins/mpeg_adec/mpeg_adec_generic.c
11658    M /trunk/plugins/mpeg_vdec/video_decoder.c
11659    M /trunk/plugins/mpeg_vdec/video_parser.c
11660    M /trunk/plugins/mpeg_vdec/vpar_blocks.c
11661    M /trunk/plugins/mpeg_vdec/vpar_headers.c
11662    M /trunk/plugins/mpeg_vdec/vpar_pool.c
11663    M /trunk/plugins/mpeg_vdec/vpar_synchro.c
11664    M /trunk/plugins/qnx/aout_qnx.c
11665    M /trunk/plugins/qnx/qnx.c
11666    M /trunk/plugins/qnx/vout_qnx.c
11667    M /trunk/plugins/qt/intf_qt.cpp
11668    M /trunk/plugins/qt/qt.cpp
11669    M /trunk/plugins/sdl/aout_sdl.c
11670    M /trunk/plugins/sdl/sdl.c
11671    M /trunk/plugins/sdl/vout_sdl.c
11672    M /trunk/plugins/spu_dec/spu_decoder.c
11673    M /trunk/plugins/text/intf_ncurses.c
11674    M /trunk/plugins/text/intf_rc.c
11675    M /trunk/plugins/text/ncurses.c
11676    M /trunk/plugins/text/rc.c
11677    M /trunk/plugins/vcd/input_vcd.c
11678    M /trunk/plugins/vcd/linux_cdrom_tools.c
11679    M /trunk/plugins/vcd/vcd.c
11680    M /trunk/plugins/x11/vout_x11.c
11681    M /trunk/plugins/x11/vout_xvideo.c
11682    M /trunk/plugins/x11/x11.c
11683    M /trunk/plugins/x11/xvideo.c
11684    M /trunk/plugins/yuv/transforms_yuv.c
11685    M /trunk/plugins/yuv/transforms_yuvmmx.c
11686    M /trunk/plugins/yuv/video_yuv.c
11687    M /trunk/plugins/yuv/video_yuvmmx.c
11688    M /trunk/plugins/yuv/yuv.c
11689    M /trunk/plugins/yuv/yuvmmx.c
11690    M /trunk/src/audio_output/aout_ext-dec.c
11691    M /trunk/src/audio_output/aout_s16.c
11692    M /trunk/src/audio_output/aout_s8.c
11693    M /trunk/src/audio_output/aout_spdif.c
11694    M /trunk/src/audio_output/aout_u16.c
11695    M /trunk/src/audio_output/aout_u8.c
11696    M /trunk/src/audio_output/audio_output.c
11697    M /trunk/src/input/input.c
11698    M /trunk/src/input/input_clock.c
11699    M /trunk/src/input/input_dec.c
11700    M /trunk/src/input/input_ext-dec.c
11701    M /trunk/src/input/input_ext-intf.c
11702    M /trunk/src/input/input_netlist.c
11703    M /trunk/src/input/input_programs.c
11704    M /trunk/src/input/mpeg_system.c
11705    M /trunk/src/interface/interface.c
11706    M /trunk/src/interface/intf_channels.c
11707    M /trunk/src/interface/intf_msg.c
11708    M /trunk/src/interface/intf_playlist.c
11709    M /trunk/src/interface/main.c
11710    M /trunk/src/misc/beos_specific.cpp
11711    M /trunk/src/misc/darwin_specific.c
11712    M /trunk/src/misc/modules.c
11713    M /trunk/src/misc/mtime.c
11714    M /trunk/src/misc/netutils.c
11715    M /trunk/src/misc/tests.c
11716    M /trunk/src/misc/win32_specific.c
11717    M /trunk/src/video_output/video_output.c
11718    M /trunk/src/video_output/video_spu.c
11719    M /trunk/src/video_output/video_text.c
11720    M /trunk/src/video_output/video_yuv.c
11722 * Added error checking in pthread wrapper ; as a result, intf_msg.h must
11723 now be included *before* threads.h ;
11724 * Changed all files to include intf_msg.h before threads.h ; while I was
11725 at it, I update the copyright notices ;
11726 * Removed the obsolete darwin plug-in.
11728 ------------------------------------------------------------------------
11729 r1245 | fgp | 2001-11-29 02:01:48 +0100 (Thu, 29 Nov 2001) | 8 lines
11730 Changed paths:
11731    M /trunk/include/threads.h
11732    M /trunk/plugins/macosx/aout_macosx.c
11733    M /trunk/plugins/macosx/intf_main.c
11734    M /trunk/plugins/macosx/intf_vlc_wrapper.c
11735    M /trunk/plugins/macosx/macosx.h
11736    M /trunk/plugins/macosx/vout_macosx.c
11738   *) Added "#include <string.>" to include/threads.h
11739      It' wouldn't compile on OSX without this.
11741   *) Removed the mutex the vout and intf thread (were supposed to use)
11742      for syncronizing acces to the p_vout->p_sys structure.
11743      The p_vout->change_lock mutex is used for syncronization now. (and
11744      should make synronization work)
11746 ------------------------------------------------------------------------
11747 r1246 | massiot | 2001-11-29 11:20:56 +0100 (Thu, 29 Nov 2001) | 3 lines
11748 Changed paths:
11749    M /trunk/include/threads.h
11750    M /trunk/plugins/macosx/aout_macosx.c
11751    M /trunk/plugins/macosx/intf_main.c
11752    M /trunk/plugins/macosx/intf_vlc_wrapper.c
11753    M /trunk/plugins/macosx/macosx.h
11754    M /trunk/plugins/macosx/vout_macosx.c
11756 Moved #include <string.h> to macosx plug-in instead of threads.h, as in
11757 other plug-ins.
11759 ------------------------------------------------------------------------
11760 r1247 | massiot | 2001-11-29 16:34:28 +0100 (Thu, 29 Nov 2001) | 2 lines
11761 Changed paths:
11762    M /trunk/Makefile
11764 Fixed a problem with vlc.app.
11766 ------------------------------------------------------------------------
11767 r1248 | massiot | 2001-11-29 16:56:37 +0100 (Thu, 29 Nov 2001) | 2 lines
11768 Changed paths:
11769    M /trunk/plugins/macosx/macosx.c
11771 Fixed another compilation problem.
11773 ------------------------------------------------------------------------
11774 r1249 | massiot | 2001-11-29 16:57:07 +0100 (Thu, 29 Nov 2001) | 2 lines
11775 Changed paths:
11776    M /trunk/.cvsignore
11778 Added vlc.app
11780 ------------------------------------------------------------------------
11781 r1250 | jobi | 2001-11-29 18:24:48 +0100 (Thu, 29 Nov 2001) | 2 lines
11782 Changed paths:
11783    M /trunk/Makefile
11785 Removed a bug in the Makefile that made the CVS-snapshots building fail.
11787 ------------------------------------------------------------------------
11788 r1251 | stef | 2001-11-30 01:34:03 +0100 (Fri, 30 Nov 2001) | 3 lines
11789 Changed paths:
11790    M /trunk/INSTALL.libdvdcss
11791    M /trunk/README.libdvdcss
11794 -Update for libdvdcss documentation
11796 ------------------------------------------------------------------------
11797 r1252 | tcastley | 2001-11-30 10:49:48 +0100 (Fri, 30 Nov 2001) | 2 lines
11798 Changed paths:
11799    M /trunk/plugins/beos/InterfaceWindow.cpp
11800    M /trunk/plugins/beos/MediaControlView.cpp
11801    M /trunk/plugins/beos/PlayListWindow.cpp
11802    M /trunk/plugins/beos/beos.cpp
11804 Included strings.h to fix compile errors due to the change in threads.h
11806 ------------------------------------------------------------------------
11807 r1253 | gbazin | 2001-11-30 23:52:40 +0100 (Fri, 30 Nov 2001) | 5 lines
11808 Changed paths:
11809    M /trunk/src/input/input_dec.c
11812  * DeleteDecoderConfig wasn't freeing (anymore) the packets left in the
11813     decoder fifo. This bug was creating an io_vec starving on title change
11814     when playing DVDs.
11816 ------------------------------------------------------------------------
11817 r1254 | tcastley | 2001-12-01 07:38:53 +0100 (Sat, 01 Dec 2001) | 2 lines
11818 Changed paths:
11819    M /trunk/plugins/beos/VideoWindow.h
11820    M /trunk/plugins/beos/vout_beos.cpp
11822 Implemented simple BDirectWindow (DMA) support
11824 ------------------------------------------------------------------------
11825 r1255 | stef | 2001-12-02 18:32:19 +0100 (Sun, 02 Dec 2001) | 5 lines
11826 Changed paths:
11827    M /trunk/src/input/input_netlist.c
11830 -hopeless fix for the input netlist corruption bug.
11832 Please test.
11834 ------------------------------------------------------------------------
11835 r1256 | fgp | 2001-12-02 19:04:29 +0100 (Sun, 02 Dec 2001) | 3 lines
11836 Changed paths:
11837    M /trunk/plugins/macosx/vout_macosx.c
11839  *) Fixed stupid bug in vout_Manage. It sometimes called SetDSequenceMatrix
11840     when there was no valid sequence.
11842 ------------------------------------------------------------------------
11843 r1257 | massiot | 2001-12-03 12:49:04 +0100 (Mon, 03 Dec 2001) | 2 lines
11844 Changed paths:
11845    M /trunk/plugins/mpeg/input_ps.c
11846    M /trunk/src/input/mpeg_system.c
11848 Fixed numerous bugs in ES selection.
11850 ------------------------------------------------------------------------
11851 r1258 | massiot | 2001-12-03 14:58:59 +0100 (Mon, 03 Dec 2001) | 2 lines
11852 Changed paths:
11853    M /trunk/include/threads.h
11854    M /trunk/plugins/x11/vout_xvideo.c
11856 Fixed a crash when pausing.
11858 ------------------------------------------------------------------------
11859 r1259 | massiot | 2001-12-03 16:58:14 +0100 (Mon, 03 Dec 2001) | 2 lines
11860 Changed paths:
11861    M /trunk/configure
11862    M /trunk/configure.in
11864 More checks for GTK headers.
11866 ------------------------------------------------------------------------
11867 r1260 | sam | 2001-12-03 17:18:37 +0100 (Mon, 03 Dec 2001) | 8 lines
11868 Changed paths:
11869    M /trunk/ChangeLog
11870    M /trunk/ChangeLog.libdvdcss
11871    M /trunk/Makefile
11872    M /trunk/configure
11873    M /trunk/configure.in
11874    M /trunk/debian/changelog
11875    M /trunk/debian/control
11876    M /trunk/debian/libdvdcss1.dirs
11877    M /trunk/debian/rules
11878    M /trunk/doc/developer/decoders.xml
11879    M /trunk/doc/vlc.1
11880    M /trunk/include/common.h
11881    M /trunk/include/config.h.in
11882    M /trunk/include/defs.h.in
11883    M /trunk/include/input_ext-dec.h
11884    M /trunk/include/main.h
11885    M /trunk/include/modules.h
11886    M /trunk/include/modules_export.h
11887    M /trunk/plugins/ac3_adec/ac3_adec.c
11888    M /trunk/plugins/ac3_spdif/ac3_spdif.c
11889    M /trunk/plugins/alsa/aout_alsa.c
11890    M /trunk/plugins/gtk/gtk_open.c
11891    M /trunk/plugins/lpcm_adec/lpcm_adec.c
11892    A /trunk/plugins/memcpy
11893    A /trunk/plugins/memcpy/.cvsignore
11894    A /trunk/plugins/memcpy/Makefile
11895    A /trunk/plugins/memcpy/fastmemcpy.h
11896    A /trunk/plugins/memcpy/memcpy.c
11897    A /trunk/plugins/memcpy/memcpy3dn.c
11898    A /trunk/plugins/memcpy/memcpymmx.c
11899    A /trunk/plugins/memcpy/memcpymmxext.c
11900    M /trunk/plugins/mpeg/input_ts.h
11901    M /trunk/plugins/mpeg_adec/mpeg_adec.c
11902    M /trunk/plugins/mpeg_vdec/video_parser.c
11903    M /trunk/plugins/sdl/vout_sdl.c
11904    M /trunk/plugins/spu_dec/spu_decoder.c
11905    M /trunk/plugins/vcd/input_vcd.c
11906    M /trunk/plugins/x11/vout_xvideo.c
11907    M /trunk/src/input/input_dec.c
11908    M /trunk/src/interface/main.c
11911   * Borrowed MPlayer's fast memcpy() routines. Best is autodetected, choose
11912     "--memcpy <whatever>" to choose one from c, mmx, mmxext or 3dn.
11913     Please test! Especially Athlon users.
11914   * Added versioned build-dep to libasound2-dev (Closes Debian bug #121057).
11915   * Updated Gtk/GNOME interfaces to use "udpstream" instead of "ts".
11916   * Unrolled ChangeLog.
11918 ------------------------------------------------------------------------
11919 r1261 | massiot | 2001-12-03 17:43:25 +0100 (Mon, 03 Dec 2001) | 2 lines
11920 Changed paths:
11921    M /trunk/configure
11922    M /trunk/configure.in
11924 Fixed a bug in my previous commit.
11926 ------------------------------------------------------------------------
11927 r1262 | stef | 2001-12-03 18:34:08 +0100 (Mon, 03 Dec 2001) | 4 lines
11928 Changed paths:
11929    M /trunk/plugins/mpeg/input_ts.c
11930    M /trunk/src/input/input_netlist.c
11933 -added eof for ts seekable streams
11934 -close netlist when ts input ends
11936 ------------------------------------------------------------------------
11937 r1263 | massiot | 2001-12-03 18:55:45 +0100 (Mon, 03 Dec 2001) | 2 lines
11938 Changed paths:
11939    M /trunk/plugins/mpeg/input_ps.c
11940    M /trunk/src/input/mpeg_system.c
11942 Reversed my previous patch (too buggy).
11944 ------------------------------------------------------------------------
11945 r1264 | massiot | 2001-12-04 14:47:46 +0100 (Tue, 04 Dec 2001) | 2 lines
11946 Changed paths:
11947    M /trunk/AUTHORS
11948    M /trunk/ChangeLog
11949    M /trunk/Makefile
11950    M /trunk/Makefile.opts.in
11951    M /trunk/configure
11952    M /trunk/configure.in
11953    M /trunk/include/config.h.in
11954    M /trunk/include/tests.h
11955    A /trunk/ipkg/patch
11956    M /trunk/ipkg/rules
11957    A /trunk/plugins/mad_adec
11958    A /trunk/plugins/mad_adec/.cvsignore
11959    A /trunk/plugins/mad_adec/API
11960    A /trunk/plugins/mad_adec/BUGS
11961    A /trunk/plugins/mad_adec/DESIGN
11962    A /trunk/plugins/mad_adec/Makefile
11963    A /trunk/plugins/mad_adec/TODO
11964    A /trunk/plugins/mad_adec/docs
11965    A /trunk/plugins/mad_adec/docs/joe_drew.txt
11966    A /trunk/plugins/mad_adec/docs/rob_leslie.txt
11967    A /trunk/plugins/mad_adec/mad_adec.c
11968    A /trunk/plugins/mad_adec/mad_adec.h
11969    A /trunk/plugins/mad_adec/mad_libmad.c
11970    A /trunk/plugins/mad_adec/mad_libmad.h
11971    M /trunk/plugins/mpeg_adec/mpeg_adec.c
11972    M /trunk/src/interface/main.c
11974 libmad plug-in, courtesy of Jean-Paul Saman <jpsaman@wxs.nl>.
11976 ------------------------------------------------------------------------
11977 r1265 | jobi | 2001-12-05 04:31:04 +0100 (Wed, 05 Dec 2001) | 10 lines
11978 Changed paths:
11979    M /trunk/include/input_ext-intf.h
11980    M /trunk/plugins/dvd/input_dvd.c
11981    M /trunk/plugins/mpeg/input_ps.c
11982    M /trunk/plugins/vcd/input_vcd.c
11983    M /trunk/src/input/input_clock.c
11984    M /trunk/src/input/input_programs.c
11985    M /trunk/src/input/mpeg_system.c
11987 * Added 2 fields, p_selected_program and p_new_program, to the
11988   input_thread_t structure, so that we may support multi programs
11989   streams.
11990 * Modified inputs to take account of this change.
11991 * Modified input_clock.c so that it doesn't refer to pp_programs[0]
11992   any more.
11994 Now we should not refer to the first program, but to the selected
11995 program. Functions to change the current program are coming.
11997 ------------------------------------------------------------------------
11998 r1266 | massiot | 2001-12-05 11:30:25 +0100 (Wed, 05 Dec 2001) | 2 lines
11999 Changed paths:
12000    M /trunk/src/interface/main.c
12002 Fix for altivec detection (courtesy of walken).
12004 ------------------------------------------------------------------------
12005 r1267 | tcastley | 2001-12-06 11:29:40 +0100 (Thu, 06 Dec 2001) | 4 lines
12006 Changed paths:
12007    M /trunk/plugins/beos/InterfaceWindow.cpp
12008    M /trunk/plugins/beos/VideoWindow.h
12009    M /trunk/plugins/beos/vout_beos.cpp
12011 Added funcionality for vertical retrace sync for refresh rates 60Hz or lower
12012 (Thanks Rudolf)
12013 Fixed the Prev Title Bug, now works.
12015 ------------------------------------------------------------------------
12016 r1268 | massiot | 2001-12-06 11:53:42 +0100 (Thu, 06 Dec 2001) | 6 lines
12017 Changed paths:
12018    M /trunk/configure
12019    M /trunk/configure.in
12020    M /trunk/doc/vlc.1
12021    M /trunk/include/main.h
12022    M /trunk/plugins/x11/vout_xvideo.c
12023    M /trunk/src/audio_output/aout_s16.c
12024    M /trunk/src/audio_output/aout_u8.c
12025    M /trunk/src/audio_output/audio_output.c
12026    M /trunk/src/input/input_clock.c
12027    M /trunk/src/interface/main.c
12029 * mad plug-in is now built-in to avoid PIC/non-PIC collision ;
12030 * Updated documentation ;
12031 * New --desync option, to delay the video (in case of lip desynchronization) ;
12032 this is bad, but we have no other option for the moment ;
12033 * Clicking in vout now pauses the stream, patch courtesy of Peter Surda.
12035 ------------------------------------------------------------------------
12036 r1269 | massiot | 2001-12-06 12:18:22 +0100 (Thu, 06 Dec 2001) | 2 lines
12037 Changed paths:
12038    M /trunk/doc/vlc.1
12040 Updated man page.
12042 ------------------------------------------------------------------------
12043 r1270 | massiot | 2001-12-06 14:46:23 +0100 (Thu, 06 Dec 2001) | 2 lines
12044 Changed paths:
12045    M /trunk/plugins/idct/idctaltivec.c
12046    M /trunk/plugins/motion/motionaltivec.c
12048 Fixed dumb renaming of #define's for altivec :-p.
12050 ------------------------------------------------------------------------
12051 r1271 | massiot | 2001-12-06 14:53:52 +0100 (Thu, 06 Dec 2001) | 2 lines
12052 Changed paths:
12053    M /trunk/configure
12054    M /trunk/configure.in
12056 Fix for altivec under Linux.
12058 ------------------------------------------------------------------------
12059 r1272 | jobi | 2001-12-07 17:47:47 +0100 (Fri, 07 Dec 2001) | 6 lines
12060 Changed paths:
12061    M /trunk/include/input_ext-intf.h
12062    M /trunk/include/input_ext-plugins.h
12063    M /trunk/include/modules.h
12064    M /trunk/plugins/dvd/input_dvd.c
12065    M /trunk/plugins/mpeg/input_es.c
12066    M /trunk/plugins/mpeg/input_ps.c
12067    M /trunk/plugins/mpeg/input_ts.c
12068    M /trunk/plugins/vcd/input_vcd.c
12069    M /trunk/src/input/input.c
12070    M /trunk/src/input/input_ext-intf.c
12071    M /trunk/src/input/input_programs.c
12073 * added functions in inputs to change the current program (most of
12074   them do nothing)
12076 All inputs should now have a pf_setprogram function. A default one is
12077 provided in input_programs.c.
12079 ------------------------------------------------------------------------
12080 r1273 | sam | 2001-12-07 19:33:08 +0100 (Fri, 07 Dec 2001) | 5 lines
12081 Changed paths:
12082    M /trunk/include/common.h
12083    M /trunk/include/config.h.in
12084    M /trunk/include/input_ext-dec.h
12085    M /trunk/include/main.h
12086    M /trunk/include/modules.h
12087    M /trunk/include/modules_export.h
12088    M /trunk/plugins/alsa/aout_alsa.c
12089    M /trunk/plugins/arts/aout_arts.c
12090    M /trunk/plugins/beos/InterfaceWindow.cpp
12091    M /trunk/plugins/beos/MediaControlView.cpp
12092    M /trunk/plugins/beos/PlayListWindow.cpp
12093    M /trunk/plugins/beos/aout_beos.cpp
12094    M /trunk/plugins/beos/intf_beos.cpp
12095    M /trunk/plugins/beos/vout_beos.cpp
12096    M /trunk/plugins/directx/aout_directx.c
12097    M /trunk/plugins/directx/vout_directx.c
12098    M /trunk/plugins/directx/vout_events.c
12099    M /trunk/plugins/dsp/aout_dsp.c
12100    M /trunk/plugins/dummy/aout_dummy.c
12101    M /trunk/plugins/dummy/input_dummy.c
12102    M /trunk/plugins/dummy/intf_dummy.c
12103    M /trunk/plugins/dvd/dvd_summary.c
12104    M /trunk/plugins/dvd/input_dvd.c
12105    M /trunk/plugins/dvdread/input_dvdread.c
12106    M /trunk/plugins/esd/aout_esd.c
12107    M /trunk/plugins/fb/vout_fb.c
12108    M /trunk/plugins/ggi/vout_ggi.c
12109    M /trunk/plugins/glide/vout_glide.c
12110    M /trunk/plugins/gtk/gtk_callbacks.c
12111    M /trunk/plugins/gtk/gtk_control.c
12112    M /trunk/plugins/gtk/gtk_display.c
12113    M /trunk/plugins/gtk/gtk_menu.c
12114    M /trunk/plugins/gtk/gtk_modules.c
12115    M /trunk/plugins/gtk/gtk_open.c
12116    M /trunk/plugins/gtk/gtk_playlist.c
12117    M /trunk/plugins/gtk/gtk_preferences.c
12118    M /trunk/plugins/gtk/intf_gnome.c
12119    M /trunk/plugins/gtk/intf_gtk.c
12120    M /trunk/plugins/kde/intf_plugin.h
12121    M /trunk/plugins/macosx/aout_macosx.c
12122    M /trunk/plugins/macosx/intf_vlc_wrapper.c
12123    M /trunk/plugins/macosx/vout_macosx.c
12124    M /trunk/plugins/memcpy/memcpy.c
12125    M /trunk/plugins/memcpy/memcpy3dn.c
12126    M /trunk/plugins/memcpy/memcpymmx.c
12127    M /trunk/plugins/memcpy/memcpymmxext.c
12128    M /trunk/plugins/mpeg/input_es.c
12129    M /trunk/plugins/mpeg/input_ps.c
12130    M /trunk/plugins/mpeg/input_ts.c
12131    M /trunk/plugins/mpeg/input_ts.h
12132    M /trunk/plugins/mpeg_vdec/video_parser.c
12133    M /trunk/plugins/mpeg_vdec/vpar_synchro.c
12134    M /trunk/plugins/qnx/aout_qnx.c
12135    M /trunk/plugins/qnx/vout_qnx.c
12136    M /trunk/plugins/qt/intf_qt.cpp
12137    M /trunk/plugins/sdl/aout_sdl.c
12138    M /trunk/plugins/sdl/vout_sdl.c
12139    M /trunk/plugins/text/intf_ncurses.c
12140    M /trunk/plugins/vcd/input_vcd.c
12141    M /trunk/plugins/vcd/linux_cdrom_tools.c
12142    M /trunk/plugins/x11/vout_x11.c
12143    M /trunk/plugins/x11/vout_xvideo.c
12144    M /trunk/src/audio_output/aout_ext-dec.c
12145    M /trunk/src/audio_output/aout_s16.c
12146    M /trunk/src/audio_output/aout_u8.c
12147    M /trunk/src/audio_output/audio_output.c
12148    M /trunk/src/input/input.c
12149    M /trunk/src/input/input_clock.c
12150    M /trunk/src/input/input_programs.c
12151    M /trunk/src/input/mpeg_system.c
12152    M /trunk/src/interface/interface.c
12153    M /trunk/src/interface/intf_channels.c
12154    M /trunk/src/interface/intf_msg.c
12155    M /trunk/src/interface/intf_playlist.c
12156    M /trunk/src/interface/main.c
12157    M /trunk/src/misc/modules.c
12158    M /trunk/src/misc/netutils.c
12159    M /trunk/src/misc/tests.c
12160    M /trunk/src/video_output/video_output.c
12163   * Fixed a total breakage of decoder plugins introduced by fast_memcpy.
12164   * Got rid of #include "main.h", included it in common.h instead ; got
12165     rid of #include "config.h" in most files as well.
12167 ------------------------------------------------------------------------
12168 r1274 | massiot | 2001-12-07 20:22:46 +0100 (Fri, 07 Dec 2001) | 2 lines
12169 Changed paths:
12170    M /trunk/ChangeLog
12171    M /trunk/ChangeLog.libdvdcss
12172    M /trunk/configure
12173    M /trunk/configure.in
12174    M /trunk/extras/libdvdcss/libdvdcss.spec
12175    M /trunk/ipkg/control
12176    M /trunk/vlc.spec
12178 Bumped up revision number to 0.2.92-dev and 1.0.1-dev.
12180 ------------------------------------------------------------------------
12181 r1275 | massiot | 2001-12-07 20:25:39 +0100 (Fri, 07 Dec 2001) | 2 lines
12182 Changed paths:
12183    M /trunk/debian/changelog
12185 0.2.92 pre-release.
12187 ------------------------------------------------------------------------
12188 r1280 | sam | 2001-12-09 18:01:37 +0100 (Sun, 09 Dec 2001) | 21 lines
12189 Changed paths:
12190    M /trunk/AUTHORS
12191    M /trunk/Makefile
12192    M /trunk/Makefile.opts.in
12193    M /trunk/configure
12194    M /trunk/configure.in
12195    M /trunk/debian/control
12196    M /trunk/debian/rules
12197    M /trunk/extras/libdvdcss/css.c
12198    M /trunk/extras/libdvdcss/ioctl.c
12199    M /trunk/extras/libdvdcss/libdvdcss.c
12200    M /trunk/include/common.h
12201    M /trunk/include/config.h.in
12202    M /trunk/include/defs.h.in
12203    M /trunk/include/interface.h
12204    M /trunk/include/modules.h
12205    M /trunk/include/modules_export.h
12206    M /trunk/include/vdec_ext-plugins.h
12207    M /trunk/include/video.h
12208    M /trunk/include/video_output.h
12209    M /trunk/ipkg/rules
12210    M /trunk/plugins/ac3_adec/ac3_adec.c
12211    M /trunk/plugins/ac3_adec/ac3_bit_allocate.c
12212    M /trunk/plugins/ac3_adec/ac3_decoder.c
12213    M /trunk/plugins/ac3_adec/ac3_exponent.c
12214    M /trunk/plugins/ac3_adec/ac3_imdct.c
12215    M /trunk/plugins/ac3_adec/ac3_mantissa.c
12216    M /trunk/plugins/ac3_adec/ac3_parse.c
12217    M /trunk/plugins/ac3_adec/ac3_rematrix.c
12218    M /trunk/plugins/ac3_spdif/ac3_iec958.c
12219    M /trunk/plugins/ac3_spdif/ac3_spdif.c
12220    M /trunk/plugins/alsa/alsa.c
12221    M /trunk/plugins/arts/arts.c
12222    M /trunk/plugins/beos/beos.cpp
12223    A /trunk/plugins/chroma
12224    A /trunk/plugins/chroma/.cvsignore
12225    A /trunk/plugins/chroma/Makefile
12226    M /trunk/plugins/directx/directx.c
12227    M /trunk/plugins/downmix/ac3_downmix_3dn.c
12228    M /trunk/plugins/downmix/ac3_downmix_c.c
12229    M /trunk/plugins/downmix/ac3_downmix_sse.c
12230    M /trunk/plugins/downmix/downmix.c
12231    M /trunk/plugins/downmix/downmix3dn.c
12232    M /trunk/plugins/downmix/downmixsse.c
12233    M /trunk/plugins/dsp/dsp.c
12234    M /trunk/plugins/dummy/dummy.c
12235    M /trunk/plugins/dummy/null.c
12236    M /trunk/plugins/dummy/vout_dummy.c
12237    M /trunk/plugins/dvd/dummy_dvdcss.c
12238    M /trunk/plugins/dvd/dvd.c
12239    M /trunk/plugins/dvd/dvd_ifo.c
12240    M /trunk/plugins/dvd/dvd_udf.c
12241    M /trunk/plugins/dvdread/dvdread.c
12242    M /trunk/plugins/esd/esd.c
12243    M /trunk/plugins/fb/fb.c
12244    M /trunk/plugins/ggi/ggi.c
12245    M /trunk/plugins/glide/glide.c
12246    M /trunk/plugins/gtk/gnome.c
12247    M /trunk/plugins/gtk/gtk.c
12248    M /trunk/plugins/idct/idct.c
12249    M /trunk/plugins/idct/idctaltivec.c
12250    M /trunk/plugins/idct/idctclassic.c
12251    M /trunk/plugins/idct/idctmmx.c
12252    M /trunk/plugins/idct/idctmmxext.c
12253    A /trunk/plugins/idct/vdec_block_c.c
12254    A /trunk/plugins/idct/vdec_block_mmx.c
12255    M /trunk/plugins/imdct/ac3_imdct_3dn.c
12256    M /trunk/plugins/imdct/ac3_imdct_c.c
12257    M /trunk/plugins/imdct/ac3_imdct_common.c
12258    M /trunk/plugins/imdct/ac3_imdct_sse.c
12259    M /trunk/plugins/imdct/ac3_srfft_3dn.c
12260    M /trunk/plugins/imdct/ac3_srfft_c.c
12261    M /trunk/plugins/imdct/ac3_srfft_sse.c
12262    M /trunk/plugins/imdct/imdct.c
12263    M /trunk/plugins/imdct/imdct3dn.c
12264    M /trunk/plugins/imdct/imdctsse.c
12265    M /trunk/plugins/lpcm_adec/lpcm_adec.c
12266    M /trunk/plugins/macosx/intf_main.c
12267    M /trunk/plugins/macosx/macosx.c
12268    A /trunk/plugins/mad
12269    A /trunk/plugins/mad/.cvsignore
12270    A /trunk/plugins/mad/API
12271    A /trunk/plugins/mad/BUGS
12272    A /trunk/plugins/mad/DESIGN
12273    A /trunk/plugins/mad/Makefile
12274    A /trunk/plugins/mad/TODO
12275    A /trunk/plugins/mad/docs
12276    A /trunk/plugins/mad/docs/joe_drew.txt
12277    A /trunk/plugins/mad/docs/rob_leslie.txt
12278    A /trunk/plugins/mad/mad_adec.c
12279    A /trunk/plugins/mad/mad_adec.h
12280    A /trunk/plugins/mad/mad_libmad.c
12281    A /trunk/plugins/mad/mad_libmad.h
12282    D /trunk/plugins/mad_adec
12283    M /trunk/plugins/mga/mga.c
12284    M /trunk/plugins/mga/vout_mga.c
12285    M /trunk/plugins/motion/motion.c
12286    M /trunk/plugins/motion/motion3dnow.c
12287    M /trunk/plugins/motion/motionaltivec.c
12288    M /trunk/plugins/motion/motionmmx.c
12289    M /trunk/plugins/motion/motionmmxext.c
12290    A /trunk/plugins/motion/vdec_motion_common.c
12291    A /trunk/plugins/motion/vdec_motion_inner.c
12292    A /trunk/plugins/motion/vdec_motion_inner_mmx.c
12293    A /trunk/plugins/motion/vdec_motion_inner_mmxext.c
12294    D /trunk/plugins/mpeg
12295    M /trunk/plugins/mpeg_adec/adec_layer1.c
12296    M /trunk/plugins/mpeg_adec/adec_layer2.c
12297    M /trunk/plugins/mpeg_adec/mpeg_adec.c
12298    M /trunk/plugins/mpeg_adec/mpeg_adec_generic.c
12299    A /trunk/plugins/mpeg_system
12300    A /trunk/plugins/mpeg_system/.cvsignore
12301    A /trunk/plugins/mpeg_system/Makefile
12302    A /trunk/plugins/mpeg_system/input_es.c
12303    A /trunk/plugins/mpeg_system/input_es.h
12304    A /trunk/plugins/mpeg_system/input_ps.c
12305    A /trunk/plugins/mpeg_system/input_ps.h
12306    A /trunk/plugins/mpeg_system/input_ts.c
12307    A /trunk/plugins/mpeg_system/input_ts.h
12308    A /trunk/plugins/mpeg_system/mpeg_es.c
12309    A /trunk/plugins/mpeg_system/mpeg_ps.c
12310    A /trunk/plugins/mpeg_system/mpeg_ts.c
12311    M /trunk/plugins/mpeg_vdec/video_decoder.c
12312    M /trunk/plugins/mpeg_vdec/vpar_blocks.c
12313    M /trunk/plugins/mpeg_vdec/vpar_headers.c
12314    M /trunk/plugins/mpeg_vdec/vpar_pool.c
12315    M /trunk/plugins/qnx/qnx.c
12316    M /trunk/plugins/qt/qt.cpp
12317    M /trunk/plugins/sdl/sdl.c
12318    M /trunk/plugins/sdl/vout_sdl.c
12319    D /trunk/plugins/spu_dec
12320    A /trunk/plugins/spudec
12321    A /trunk/plugins/spudec/.cvsignore
12322    A /trunk/plugins/spudec/Makefile
12323    A /trunk/plugins/spudec/spu_decoder.c
12324    A /trunk/plugins/spudec/spu_decoder.h
12325    M /trunk/plugins/text/intf_rc.c
12326    M /trunk/plugins/text/ncurses.c
12327    M /trunk/plugins/text/rc.c
12328    M /trunk/plugins/vcd/input_vcd.c
12329    M /trunk/plugins/vcd/vcd.c
12330    M /trunk/plugins/x11/Makefile
12331    A /trunk/plugins/x11/vout_common.c
12332    A /trunk/plugins/x11/vout_common.h
12333    M /trunk/plugins/x11/vout_x11.c
12334    M /trunk/plugins/x11/vout_xvideo.c
12335    M /trunk/plugins/x11/x11.c
12336    M /trunk/plugins/x11/xvideo.c
12337    D /trunk/plugins/yuv
12338    M /trunk/src/audio_output/aout_s8.c
12339    M /trunk/src/audio_output/aout_spdif.c
12340    M /trunk/src/audio_output/aout_u16.c
12341    M /trunk/src/input/input_dec.c
12342    M /trunk/src/input/input_ext-dec.c
12343    M /trunk/src/input/input_ext-intf.c
12344    M /trunk/src/input/input_netlist.c
12345    M /trunk/src/input/mpeg_system.c
12346    M /trunk/src/interface/interface.c
12347    M /trunk/src/interface/main.c
12348    M /trunk/src/misc/beos_specific.cpp
12349    M /trunk/src/misc/darwin_specific.c
12350    M /trunk/src/misc/iso_lang.c
12351    M /trunk/src/misc/mtime.c
12352    M /trunk/src/misc/win32_specific.c
12353    M /trunk/src/video_output/video_output.c
12354    D /trunk/src/video_output/video_spu.c
12355    D /trunk/src/video_output/video_spu.h
12356    M /trunk/src/video_output/video_text.c
12357    D /trunk/src/video_output/video_yuv.c
12358    D /trunk/src/video_output/video_yuv.h
12359    A /trunk/src/video_output/vout_pictures.c
12360    A /trunk/src/video_output/vout_subpictures.c
12363   * COMPLETE CVS BREAKAGE !! The MAIN branch is going to be a playground
12364     for my nevrotic and destructive pulsions during the next few hours!
12366   * If you want to test vlc, please use the v0_2_92_branch branch.
12368   * Stuff currently working:
12369      - direct to YUV buffer decoding
12370      - non-ugly subtitle blending
12371      - XVideo and SDL video output
12373   * Stuff currently utterly broken:
12374      - aspect ratio
12375      - software rendering (ie, all other video output plugins)
12377   * Additional misc changes:
12378      - Renamed spu_dec to spudec and mad_adec to mad to stay coherent with
12379        other plugins. Also, renamed mpeg to mpeg_system.
12380      - Added jobi to the AUTHORS file.
12381      - Factored code common to vout_x11.c and vout_xvideo.c.
12383 ------------------------------------------------------------------------
12384 r1281 | sam | 2001-12-09 18:08:36 +0100 (Sun, 09 Dec 2001) | 3 lines
12385 Changed paths:
12386    M /trunk/Makefile
12389   * Fixed Debian package builds.
12391 ------------------------------------------------------------------------
12392 r1284 | sam | 2001-12-10 05:53:11 +0100 (Mon, 10 Dec 2001) | 9 lines
12393 Changed paths:
12394    M /trunk/AUTHORS
12395    M /trunk/Makefile
12396    M /trunk/Makefile.modules
12397    M /trunk/Makefile.opts.in
12398    A /trunk/acconfig.h
12399    A /trunk/aclocal.m4
12400    M /trunk/configure
12401    M /trunk/configure.in
12402    D /trunk/include/bytes_swap.h
12403    M /trunk/include/common.h
12404    D /trunk/include/common_win32.h
12405    M /trunk/include/config.h.in
12406    M /trunk/include/defs.h.in
12407    M /trunk/include/input_ext-dec.h
12408    M /trunk/include/input_ext-intf.h
12409    M /trunk/include/input_ext-plugins.h
12410    D /trunk/include/keystrokes.h
12411    M /trunk/include/main.h
12412    M /trunk/include/modules_export.h
12413    M /trunk/include/modules_inner.h
12414    A /trunk/mkinstalldirs
12415    M /trunk/plugins/ac3_adec/Makefile
12416    M /trunk/plugins/ac3_adec/ac3_adec.c
12417    M /trunk/plugins/ac3_adec/ac3_bit_allocate.c
12418    M /trunk/plugins/ac3_adec/ac3_decoder.c
12419    M /trunk/plugins/ac3_adec/ac3_exponent.c
12420    M /trunk/plugins/ac3_adec/ac3_imdct.c
12421    M /trunk/plugins/ac3_adec/ac3_mantissa.c
12422    M /trunk/plugins/ac3_adec/ac3_parse.c
12423    M /trunk/plugins/ac3_adec/ac3_rematrix.c
12424    M /trunk/plugins/ac3_spdif/Makefile
12425    M /trunk/plugins/ac3_spdif/ac3_iec958.c
12426    M /trunk/plugins/ac3_spdif/ac3_spdif.c
12427    M /trunk/plugins/alsa/Makefile
12428    M /trunk/plugins/arts/Makefile
12429    M /trunk/plugins/beos/Makefile
12430    M /trunk/plugins/chroma/Makefile
12431    M /trunk/plugins/directx/Makefile
12432    M /trunk/plugins/downmix/Makefile
12433    M /trunk/plugins/downmix/ac3_downmix_3dn.c
12434    M /trunk/plugins/downmix/ac3_downmix_sse.c
12435    M /trunk/plugins/dsp/Makefile
12436    M /trunk/plugins/dummy/Makefile
12437    M /trunk/plugins/dummy/input_dummy.c
12438    M /trunk/plugins/dvd/Makefile
12439    M /trunk/plugins/dvd/input_dvd.c
12440    M /trunk/plugins/dvdread/Makefile
12441    M /trunk/plugins/esd/Makefile
12442    M /trunk/plugins/fb/Makefile
12443    M /trunk/plugins/ggi/Makefile
12444    M /trunk/plugins/glide/Makefile
12445    M /trunk/plugins/gtk/Makefile
12446    M /trunk/plugins/gtk/gnome_interface.c
12447    M /trunk/plugins/gtk/intf_gnome.c
12448    M /trunk/plugins/idct/Makefile
12449    M /trunk/plugins/imdct/Makefile
12450    M /trunk/plugins/kde/Makefile
12451    M /trunk/plugins/kde/kdeinterface.cpp
12452    M /trunk/plugins/lpcm_adec/Makefile
12453    M /trunk/plugins/lpcm_adec/lpcm_adec.c
12454    M /trunk/plugins/macosx/Makefile
12455    M /trunk/plugins/mad/Makefile
12456    M /trunk/plugins/memcpy/Makefile
12457    M /trunk/plugins/mga/Makefile
12458    M /trunk/plugins/motion/Makefile
12459    M /trunk/plugins/mpeg_adec/Makefile
12460    M /trunk/plugins/mpeg_adec/adec_layer1.c
12461    M /trunk/plugins/mpeg_adec/adec_layer2.c
12462    M /trunk/plugins/mpeg_adec/mpeg_adec.c
12463    M /trunk/plugins/mpeg_adec/mpeg_adec_generic.c
12464    M /trunk/plugins/mpeg_system/Makefile
12465    M /trunk/plugins/mpeg_system/input_es.c
12466    M /trunk/plugins/mpeg_system/input_ps.c
12467    M /trunk/plugins/mpeg_system/input_ts.c
12468    M /trunk/plugins/mpeg_vdec/Makefile
12469    M /trunk/plugins/mpeg_vdec/video_decoder.c
12470    M /trunk/plugins/mpeg_vdec/video_parser.c
12471    M /trunk/plugins/mpeg_vdec/vpar_blocks.c
12472    M /trunk/plugins/mpeg_vdec/vpar_headers.c
12473    M /trunk/plugins/mpeg_vdec/vpar_pool.c
12474    M /trunk/plugins/mpeg_vdec/vpar_synchro.c
12475    M /trunk/plugins/qnx/Makefile
12476    M /trunk/plugins/qt/Makefile
12477    M /trunk/plugins/sdl/Makefile
12478    M /trunk/plugins/spudec/Makefile
12479    M /trunk/plugins/spudec/spu_decoder.c
12480    M /trunk/plugins/text/Makefile
12481    M /trunk/plugins/vcd/Makefile
12482    M /trunk/plugins/x11/Makefile
12483    A /trunk/po
12484    A /trunk/po/.cvsignore
12485    A /trunk/po/Makefile.in.in
12486    A /trunk/po/POTFILES.in
12487    A /trunk/po/de.po
12488    M /trunk/src/interface/interface.c
12489    D /trunk/src/interface/intf_channels.c
12490    D /trunk/src/interface/intf_channels.h
12491    M /trunk/src/interface/main.c
12492    M /trunk/src/misc/modules.c
12495   * Removed unused code (intf_channels.c, keystrokes.h).
12496   * Put common_win32.h back into common.h -- it wasn't that big and we
12497     should not multiply header files.
12498   * Added gettext support by Thomas Graf <reeler@reeler.org>, may be
12499     broken on other platforms but we'll only see it when I'm finished
12500     with vout 4 :-)
12501   * Fixed a segfault on exit when no fast_memcpy module was found.
12503 ------------------------------------------------------------------------
12504 r1286 | massiot | 2001-12-10 11:58:54 +0100 (Mon, 10 Dec 2001) | 4 lines
12505 Changed paths:
12506    M /trunk/plugins/mpeg_vdec/vpar_headers.c
12507    M /trunk/plugins/x11/vout_common.c
12509 * MPEG-1 aspect ratio patch, courtesy of Vladimir Chernyshov
12510   <greengrass@writeme.com> ;
12511 * Seeking patch for X11, courtesy of Peter Surda <shurdeek@panorama.sth.ac.at>.
12513 ------------------------------------------------------------------------
12514 r1288 | sam | 2001-12-10 13:40:24 +0100 (Mon, 10 Dec 2001) | 5 lines
12515 Changed paths:
12516    M /trunk/AUTHORS
12517    M /trunk/Makefile
12518    M /trunk/TODO
12519    M /trunk/config.guess
12520    M /trunk/config.sub
12521    M /trunk/configure
12522    M /trunk/configure.in
12523    M /trunk/include/interface.h
12524    M /trunk/po/.cvsignore
12525    A /trunk/po/ChangeLog
12526    M /trunk/po/Makefile.in.in
12527    A /trunk/po/fr.po
12528    A /trunk/po/vlc.pot
12530   * Removed more unused code.
12531   * Updated config.guess and config.sub from GNU's latest versions (bozo,
12532     you may want to update them in vls as well).
12533   * Added vlc.pot skeleton for translators.
12535 ------------------------------------------------------------------------
12536 r1289 | sam | 2001-12-10 14:17:35 +0100 (Mon, 10 Dec 2001) | 4 lines
12537 Changed paths:
12538    M /trunk/AUTHORS
12539    M /trunk/configure
12540    M /trunk/configure.in
12541    M /trunk/po/fr.po
12542    A /trunk/po/ru.po
12543    M /trunk/src/interface/main.c
12546   * (very old) russian translation courtesy of Valek Filippov <frob@df.ru>.
12547   * Fixed a charset issue in the french translation.
12549 ------------------------------------------------------------------------
12550 r1290 | massiot | 2001-12-10 16:52:31 +0100 (Mon, 10 Dec 2001) | 2 lines
12551 Changed paths:
12552    M /trunk/plugins/mpeg_system/input_es.c
12554 Fix for EOF of ES-only streams.
12556 ------------------------------------------------------------------------
12557 r1292 | massiot | 2001-12-10 17:16:51 +0100 (Mon, 10 Dec 2001) | 2 lines
12558 Changed paths:
12559    M /trunk/src/input/input.c
12561 Fixed possible segfault with --input.
12563 ------------------------------------------------------------------------
12564 r1294 | gbazin | 2001-12-10 19:58:13 +0100 (Mon, 10 Dec 2001) | 3 lines
12565 Changed paths:
12566    M /trunk/configure
12567    M /trunk/configure.in
12570   * configure.in was broken for win32
12572 ------------------------------------------------------------------------
12573 r1295 | massiot | 2001-12-11 14:09:22 +0100 (Tue, 11 Dec 2001) | 2 lines
12574 Changed paths:
12575    M /trunk/plugins/x11/Makefile
12577 Partial fix for Xvideo compilation.
12579 ------------------------------------------------------------------------
12580 r1296 | massiot | 2001-12-11 14:55:55 +0100 (Tue, 11 Dec 2001) | 2 lines
12581 Changed paths:
12582    M /trunk/src/input/mpeg_system.c
12584 Fixed major bugs in the PSI decoder.
12586 ------------------------------------------------------------------------
12587 r1298 | sam | 2001-12-11 15:43:38 +0100 (Tue, 11 Dec 2001) | 3 lines
12588 Changed paths:
12589    A /trunk/ABOUT-NLS
12590    M /trunk/AUTHORS
12591    M /trunk/ChangeLog.libdvdcss
12592    M /trunk/configure
12593    M /trunk/configure.in
12594    M /trunk/debian/control
12595    M /trunk/debian/rules
12596    M /trunk/extras/libdvdcss/ioctl.c
12597    M /trunk/extras/libdvdcss/ioctl.h
12598    M /trunk/include/defs.h.in
12600   * Added vlc-arts to the debian package generation.
12601   * HP-UX port of the DVD ioctls courtesy of David Sieb?\239?\191?\189rger.
12603 ------------------------------------------------------------------------
12604 r1299 | sam | 2001-12-11 16:31:37 +0100 (Tue, 11 Dec 2001) | 5 lines
12605 Changed paths:
12606    M /trunk/Makefile.dep
12607    M /trunk/Makefile.opts.in
12608    M /trunk/configure
12609    M /trunk/configure.in
12610    M /trunk/include/modules_inner.h
12611    M /trunk/plugins/x11/Makefile
12614   * Fixed an issue in Makefile.dep causing to rebuild unnecessary files
12615     in the gtk/gnome and x11/xvideo plugins.
12616   * Fixed CFLAGS_XVIDEO.
12618 ------------------------------------------------------------------------
12619 r1301 | sam | 2001-12-12 00:53:20 +0100 (Wed, 12 Dec 2001) | 5 lines
12620 Changed paths:
12621    M /trunk/configure
12622    M /trunk/configure.in
12623    M /trunk/include/common.h
12626   * Don't try to use gettext if we don't have GNU gettext. This may change
12627     in the future though (most GNU software seems to include a local copy of
12628     gettext in case the operating system doesn't provide it).
12630 ------------------------------------------------------------------------
12631 r1303 | sam | 2001-12-12 03:13:50 +0100 (Wed, 12 Dec 2001) | 5 lines
12632 Changed paths:
12633    M /trunk/acconfig.h
12634    M /trunk/configure
12635    M /trunk/configure.in
12636    M /trunk/extras/libdvdread/Makefile
12637    M /trunk/include/common.h
12638    M /trunk/include/defs.h.in
12639    M /trunk/plugins/dvd/Makefile
12640    M /trunk/plugins/dvdread/Makefile
12641    M /trunk/src/input/input.c
12642    M /trunk/src/interface/main.c
12645   * Additional fixes for OSes with no gettext (thanks to ej0).
12646   * Fixed a potential BeOS linking issue.
12647   * Fixed a minor bug in input.c.
12649 ------------------------------------------------------------------------
12650 r1304 | massiot | 2001-12-12 12:18:38 +0100 (Wed, 12 Dec 2001) | 2 lines
12651 Changed paths:
12652    M /trunk/include/config.h.in
12653    M /trunk/include/input_ext-dec.h
12654    M /trunk/include/input_ext-plugins.h
12655    M /trunk/plugins/mpeg_system/input_ps.c
12657 Next Generation Buffer Manager, for PS plug-in.
12659 ------------------------------------------------------------------------
12660 r1305 | massiot | 2001-12-12 14:48:09 +0100 (Wed, 12 Dec 2001) | 2 lines
12661 Changed paths:
12662    M /trunk/include/input_ext-dec.h
12663    M /trunk/include/input_ext-intf.h
12664    M /trunk/include/input_ext-plugins.h
12665    M /trunk/plugins/mpeg_system/input_ps.c
12666    M /trunk/plugins/mpeg_system/input_ts.c
12667    M /trunk/src/input/mpeg_system.c
12669 Next Generation Buffer Manager, for TS plug-in. Please test in-ten-si-vely !
12671 ------------------------------------------------------------------------
12672 r1306 | sam | 2001-12-12 16:20:16 +0100 (Wed, 12 Dec 2001) | 4 lines
12673 Changed paths:
12674    M /trunk/plugins/dvd/Makefile
12675    M /trunk/plugins/dvdread/Makefile
12676    M /trunk/src/interface/main.c
12679   * Fixed Win32 port.
12680   * Fixed unnecessary target remake (recursive make is harmful !).
12682 ------------------------------------------------------------------------
12683 r1308 | sam | 2001-12-12 16:25:29 +0100 (Wed, 12 Dec 2001) | 3 lines
12684 Changed paths:
12685    M /trunk/plugins/mpeg_system/input_ts.h
12688   * Another win32 fix.
12690 ------------------------------------------------------------------------
12691 r1309 | massiot | 2001-12-12 18:41:15 +0100 (Wed, 12 Dec 2001) | 2 lines
12692 Changed paths:
12693    M /trunk/plugins/mpeg_system/input_es.c
12694    M /trunk/plugins/mpeg_system/input_es.h
12695    M /trunk/plugins/mpeg_system/input_ts.c
12696    M /trunk/plugins/mpeg_system/input_ts.h
12698 Next Generation Buffer Manager, for ES plug-in.
12700 ------------------------------------------------------------------------
12701 r1311 | sam | 2001-12-13 13:47:17 +0100 (Thu, 13 Dec 2001) | 4 lines
12702 Changed paths:
12703    M /trunk/Makefile.opts.in
12704    M /trunk/configure
12705    M /trunk/configure.in
12706    M /trunk/include/common.h
12707    M /trunk/include/modules_export.h
12708    M /trunk/include/video.h
12709    M /trunk/include/video_output.h
12710    M /trunk/plugins/directx/vout_directx.c
12711    M /trunk/plugins/dummy/vout_dummy.c
12712    M /trunk/plugins/imdct/Makefile
12713    M /trunk/plugins/mpeg_vdec/video_parser.h
12714    M /trunk/plugins/mpeg_vdec/vpar_headers.c
12715    M /trunk/plugins/sdl/vout_sdl.c
12716    M /trunk/plugins/x11/vout_common.c
12717    M /trunk/plugins/x11/vout_common.h
12718    M /trunk/plugins/x11/vout_xvideo.c
12719    M /trunk/src/video_output/video_output.c
12720    M /trunk/src/video_output/vout_pictures.c
12721    M /trunk/src/video_output/vout_subpictures.c
12724   * Fixed aspect ratio handling.
12725   * Fixed potential compilation issues under eg. BSD/OS.
12727 ------------------------------------------------------------------------
12728 r1312 | massiot | 2001-12-13 18:33:47 +0100 (Thu, 13 Dec 2001) | 2 lines
12729 Changed paths:
12730    M /trunk/src/input/mpeg_system.c
12732 Fixed a major bug I introduced lately.
12734 ------------------------------------------------------------------------
12735 r1314 | jobi | 2001-12-13 18:58:16 +0100 (Thu, 13 Dec 2001) | 2 lines
12736 Changed paths:
12737    M /trunk/plugins/mpeg_system/input_es.c
12739 Fixed a bug in ES input (I had not initiated p_selected_program)
12741 ------------------------------------------------------------------------
12742 r1315 | sam | 2001-12-13 21:47:46 +0100 (Thu, 13 Dec 2001) | 4 lines
12743 Changed paths:
12744    M /trunk/include/threads.h
12745    M /trunk/src/video_output/vout_pictures.c
12748   * Buffer choice optimizations - vout4 should eat even less CPU now.
12749   * Minor warning fix for Hurd.
12751 ------------------------------------------------------------------------
12752 r1317 | sam | 2001-12-16 17:18:36 +0100 (Sun, 16 Dec 2001) | 9 lines
12753 Changed paths:
12754    M /trunk/Makefile
12755    M /trunk/Makefile.opts.in
12756    M /trunk/configure
12757    M /trunk/configure.in
12758    M /trunk/include/common.h
12759    M /trunk/include/config.h.in
12760    M /trunk/include/modules_export.h
12761    M /trunk/include/video.h
12762    M /trunk/include/video_output.h
12763    M /trunk/plugins/ac3_adec/ac3_adec.c
12764    M /trunk/plugins/chroma/Makefile
12765    A /trunk/plugins/chroma/chroma_common.h
12766    A /trunk/plugins/chroma/common.c
12767    A /trunk/plugins/chroma/transforms.h
12768    A /trunk/plugins/chroma/yv12_rgb8.c
12769    M /trunk/plugins/dummy/vout_dummy.c
12770    A /trunk/plugins/filter
12771    A /trunk/plugins/filter/.cvsignore
12772    A /trunk/plugins/filter/Makefile
12773    A /trunk/plugins/filter/bob.c
12774    A /trunk/plugins/filter/invert.c
12775    M /trunk/plugins/mpeg_vdec/vpar_headers.c
12776    M /trunk/plugins/sdl/vout_sdl.c
12777    M /trunk/plugins/spudec/spu_decoder.c
12778    M /trunk/plugins/x11/vout_common.c
12779    M /trunk/plugins/x11/vout_xvideo.c
12780    M /trunk/src/interface/main.c
12781    M /trunk/src/video_output/video_output.c
12782    M /trunk/src/video_output/vout_pictures.c
12785   * Filter plugins. Not very polished (please don't look at how the dates are
12786     calculated!), but worth a try. Use the following flags:
12787      "--filter invert" for inverse video
12788      "--filter bob" for BOB deinterlacing
12789   * Fixed a potential segfault if the subtitle stream was encountered
12790     before the video stream.
12791   * Misc vout4 fixes.
12793 ------------------------------------------------------------------------
12794 r1318 | sam | 2001-12-16 19:00:18 +0100 (Sun, 16 Dec 2001) | 7 lines
12795 Changed paths:
12796    M /trunk/ChangeLog.libdvdcss
12797    M /trunk/extras/libdvdcss/ioctl.c
12798    M /trunk/extras/libdvdcss/ioctl.h
12799    M /trunk/include/input_iovec.h
12800    M /trunk/plugins/filter/bob.c
12802 libdvdcss changes:
12803   * Support for REPORT_TITLE_KEY and RPC commands by H?\239?\191?\189kan Hjort
12804     <d95hjort@dtek.chalmers.se>.
12806 vlc changes:
12807   * Minor coding style fixes (please avoid tabs).
12809 ------------------------------------------------------------------------
12810 r1320 | sam | 2001-12-17 04:38:22 +0100 (Mon, 17 Dec 2001) | 6 lines
12811 Changed paths:
12812    M /trunk/Makefile
12813    M /trunk/configure
12814    M /trunk/configure.in
12815    M /trunk/plugins/filter/Makefile
12816    A /trunk/plugins/filter/wall.c
12817    M /trunk/plugins/x11/vout_xvideo.c
12818    M /trunk/src/interface/main.c
12821   * CPU detection under BeOS.
12822   * Fixed XVideo port selection.
12823   * New stupid plugin: "--filter wall" for split-image playback :-)
12824      (will evolve into a real image wall plugin when I have time)
12826 ------------------------------------------------------------------------
12827 r1322 | sam | 2001-12-17 06:33:56 +0100 (Mon, 17 Dec 2001) | 5 lines
12828 Changed paths:
12829    M /trunk/Makefile
12830    M /trunk/configure
12831    M /trunk/configure.in
12832    M /trunk/plugins/filter/Makefile
12833    A /trunk/plugins/filter/bob422.c
12836   * Pathetic attempt at a 4:2:2 renderer and deinterlacer, combining the
12837     most awful line dropping techniques of both BOB and 422 to 420
12838     downscaling. Don't worry, it should only survive for a couple of days.
12840 ------------------------------------------------------------------------
12841 r1324 | sam | 2001-12-17 16:59:15 +0100 (Mon, 17 Dec 2001) | 4 lines
12842 Changed paths:
12843    M /trunk/src/input/mpeg_system.c
12846   * TS input: we now check that the contents of the PAT has changed
12847     before updating it, instead of just relying on its version number.
12849 ------------------------------------------------------------------------
12850 r1327 | sam | 2001-12-17 17:42:27 +0100 (Mon, 17 Dec 2001) | 3 lines
12851 Changed paths:
12852    M /trunk/src/input/mpeg_system.c
12855   * TS input: bugfix in DecodePAT and minor optimizations elsewhere.
12857 ------------------------------------------------------------------------
12858 r1328 | massiot | 2001-12-17 20:42:16 +0100 (Mon, 17 Dec 2001) | 2 lines
12859 Changed paths:
12860    M /trunk/plugins/x11/vout_xvideo.c
12862 Added missing XSync().
12864 ------------------------------------------------------------------------
12865 r1332 | sam | 2001-12-18 03:44:34 +0100 (Tue, 18 Dec 2001) | 3 lines
12866 Changed paths:
12867    M /trunk/extras/libdvdcss/ioctl.c
12870   * Fixed Win32 build. You still need --disable-directx --disable-nls though.
12872 ------------------------------------------------------------------------
12873 r1333 | sam | 2001-12-18 04:07:21 +0100 (Tue, 18 Dec 2001) | 3 lines
12874 Changed paths:
12875    M /trunk/Makefile
12876    M /trunk/Makefile.opts.in
12877    M /trunk/configure
12878    M /trunk/configure.in
12879    M /trunk/install-win32
12882   * Ultimate fixes to the win32 package generation.
12884 ------------------------------------------------------------------------
12885 r1336 | sam | 2001-12-19 04:50:22 +0100 (Wed, 19 Dec 2001) | 24 lines
12886 Changed paths:
12887    M /trunk/Makefile
12888    M /trunk/Makefile.opts.in
12889    M /trunk/configure
12890    M /trunk/configure.in
12891    M /trunk/debian/changelog
12892    M /trunk/include/common.h
12893    M /trunk/include/modules_export.h
12894    M /trunk/include/video_output.h
12895    M /trunk/plugins/alsa/aout_alsa.c
12896    M /trunk/plugins/filter/Makefile
12897    M /trunk/plugins/filter/bob.c
12898    D /trunk/plugins/filter/bob422.c
12899    A /trunk/plugins/filter/distort.c
12900    A /trunk/plugins/filter/filter_common.h
12901    M /trunk/plugins/filter/invert.c
12902    A /trunk/plugins/filter/transform.c
12903    M /trunk/plugins/filter/wall.c
12904    M /trunk/plugins/mpeg_system/input_ps.c
12905    M /trunk/plugins/sdl/aout_sdl.c
12906    M /trunk/plugins/sdl/vout_sdl.c
12907    M /trunk/plugins/x11/vout_common.c
12908    M /trunk/src/misc/tests.c
12909    M /trunk/src/video_output/vout_pictures.c
12912   * Initialize SDL before opening the SDL audio output.
12913   * Prevent two SDL video outputs or audio outputs to be spawned at the
12914     same time to avoid ugly crashes.
12915   * The SDL plugin now says whether we are using software or hardware YUV
12916     in its window title.
12917   * We now stop at the first ':' when looking for a module name, to easily
12918     pass information to the modules. Possible example: --vout sdl:software,
12919     implementation of such an option is left as an exercise.
12920   * Merged filter_bob and filter_bob422 into filter_bob. Use --filter bob
12921     to deinterlace 422 into 420 as well.
12922   * Factorized code common to most filters and the video output, optimized
12923     a few filters by aligning data and reading 64 bits at a time.
12924   * Two new absolutely useless, CPU-eating, resource-wasting, but fun
12925     filters: enjoy `transform', which performs flips and 90?\239?\191?\189 rotations, and
12926     `distort', which performs animated image effects (currently only a naive
12927     sine wave is implemented). Usage examples:
12928        --filter transform:hflip
12929        --filter transform:vflip
12930        --filter transform:90
12931        --filter transform:180
12932        --filter transform:270
12933        --filter distort:wave
12935 ------------------------------------------------------------------------
12936 r1337 | jobi | 2001-12-19 04:56:56 +0100 (Wed, 19 Dec 2001) | 2 lines
12937 Changed paths:
12938    M /trunk/plugins/vcd/input_vcd.c
12939    M /trunk/plugins/vcd/linux_cdrom_tools.c
12941 fixed a segfault in vcd input (thank you Sam)
12943 ------------------------------------------------------------------------
12944 r1339 | massiot | 2001-12-19 11:00:00 +0100 (Wed, 19 Dec 2001) | 2 lines
12945 Changed paths:
12946    M /trunk/include/input_ext-dec.h
12947    M /trunk/include/input_ext-plugins.h
12948    M /trunk/plugins/dvd/input_dvd.c
12949    M /trunk/plugins/dvdread/input_dvdread.c
12950    M /trunk/plugins/mpeg_system/input_es.c
12951    M /trunk/plugins/mpeg_system/input_ps.c
12952    M /trunk/plugins/mpeg_system/input_ts.c
12953    M /trunk/plugins/vcd/input_vcd.c
12954    M /trunk/src/input/mpeg_system.c
12956 Next Generation Buffer Manager for DVD and VCD plug-ins.
12958 ------------------------------------------------------------------------
12959 r1342 | sam | 2001-12-19 19:14:23 +0100 (Wed, 19 Dec 2001) | 8 lines
12960 Changed paths:
12961    M /trunk/plugins/chroma/yv12_rgb8.c
12962    M /trunk/plugins/dvd/dummy_dvdcss.h
12963    M /trunk/plugins/dvd/input_dvd.c
12964    M /trunk/plugins/sdl/vout_sdl.c
12965    M /trunk/plugins/vcd/input_vcd.c
12966    M /trunk/plugins/vcd/linux_cdrom_tools.c
12967    M /trunk/plugins/vcd/linux_cdrom_tools.h
12968    M /trunk/plugins/x11/vout_common.c
12969    M /trunk/plugins/x11/vout_xvideo.c
12972   * Fixed compilation with dvdcss disabled.
12973   * Fixed compilation with plugins disabled.
12974   * Removed useless variables in the VCD and DVD plugins.
12975   * Fixed a function which was returning "struct foo" in the VCD plugin.
12976   * Fixed the old ?\239?\191?\189 XVideo eats more and more CPU ?\239?\191?\189 bug I mistakenly
12977     reintroduced in my first vout4 commit.
12979 ------------------------------------------------------------------------
12980 r1343 | sam | 2001-12-19 20:26:00 +0100 (Wed, 19 Dec 2001) | 3 lines
12981 Changed paths:
12982    M /trunk/plugins/filter/distort.c
12985   * --filter distort:ripple (Ok, ok, I promise it's the last one !! :-)
12987 ------------------------------------------------------------------------
12988 r1344 | sam | 2001-12-20 00:19:20 +0100 (Thu, 20 Dec 2001) | 4 lines
12989 Changed paths:
12990    M /trunk/plugins/dvd/input_dvd.c
12991    M /trunk/plugins/vcd/Makefile
12992    M /trunk/plugins/vcd/input_vcd.c
12993    M /trunk/plugins/vcd/input_vcd.h
12994    M /trunk/plugins/vcd/linux_cdrom_tools.c
12995    M /trunk/plugins/vcd/linux_cdrom_tools.h
12998    * Heavy butchery in the VCD plugin. It should no longer segfault when
12999      reaching end of title.
13001 ------------------------------------------------------------------------
13002 r1346 | sam | 2001-12-20 16:43:15 +0100 (Thu, 20 Dec 2001) | 4 lines
13003 Changed paths:
13004    M /trunk/plugins/sdl/vout_sdl.c
13005    M /trunk/plugins/x11/vout_common.c
13008   * Mouse wheel seek patch for XVideo courtesy of Peter Surda.
13009   * Ported to SDL.
13011 ------------------------------------------------------------------------
13012 r1348 | sam | 2001-12-20 23:11:53 +0100 (Thu, 20 Dec 2001) | 4 lines
13013 Changed paths:
13014    M /trunk/AUTHORS
13015    M /trunk/Makefile
13016    M /trunk/Makefile.opts.in
13017    M /trunk/configure
13018    M /trunk/configure.in
13021   * Added Jeffrey Baker to the AUTHORS file.
13022   * Fixed a PPC compilation issue.
13024 ------------------------------------------------------------------------
13025 r1350 | massiot | 2001-12-21 00:53:49 +0100 (Fri, 21 Dec 2001) | 2 lines
13026 Changed paths:
13027    M /trunk/plugins/dvdread/input_dvdread.c
13029 Fixed a typo.
13031 ------------------------------------------------------------------------
13032 r1351 | massiot | 2001-12-26 01:01:18 +0100 (Wed, 26 Dec 2001) | 2 lines
13033 Changed paths:
13034    M /trunk/plugins/dvdread/input_dvdread.h
13036 Fixed compilation issue (thanks Eyal !)
13038 ------------------------------------------------------------------------
13039 r1352 | massiot | 2001-12-27 02:49:34 +0100 (Thu, 27 Dec 2001) | 3 lines
13040 Changed paths:
13041    M /trunk/Makefile
13042    M /trunk/include/common.h
13043    M /trunk/include/input_ext-dec.h
13044    M /trunk/include/input_ext-plugins.h
13045    M /trunk/include/modules_export.h
13046    M /trunk/plugins/ac3_adec/ac3_adec.c
13047    M /trunk/plugins/ac3_spdif/ac3_spdif.c
13048    M /trunk/plugins/dvd/input_dvd.c
13049    M /trunk/plugins/dvdread/input_dvdread.c
13050    M /trunk/plugins/lpcm_adec/lpcm_adec.c
13051    M /trunk/plugins/mad/mad_adec.c
13052    M /trunk/plugins/mad/mad_libmad.c
13053    M /trunk/plugins/mpeg_adec/mpeg_adec.c
13054    M /trunk/plugins/mpeg_system/input_es.c
13055    M /trunk/plugins/mpeg_system/input_ps.c
13056    M /trunk/plugins/mpeg_system/input_ts.c
13057    M /trunk/plugins/mpeg_vdec/video_parser.c
13058    M /trunk/plugins/spudec/spu_decoder.c
13059    M /trunk/plugins/vcd/input_vcd.c
13060    M /trunk/src/input/input_dec.c
13061    M /trunk/src/input/input_ext-dec.c
13062    D /trunk/src/input/input_netlist.c
13064 * Changed the way decoder_fifo_t works ;
13065 * Minor optimizations in the Next Generation Buffer Manager.
13067 ------------------------------------------------------------------------
13068 r1353 | massiot | 2001-12-27 04:47:09 +0100 (Thu, 27 Dec 2001) | 2 lines
13069 Changed paths:
13070    M /trunk/include/config.h.in
13071    M /trunk/include/input_ext-dec.h
13072    M /trunk/include/input_ext-intf.h
13073    M /trunk/include/input_ext-plugins.h
13074    M /trunk/include/modules.h
13075    M /trunk/plugins/dvd/input_dvd.c
13076    M /trunk/plugins/mpeg_system/input_es.c
13077    M /trunk/plugins/mpeg_system/input_es.h
13078    M /trunk/plugins/mpeg_system/input_ps.c
13079    M /trunk/plugins/mpeg_system/input_ps.h
13080    M /trunk/plugins/mpeg_system/input_ts.c
13081    M /trunk/plugins/mpeg_system/input_ts.h
13082    M /trunk/plugins/vcd/input_vcd.c
13083    M /trunk/src/input/input.c
13085 * Changed pf_read prototype and minor changes.
13087 ------------------------------------------------------------------------
13088 r1354 | massiot | 2001-12-29 01:39:49 +0100 (Sat, 29 Dec 2001) | 2 lines
13089 Changed paths:
13090    M /trunk/plugins/dvd/input_dvd.c
13091    M /trunk/plugins/dvdread/input_dvdread.c
13092    M /trunk/plugins/vcd/linux_cdrom_tools.c
13093    M /trunk/plugins/x11/vout_xvideo.c
13095 Fixed many bugs experienced by our users today.
13097 ------------------------------------------------------------------------
13098 r1355 | massiot | 2001-12-29 04:07:51 +0100 (Sat, 29 Dec 2001) | 2 lines
13099 Changed paths:
13100    M /trunk/include/input_ext-dec.h
13101    M /trunk/include/input_ext-plugins.h
13102    M /trunk/plugins/dvd/input_dvd.c
13103    M /trunk/plugins/dvdread/input_dvdread.c
13104    M /trunk/plugins/mpeg_system/input_es.c
13105    M /trunk/plugins/mpeg_system/input_ps.c
13106    M /trunk/plugins/mpeg_system/input_ts.c
13107    M /trunk/plugins/vcd/input_vcd.c
13109 Hidden gory buffer management details in a private section of data_packet_t.
13111 ------------------------------------------------------------------------
13112 r1356 | massiot | 2001-12-29 04:44:38 +0100 (Sat, 29 Dec 2001) | 2 lines
13113 Changed paths:
13114    M /trunk/src/interface/main.c
13116 Fixed a cosmetic issue.
13118 ------------------------------------------------------------------------
13119 r1358 | lool | 2001-12-29 12:36:00 +0100 (Sat, 29 Dec 2001) | 3 lines
13120 Changed paths:
13121    M /trunk/plugins/gtk/gtk_playlist.c
13123  Small bugfix of a segfault. The playlist segfaulted with the urls
13124 containing no '/'.
13126 ------------------------------------------------------------------------
13127 r1359 | massiot | 2001-12-29 16:40:53 +0100 (Sat, 29 Dec 2001) | 2 lines
13128 Changed paths:
13129    M /trunk/plugins/dvd/input_dvd.c
13130    M /trunk/plugins/dvdread/input_dvdread.c
13132 Cosmetic fix.
13134 ------------------------------------------------------------------------
13135 r1360 | massiot | 2001-12-29 23:22:01 +0100 (Sat, 29 Dec 2001) | 2 lines
13136 Changed paths:
13137    M /trunk/plugins/dvdread/input_dvdread.c
13138    M /trunk/plugins/dvdread/input_dvdread.h
13140 Use libdvdread's define instead.
13142 ------------------------------------------------------------------------
13143 r1362 | sam | 2001-12-30 05:26:53 +0100 (Sun, 30 Dec 2001) | 5 lines
13144 Changed paths:
13145    M /trunk/plugins/dvd/input_dvd.c
13146    M /trunk/plugins/dvdread/input_dvdread.c
13147    M /trunk/plugins/mpeg_system/input_es.c
13148    M /trunk/plugins/mpeg_system/input_ps.c
13149    M /trunk/plugins/mpeg_system/input_ts.c
13150    M /trunk/plugins/vcd/input_vcd.c
13153   * Fixed a segfault at EOF in input_es.c and input_ts.c (when i_read == 0).
13154   * Improved error recovery and avoided memleaks in the various input plugins.
13155   * Fixed a deadloop inserted by someone else into input_vcd.c :-)
13157 ------------------------------------------------------------------------
13158 r1363 | sam | 2001-12-30 06:38:44 +0100 (Sun, 30 Dec 2001) | 8 lines
13159 Changed paths:
13160    M /trunk/include/common.h
13161    M /trunk/include/input_ext-dec.h
13162    M /trunk/include/modules_export.h
13163    M /trunk/plugins/ac3_adec/ac3_adec.c
13164    M /trunk/plugins/ac3_spdif/ac3_spdif.c
13165    M /trunk/plugins/lpcm_adec/lpcm_adec.c
13166    M /trunk/plugins/mad/mad_adec.c
13167    M /trunk/plugins/mpeg_adec/mpeg_adec.c
13168    M /trunk/plugins/mpeg_adec/mpeg_adec.h
13169    M /trunk/plugins/mpeg_vdec/video_parser.c
13170    M /trunk/plugins/spudec/spu_decoder.c
13171    M /trunk/src/input/input_ext-dec.c
13174   * Put ErrorThread() in input_ext-dec.h because it was the same function
13175     in all decoders. Called it DecoderError() instead.
13176   * All decoders enter DecoderError() in case of error, even if they
13177     haven't allocated all their data. This prevents the input from getting
13178     stuck if a decoder has failed its initialization.
13179   * Namespace fixes through the decoder files.
13181 ------------------------------------------------------------------------
13182 r1364 | sam | 2001-12-30 06:46:14 +0100 (Sun, 30 Dec 2001) | 3 lines
13183 Changed paths:
13184    M /trunk/src/input/input_ext-dec.c
13187   * Forgot a file in my last commit.
13189 ------------------------------------------------------------------------
13190 r1368 | sam | 2001-12-30 08:09:56 +0100 (Sun, 30 Dec 2001) | 50 lines
13191 Changed paths:
13192    M /trunk/Makefile
13193    M /trunk/Makefile.dep
13194    M /trunk/Makefile.modules
13195    M /trunk/Makefile.opts.in
13196    M /trunk/acconfig.h
13197    M /trunk/configure
13198    M /trunk/configure.in
13199    M /trunk/extras/libdvdcss/Makefile
13200    M /trunk/extras/libdvdcss/css.c
13201    M /trunk/extras/libdvdcss/ioctl.c
13202    M /trunk/extras/libdvdcss/libdvdcss.c
13203    M /trunk/extras/libdvdread/Makefile
13204    M /trunk/include/audio_output.h
13205    D /trunk/include/common.h
13206    M /trunk/include/config.h.in
13207    M /trunk/include/defs.h.in
13208    M /trunk/include/input_ext-dec.h
13209    M /trunk/include/input_ext-intf.h
13210    M /trunk/include/input_ext-plugins.h
13211    M /trunk/include/interface.h
13212    M /trunk/include/intf_msg.h
13213    M /trunk/include/intf_playlist.h
13214    M /trunk/include/iso_lang.h
13215    M /trunk/include/main.h
13216    M /trunk/include/modules.h
13217    D /trunk/include/modules_export.h
13218    M /trunk/include/modules_inner.h
13219    M /trunk/include/mtime.h
13220    M /trunk/include/netutils.h
13221    D /trunk/include/tests.h
13222    M /trunk/include/threads.h
13223    M /trunk/include/video.h
13224    M /trunk/include/video_output.h
13225    A /trunk/include/videolan
13226    A /trunk/include/videolan/vlc.h
13227    M /trunk/plugins/ac3_adec/.cvsignore
13228    M /trunk/plugins/ac3_adec/Makefile
13229    M /trunk/plugins/ac3_adec/ac3_adec.c
13230    M /trunk/plugins/ac3_adec/ac3_bit_allocate.c
13231    M /trunk/plugins/ac3_adec/ac3_decoder.c
13232    M /trunk/plugins/ac3_adec/ac3_exponent.c
13233    M /trunk/plugins/ac3_adec/ac3_imdct.c
13234    M /trunk/plugins/ac3_adec/ac3_mantissa.c
13235    M /trunk/plugins/ac3_adec/ac3_parse.c
13236    M /trunk/plugins/ac3_adec/ac3_rematrix.c
13237    M /trunk/plugins/ac3_spdif/.cvsignore
13238    M /trunk/plugins/ac3_spdif/Makefile
13239    M /trunk/plugins/ac3_spdif/ac3_iec958.c
13240    M /trunk/plugins/ac3_spdif/ac3_spdif.c
13241    M /trunk/plugins/alsa/.cvsignore
13242    M /trunk/plugins/alsa/Makefile
13243    M /trunk/plugins/alsa/alsa.c
13244    M /trunk/plugins/alsa/aout_alsa.c
13245    M /trunk/plugins/arts/.cvsignore
13246    M /trunk/plugins/arts/Makefile
13247    M /trunk/plugins/arts/aout_arts.c
13248    M /trunk/plugins/arts/arts.c
13249    M /trunk/plugins/beos/.cvsignore
13250    M /trunk/plugins/beos/InterfaceWindow.cpp
13251    M /trunk/plugins/beos/Makefile
13252    M /trunk/plugins/beos/MediaControlView.cpp
13253    M /trunk/plugins/beos/PlayListWindow.cpp
13254    M /trunk/plugins/beos/aout_beos.cpp
13255    M /trunk/plugins/beos/beos.cpp
13256    M /trunk/plugins/beos/intf_beos.cpp
13257    M /trunk/plugins/beos/vout_beos.cpp
13258    M /trunk/plugins/chroma/.cvsignore
13259    M /trunk/plugins/chroma/Makefile
13260    M /trunk/plugins/chroma/common.c
13261    A /trunk/plugins/chroma/yv12_rgb16.c
13262    M /trunk/plugins/chroma/yv12_rgb8.c
13263    M /trunk/plugins/directx/.cvsignore
13264    M /trunk/plugins/directx/Makefile
13265    M /trunk/plugins/directx/aout_directx.c
13266    M /trunk/plugins/directx/directx.c
13267    M /trunk/plugins/directx/vout_directx.c
13268    M /trunk/plugins/directx/vout_events.c
13269    M /trunk/plugins/downmix/.cvsignore
13270    M /trunk/plugins/downmix/Makefile
13271    M /trunk/plugins/downmix/ac3_downmix_3dn.c
13272    M /trunk/plugins/downmix/ac3_downmix_c.c
13273    M /trunk/plugins/downmix/ac3_downmix_sse.c
13274    M /trunk/plugins/downmix/downmix.c
13275    M /trunk/plugins/downmix/downmix3dn.c
13276    M /trunk/plugins/downmix/downmixsse.c
13277    M /trunk/plugins/dsp/.cvsignore
13278    M /trunk/plugins/dsp/Makefile
13279    M /trunk/plugins/dsp/aout_dsp.c
13280    M /trunk/plugins/dsp/dsp.c
13281    M /trunk/plugins/dummy/.cvsignore
13282    M /trunk/plugins/dummy/Makefile
13283    M /trunk/plugins/dummy/aout_dummy.c
13284    M /trunk/plugins/dummy/dummy.c
13285    M /trunk/plugins/dummy/input_dummy.c
13286    M /trunk/plugins/dummy/intf_dummy.c
13287    M /trunk/plugins/dummy/null.c
13288    M /trunk/plugins/dummy/vout_dummy.c
13289    M /trunk/plugins/dvd/.cvsignore
13290    M /trunk/plugins/dvd/Makefile
13291    M /trunk/plugins/dvd/dummy_dvdcss.c
13292    M /trunk/plugins/dvd/dvd.c
13293    M /trunk/plugins/dvd/dvd_ifo.c
13294    M /trunk/plugins/dvd/dvd_summary.c
13295    M /trunk/plugins/dvd/dvd_udf.c
13296    M /trunk/plugins/dvd/input_dvd.c
13297    M /trunk/plugins/dvdread/.cvsignore
13298    M /trunk/plugins/dvdread/Makefile
13299    M /trunk/plugins/dvdread/dvdread.c
13300    M /trunk/plugins/dvdread/input_dvdread.c
13301    M /trunk/plugins/esd/.cvsignore
13302    M /trunk/plugins/esd/Makefile
13303    M /trunk/plugins/esd/aout_esd.c
13304    M /trunk/plugins/esd/esd.c
13305    M /trunk/plugins/fb/.cvsignore
13306    M /trunk/plugins/fb/Makefile
13307    M /trunk/plugins/fb/fb.c
13308    M /trunk/plugins/fb/vout_fb.c
13309    M /trunk/plugins/filter/.cvsignore
13310    M /trunk/plugins/filter/Makefile
13311    D /trunk/plugins/filter/bob.c
13312    A /trunk/plugins/filter/deinterlace.c
13313    M /trunk/plugins/filter/distort.c
13314    M /trunk/plugins/filter/invert.c
13315    M /trunk/plugins/filter/transform.c
13316    M /trunk/plugins/filter/wall.c
13317    M /trunk/plugins/ggi/.cvsignore
13318    M /trunk/plugins/ggi/Makefile
13319    M /trunk/plugins/ggi/ggi.c
13320    M /trunk/plugins/ggi/vout_ggi.c
13321    M /trunk/plugins/glide/.cvsignore
13322    M /trunk/plugins/glide/Makefile
13323    M /trunk/plugins/glide/glide.c
13324    M /trunk/plugins/glide/vout_glide.c
13325    M /trunk/plugins/gtk/.cvsignore
13326    M /trunk/plugins/gtk/Makefile
13327    A /trunk/plugins/gtk/fixfiles.sh
13328    M /trunk/plugins/gtk/gnome.c
13329    A /trunk/plugins/gtk/gnome.glade
13330    M /trunk/plugins/gtk/gnome_interface.c
13331    M /trunk/plugins/gtk/gnome_interface.h
13332    M /trunk/plugins/gtk/gtk.c
13333    A /trunk/plugins/gtk/gtk.glade
13334    M /trunk/plugins/gtk/gtk_callbacks.c
13335    A /trunk/plugins/gtk/gtk_common.h
13336    M /trunk/plugins/gtk/gtk_control.c
13337    M /trunk/plugins/gtk/gtk_display.c
13338    M /trunk/plugins/gtk/gtk_interface.c
13339    M /trunk/plugins/gtk/gtk_menu.c
13340    M /trunk/plugins/gtk/gtk_modules.c
13341    M /trunk/plugins/gtk/gtk_open.c
13342    M /trunk/plugins/gtk/gtk_playlist.c
13343    M /trunk/plugins/gtk/gtk_preferences.c
13344    D /trunk/plugins/gtk/intf_gnome.c
13345    D /trunk/plugins/gtk/intf_gnome.glade
13346    D /trunk/plugins/gtk/intf_gtk.c
13347    D /trunk/plugins/gtk/intf_gtk.glade
13348    D /trunk/plugins/gtk/intf_gtk.h
13349    M /trunk/plugins/idct/.cvsignore
13350    M /trunk/plugins/idct/Makefile
13351    M /trunk/plugins/idct/idct.c
13352    M /trunk/plugins/idct/idctaltivec.c
13353    M /trunk/plugins/idct/idctclassic.c
13354    M /trunk/plugins/idct/idctmmx.c
13355    M /trunk/plugins/idct/idctmmxext.c
13356    M /trunk/plugins/imdct/.cvsignore
13357    M /trunk/plugins/imdct/Makefile
13358    M /trunk/plugins/imdct/ac3_imdct_3dn.c
13359    M /trunk/plugins/imdct/ac3_imdct_c.c
13360    M /trunk/plugins/imdct/ac3_imdct_common.c
13361    M /trunk/plugins/imdct/ac3_imdct_sse.c
13362    M /trunk/plugins/imdct/ac3_srfft_3dn.c
13363    M /trunk/plugins/imdct/ac3_srfft_c.c
13364    M /trunk/plugins/imdct/ac3_srfft_sse.c
13365    M /trunk/plugins/imdct/imdct.c
13366    M /trunk/plugins/imdct/imdct3dn.c
13367    M /trunk/plugins/imdct/imdctsse.c
13368    M /trunk/plugins/kde/.cvsignore
13369    M /trunk/plugins/kde/Makefile
13370    D /trunk/plugins/kde/intf_plugin.h
13371    M /trunk/plugins/kde/kde.cpp
13372    A /trunk/plugins/kde/kde_common.h
13373    A /trunk/plugins/kde/kde_disc.cpp
13374    A /trunk/plugins/kde/kde_disc.h
13375    A /trunk/plugins/kde/kde_interface.cpp
13376    A /trunk/plugins/kde/kde_interface.h
13377    A /trunk/plugins/kde/kde_menu.cpp
13378    A /trunk/plugins/kde/kde_menu.h
13379    A /trunk/plugins/kde/kde_net.cpp
13380    A /trunk/plugins/kde/kde_net.h
13381    A /trunk/plugins/kde/kde_slider.cpp
13382    A /trunk/plugins/kde/kde_slider.h
13383    A /trunk/plugins/kde/kde_ui.rc
13384    D /trunk/plugins/kde/kdeinterface.cpp
13385    D /trunk/plugins/kde/kdeinterface.h
13386    D /trunk/plugins/kde/kdiskdialog.cpp
13387    D /trunk/plugins/kde/kdiskdialog.h
13388    D /trunk/plugins/kde/kinterfacemain.cpp
13389    D /trunk/plugins/kde/kinterfacemain.h
13390    D /trunk/plugins/kde/knetdialog.cpp
13391    D /trunk/plugins/kde/knetdialog.h
13392    D /trunk/plugins/kde/ktitlemenu.cpp
13393    D /trunk/plugins/kde/ktitlemenu.h
13394    D /trunk/plugins/kde/kvlcslider.cpp
13395    D /trunk/plugins/kde/kvlcslider.h
13396    D /trunk/plugins/kde/kvlcui.rc
13397    M /trunk/plugins/lpcm_adec/.cvsignore
13398    M /trunk/plugins/lpcm_adec/Makefile
13399    M /trunk/plugins/lpcm_adec/lpcm_adec.c
13400    M /trunk/plugins/macosx/.cvsignore
13401    M /trunk/plugins/macosx/Makefile
13402    M /trunk/plugins/macosx/aout_macosx.c
13403    M /trunk/plugins/macosx/intf_main.c
13404    M /trunk/plugins/macosx/intf_vlc_wrapper.c
13405    M /trunk/plugins/macosx/macosx.c
13406    M /trunk/plugins/macosx/vout_macosx.c
13407    M /trunk/plugins/mad/.cvsignore
13408    M /trunk/plugins/mad/Makefile
13409    M /trunk/plugins/mad/mad_adec.c
13410    M /trunk/plugins/mad/mad_libmad.c
13411    M /trunk/plugins/memcpy/.cvsignore
13412    M /trunk/plugins/memcpy/Makefile
13413    M /trunk/plugins/memcpy/memcpy.c
13414    M /trunk/plugins/memcpy/memcpy3dn.c
13415    M /trunk/plugins/memcpy/memcpymmx.c
13416    M /trunk/plugins/memcpy/memcpymmxext.c
13417    M /trunk/plugins/mga/.cvsignore
13418    M /trunk/plugins/mga/Makefile
13419    M /trunk/plugins/mga/mga.c
13420    M /trunk/plugins/mga/vout_mga.c
13421    M /trunk/plugins/motion/.cvsignore
13422    M /trunk/plugins/motion/Makefile
13423    M /trunk/plugins/motion/motion.c
13424    M /trunk/plugins/motion/motion3dnow.c
13425    M /trunk/plugins/motion/motionaltivec.c
13426    M /trunk/plugins/motion/motionmmx.c
13427    M /trunk/plugins/motion/motionmmxext.c
13428    M /trunk/plugins/mpeg_adec/.cvsignore
13429    M /trunk/plugins/mpeg_adec/Makefile
13430    M /trunk/plugins/mpeg_adec/adec_layer1.c
13431    M /trunk/plugins/mpeg_adec/adec_layer2.c
13432    M /trunk/plugins/mpeg_adec/mpeg_adec.c
13433    M /trunk/plugins/mpeg_adec/mpeg_adec_generic.c
13434    M /trunk/plugins/mpeg_system/.cvsignore
13435    M /trunk/plugins/mpeg_system/Makefile
13436    M /trunk/plugins/mpeg_system/input_es.c
13437    M /trunk/plugins/mpeg_system/input_ps.c
13438    M /trunk/plugins/mpeg_system/input_ts.c
13439    M /trunk/plugins/mpeg_system/input_ts.h
13440    M /trunk/plugins/mpeg_system/mpeg_es.c
13441    M /trunk/plugins/mpeg_system/mpeg_ps.c
13442    M /trunk/plugins/mpeg_system/mpeg_ts.c
13443    M /trunk/plugins/mpeg_vdec/.cvsignore
13444    M /trunk/plugins/mpeg_vdec/Makefile
13445    M /trunk/plugins/mpeg_vdec/video_decoder.c
13446    M /trunk/plugins/mpeg_vdec/video_parser.c
13447    M /trunk/plugins/mpeg_vdec/vpar_blocks.c
13448    M /trunk/plugins/mpeg_vdec/vpar_headers.c
13449    M /trunk/plugins/mpeg_vdec/vpar_pool.c
13450    M /trunk/plugins/mpeg_vdec/vpar_synchro.c
13451    M /trunk/plugins/qnx/Makefile
13452    M /trunk/plugins/qnx/aout_qnx.c
13453    M /trunk/plugins/qnx/qnx.c
13454    M /trunk/plugins/qnx/vout_qnx.c
13455    M /trunk/plugins/qt/.cvsignore
13456    M /trunk/plugins/qt/Makefile
13457    M /trunk/plugins/qt/intf_qt.cpp
13458    M /trunk/plugins/qt/qt.cpp
13459    M /trunk/plugins/sdl/.cvsignore
13460    M /trunk/plugins/sdl/Makefile
13461    M /trunk/plugins/sdl/aout_sdl.c
13462    M /trunk/plugins/sdl/sdl.c
13463    M /trunk/plugins/sdl/vout_sdl.c
13464    M /trunk/plugins/spudec/.cvsignore
13465    M /trunk/plugins/spudec/Makefile
13466    M /trunk/plugins/spudec/spu_decoder.c
13467    M /trunk/plugins/text/.cvsignore
13468    M /trunk/plugins/text/Makefile
13469    D /trunk/plugins/text/intf_ncurses.c
13470    D /trunk/plugins/text/intf_rc.c
13471    M /trunk/plugins/text/ncurses.c
13472    M /trunk/plugins/text/rc.c
13473    M /trunk/plugins/vcd/.cvsignore
13474    M /trunk/plugins/vcd/Makefile
13475    M /trunk/plugins/vcd/input_vcd.c
13476    M /trunk/plugins/vcd/linux_cdrom_tools.c
13477    M /trunk/plugins/vcd/linux_cdrom_tools.h
13478    M /trunk/plugins/vcd/vcd.c
13479    M /trunk/plugins/x11/.cvsignore
13480    M /trunk/plugins/x11/Makefile
13481    D /trunk/plugins/x11/vout_common.c
13482    D /trunk/plugins/x11/vout_common.h
13483    D /trunk/plugins/x11/vout_x11.c
13484    D /trunk/plugins/x11/vout_xvideo.c
13485    M /trunk/plugins/x11/x11.c
13486    A /trunk/plugins/x11/xcommon.c
13487    A /trunk/plugins/x11/xcommon.h
13488    M /trunk/plugins/x11/xvideo.c
13489    M /trunk/po/fr.po
13490    M /trunk/share/gnome-vlc.xpm
13491    M /trunk/share/gvlc.xpm
13492    M /trunk/share/kvlc.xpm
13493    M /trunk/share/qvlc.xpm
13494    M /trunk/share/vlc.xpm
13495    M /trunk/src/audio_output/aout_ext-dec.c
13496    M /trunk/src/audio_output/aout_s16.c
13497    M /trunk/src/audio_output/aout_s8.c
13498    M /trunk/src/audio_output/aout_spdif.c
13499    M /trunk/src/audio_output/aout_u16.c
13500    M /trunk/src/audio_output/aout_u8.c
13501    M /trunk/src/audio_output/audio_output.c
13502    M /trunk/src/input/input.c
13503    M /trunk/src/input/input_clock.c
13504    M /trunk/src/input/input_dec.c
13505    M /trunk/src/input/input_ext-dec.c
13506    M /trunk/src/input/input_ext-intf.c
13507    M /trunk/src/input/input_programs.c
13508    M /trunk/src/input/mpeg_system.c
13509    M /trunk/src/interface/interface.c
13510    M /trunk/src/interface/intf_msg.c
13511    M /trunk/src/interface/intf_playlist.c
13512    M /trunk/src/interface/main.c
13513    M /trunk/src/misc/beos_specific.cpp
13514    M /trunk/src/misc/darwin_specific.c
13515    M /trunk/src/misc/iso_lang.c
13516    M /trunk/src/misc/modules.c
13517    M /trunk/src/misc/modules_builtin.h.in
13518    D /trunk/src/misc/modules_core.h
13519    A /trunk/src/misc/modules_plugin.h
13520    M /trunk/src/misc/mtime.c
13521    M /trunk/src/misc/netutils.c
13522    D /trunk/src/misc/tests.c
13523    M /trunk/src/misc/win32_specific.c
13524    M /trunk/src/video_output/video_output.c
13525    M /trunk/src/video_output/video_text.c
13526    M /trunk/src/video_output/vout_pictures.c
13527    M /trunk/src/video_output/vout_subpictures.c
13530 Some heavy changes today:
13531   * Removed duplicate function checks from configure.in.
13532   * Added extra magic to Makefile.modules so that the module Makefiles
13533     are now ridiculously simple. And I mean *simple*. Check it! This will
13534     make a possible switch to full autoconf/automake a lot easier.
13535   * Added the vlc version name to the plugin symbols, to be sure we only load
13536     plugins with the same version number. A nasty consequence is that you
13537     need to rebuild your tree after midnight if you are using a CVS tree :-)
13538   * Got rid of modules_export.h by #defining exported functions in the same
13539     header as their prototype.
13540   * Added modules_inner.h and other commonly used .h files to common.h so
13541     there are less and less files to include, and renamed common.h to
13542     <videolan/vlc.h>.
13543   * First modifications to the module handling system towards my ultimate
13544     goal to get rid of the *_Probe functions. Got rid of TestMethod and
13545     TestCPU, as well as src/misc/tests.c.
13546   * Wrote the chroma plugin handling functions. No YUV functions have been
13547     ported yet because it'ls a lot of work, but the core system works, I
13548     tried it with a naive yv12->rgb16 plugin (which will disappear when the
13549     real functions are ready).
13550   * Made a lot of functions in dvd_summary.c one-liners to avoid wasting
13551     too many output lines.
13552   * Fixed a segfault in input_dvd.c:DVDInit.
13553   * Added a fixfiles.sh script in plugins/gtk to be run after Glade has
13554     generated its C files.
13555   * Did some work on the KDE interface to make it suck a bit less. It still
13556     segfaults, but at least it runs and it looks less ugly.
13557   * RGB SDL rendering works again, though in 16bpp only.
13558   * Made plugins/vcd/linux_cdrom_tools.c independent of any vlc structure
13559     so that it'll be easily put in a library. Maybe libdvdcss?
13560   * Fixed VCD date display.
13561   * Merged vout_xvideo.c, vout_x11.c and vout_common.c into xcommon.c.
13562   * Wrote non-Shm XVideo output.
13563   * Made X11 output work again. Still pretty unstable, only works for 16bpp.
13564   * Additional french translation in po/fr.po. Any taker for the rest?
13565   * Fixed a segfault in video_output.c when the allocated pictures were
13566     not direct buffers.
13567   * If $DISPLAY isn't set, don't try to run the Gtk+ interface.
13568   * Replaced 48x48 .xpm images with 32x32 ones to conform to Debian policy
13569     (Closes Debian bug #126939).
13570   * Removed the automatic ./configure launch when running `make all' for
13571     the first time.
13573 Stuff currently more broken than it ought to be:
13574   * The wall filter. Being fixed.
13575   * x11 and sdl plugins for depth != 16bpp.
13576   * Software YUV.
13577   * gvlc, gnome-vlc, kvlc shortcuts. Use --intf instead for the moment.
13579 ------------------------------------------------------------------------
13580 r1369 | stef | 2001-12-30 23:10:26 +0100 (Sun, 30 Dec 2001) | 4 lines
13581 Changed paths:
13582    M /trunk/extras/libdvdread/Makefile
13583    M /trunk/plugins/dvdread/dvdread.c
13584    M /trunk/plugins/dvdread/input_dvdread.c
13586 *Some fixes for dvdread plugin.
13588 It compiles but doesn't work yet.
13590 ------------------------------------------------------------------------