]> git.sesse.net Git - vlc/blob - doc/ChangeLog-2001
* toolbox:
[vlc] / doc / ChangeLog-2001
1 2001-12-31 Monday 05:10  sam
2
3    * Updated changelog.
4
5 2001-12-31 Monday 04:53  sam
6
7    * Fixed detection of the esd plugin.
8    * Fixed the ts plugin's input type detection.
9    * Fixed the BadCursor error in the x11 and xvideo plugins. For real this
10      time (unlike my 2001/08/03 fix :p).
11    * Made the wall filter work a bit better. It now spawns a 3x2 mosaic,
12      but this will eventually be configurable, à la `--filter wall:3x3'.
13
14 2001-12-31 Monday 03:26  massiot
15
16  * Fixed a bug in DecoderError.
17  * Temporary kludge for vlc_mpeg_adec=mad ./vlc ...
18
19 2001-12-31 Monday 03:23  massiot
20
21  Fixed a bug in DecoderError.
22
23 2001-12-31 Monday 01:21  massiot
24
25  STABLE/HEAD merge ; backported the Next Generation Buffer Manager.
26
27 2001-12-31 Monday 01:13  massiot
28
29  Miscellaneous typos.
30
31 2001-12-30 Sunday 07:09  sam
32
33  Some heavy changes today:
34    * Removed duplicate function checks from configure.in.
35    * Added extra magic to Makefile.modules so that the module Makefiles
36      are now ridiculously simple. And I mean *simple*. Check it! This will
37      make a possible switch to full autoconf/automake a lot easier.
38    * Added the vlc version name to the plugin symbols, to be sure we only load
39      plugins with the same version number. A nasty consequence is that you
40      need to rebuild your tree after midnight if you are using a CVS tree :-)
41    * Got rid of modules_export.h by #defining exported functions in the same
42      header as their prototype.
43    * Added modules_inner.h and other commonly used .h files to common.h so
44      there are less and less files to include, and renamed common.h to
45      <videolan/vlc.h>.
46    * First modifications to the module handling system towards my ultimate
47      goal to get rid of the *_Probe functions. Got rid of TestMethod and
48      TestCPU, as well as src/misc/tests.c.
49    * Wrote the chroma plugin handling functions. No YUV functions have been
50      ported yet because it'ls a lot of work, but the core system works, I
51      tried it with a naive yv12->rgb16 plugin (which will disappear when the
52      real functions are ready).
53    * Made a lot of functions in dvd_summary.c one-liners to avoid wasting
54      too many output lines.
55    * Fixed a segfault in input_dvd.c:DVDInit.
56    * Added a fixfiles.sh script in plugins/gtk to be run after Glade has
57      generated its C files.
58    * Did some work on the KDE interface to make it suck a bit less. It still
59      segfaults, but at least it runs and it looks less ugly.
60    * RGB SDL rendering works again, though in 16bpp only.
61    * Made plugins/vcd/linux_cdrom_tools.c independent of any vlc structure
62      so that it'll be easily put in a library. Maybe libdvdcss?
63    * Fixed VCD date display.
64    * Merged vout_xvideo.c, vout_x11.c and vout_common.c into xcommon.c.
65    * Wrote non-Shm XVideo output.
66    * Made X11 output work again. Still pretty unstable, only works for 16bpp.
67    * Additional french translation in po/fr.po. Any taker for the rest?
68    * Fixed a segfault in video_output.c when the allocated pictures were
69      not direct buffers.
70    * If $DISPLAY isn't set, don't try to run the Gtk+ interface.
71    * Replaced 48x48 .xpm images with 32x32 ones to conform to Debian policy
72      (Closes Debian bug #126939).
73    * Removed the automatic ./configure launch when running `make all' for
74      the first time.
75
76  Stuff currently more broken than it ought to be:
77    * The wall filter. Being fixed.
78    * x11 and sdl plugins for depth != 16bpp.
79    * Software YUV.
80    * gvlc, gnome-vlc, kvlc shortcuts. Use --intf instead for the moment.
81
82 2001-12-30 Sunday 06:31  sam
83
84    * Duh. Reverted Håkan's patch. Adding the same target three times isn't
85      a good idea.
86
87 2001-12-30 Sunday 06:10  sam
88
89    * configure.in fix by Håkan Hjort.
90
91 2001-12-30 Sunday 06:06  sam
92
93    * Backported the DecoderError() patch.
94
95 2001-12-30 Sunday 05:46  sam
96
97    * Forgot a file in my last commit.
98
99 2001-12-30 Sunday 05:38  sam
100
101    * Put ErrorThread() in input_ext-dec.h because it was the same function
102      in all decoders. Called it DecoderError() instead.
103    * All decoders enter DecoderError() in case of error, even if they
104      haven't allocated all their data. This prevents the input from getting
105      stuck if a decoder has failed its initialization.
106    * Namespace fixes through the decoder files.
107
108 2001-12-29 Saturday 03:44  massiot
109
110  Fixed a cosmetic issue.
111
112 2001-12-29 Saturday 03:07  massiot
113
114  Hidden gory buffer management details in a private section of data_packet_t.
115
116 2001-12-27 Thursday 03:47  massiot
117
118  * Changed pf_read prototype and minor changes.
119
120 2001-12-27 Thursday 01:49  massiot
121
122  * Changed the way decoder_fifo_t works ;
123  * Minor optimizations in the Next Generation Buffer Manager.
124
125 2001-12-20 Thursday 22:11  sam
126
127    * Added Jeffrey Baker to the AUTHORS file.
128    * Fixed a PPC compilation issue.
129
130 2001-12-19 Wednesday 10:00  massiot
131
132  Next Generation Buffer Manager for DVD and VCD plug-ins.
133
134 2001-12-19 Wednesday 03:50  sam
135
136    * Initialize SDL before opening the SDL audio output.
137    * Prevent two SDL video outputs or audio outputs to be spawned at the
138      same time to avoid ugly crashes.
139    * The SDL plugin now says whether we are using software or hardware YUV
140      in its window title.
141    * We now stop at the first ':' when looking for a module name, to easily
142      pass information to the modules. Possible example: --vout sdl:software,
143      implementation of such an option is left as an exercise.
144    * Merged filter_bob and filter_bob422 into filter_bob. Use --filter bob
145      to deinterlace 422 into 420 as well.
146    * Factorized code common to most filters and the video output, optimized
147      a few filters by aligning data and reading 64 bits at a time.
148    * Two new absolutely useless, CPU-eating, resource-wasting, but fun
149      filters: enjoy `transform', which performs flips and 90° rotations, and
150      `distort', which performs animated image effects (currently only a naive
151      sine wave is implemented). Usage examples:
152         --filter transform:hflip
153         --filter transform:vflip
154         --filter transform:90
155         --filter transform:180
156         --filter transform:270
157         --filter distort:wave
158
159 2001-12-18 Tuesday 03:13  sam
160
161    * Ultimate fixes to the win32 package generation.
162
163 2001-12-18 Tuesday 03:07  sam
164
165    * Ultimate fixes to the win32 package generation.
166
167 2001-12-18 Tuesday 02:19  sam
168
169    * Fixed a copy/paste error from previous commit.
170
171 2001-12-18 Tuesday 02:03  sam
172
173    * Added --with-dll-path option for my automated Win32 package builds.
174
175 2001-12-17 Monday 16:42  sam
176
177    * TS input: bugfix in DecodePAT and minor optimizations elsewhere.
178
179 2001-12-17 Monday 16:37  sam
180
181    * TS input: bugfix in DecodePAT and minor optimizations elsewhere.
182
183 2001-12-17 Monday 16:03  sam
184
185    * TS input: we now check that the contents of the PAT has changed
186      before updating it, instead of just relying on its version number.
187    * debian/changelog updates.
188
189 2001-12-17 Monday 15:59  sam
190
191    * TS input: we now check that the contents of the PAT has changed
192      before updating it, instead of just relying on its version number.
193
194 2001-12-17 Monday 12:42  sam
195
196    * Disabled broken ALSA audio output. Closes Debian bugs #110869 and #119846.
197    * Fixed build dependencies on libasound2-dev. Closes Debian bug #121057.
198    * Changed configure.in so that libXv_pic is used instead of libXv.a when
199      available. Closes Debian bug #111790.
200
201 2001-12-17 Monday 05:33  sam
202
203    * Pathetic attempt at a 4:2:2 renderer and deinterlacer, combining the
204      most awful line dropping techniques of both BOB and 422 to 420
205      downscaling. Don't worry, it should only survive for a couple of days.
206
207 2001-12-17 Monday 03:48  sam
208
209    * CPU detection under BeOS.
210    * Fixed XVideo port selection.
211
212 2001-12-17 Monday 03:38  sam
213
214    * CPU detection under BeOS.
215    * Fixed XVideo port selection.
216    * New stupid plugin: "--filter wall" for split-image playback :-)
217       (will evolve into a real image wall plugin when I have time)
218
219 2001-12-16 Sunday 18:00  sam
220
221  libdvdcss changes:
222    * Support for REPORT_TITLE_KEY and RPC commands by Håkan Hjort
223      <d95hjort@dtek.chalmers.se>.
224
225  vlc changes:
226    * Minor coding style fixes (please avoid tabs).
227
228 2001-12-16 Sunday 16:18  sam
229
230    * Filter plugins. Not very polished (please don't look at how the dates are
231      calculated!), but worth a try. Use the following flags:
232       "--filter invert" for inverse video
233       "--filter bob" for BOB deinterlacing
234    * Fixed a potential segfault if the subtitle stream was encountered
235      before the video stream.
236    * Misc vout4 fixes.
237
238 2001-12-13 Thursday 23:56  sam
239
240    * Minor compile fix under Hurd.
241    * Fixed a potential segfault if the subtitle stream was encountered
242      before the video stream.
243
244 2001-12-13 Thursday 20:47  sam
245
246    * Buffer choice optimizations - vout4 should eat even less CPU now.
247    * Minor warning fix for Hurd.
248
249 2001-12-13 Thursday 17:33  massiot
250
251  Fixed a major bug I introduced lately.
252
253 2001-12-13 Thursday 12:47  sam
254
255    * Fixed aspect ratio handling.
256    * Fixed potential compilation issues under eg. BSD/OS.
257
258 2001-12-13 Thursday 12:37  sam
259
260    * Fixed potential compilation issues under eg. BSD/OS.
261
262 2001-12-12 Wednesday 15:20  sam
263
264    * Fixed unnecessary target remake (recursive make is harmful !).
265
266 2001-12-12 Wednesday 15:20  sam
267
268    * Fixed Win32 port.
269    * Fixed unnecessary target remake (recursive make is harmful !).
270
271 2001-12-12 Wednesday 13:48  massiot
272
273  Next Generation Buffer Manager, for TS plug-in. Please test in-ten-si-vely !
274
275 2001-12-12 Wednesday 11:18  massiot
276
277  Next Generation Buffer Manager, for PS plug-in.
278
279 2001-12-12 Wednesday 02:13  sam
280
281    * Additional fixes for OSes with no gettext (thanks to ej0).
282    * Fixed a potential BeOS linking issue.
283    * Fixed a minor bug in input.c.
284
285 2001-12-12 Wednesday 02:13  sam
286
287    * Fixed a potential BeOS linking issue.
288    * Fixed a minor bug in input.c.
289
290 2001-12-11 Tuesday 23:53  sam
291
292    * Don't try to use gettext if we don't have GNU gettext. This may change
293      in the future though (most GNU software seems to include a local copy of
294      gettext in case the operating system doesn't provide it).
295
296 2001-12-11 Tuesday 15:35  sam
297
298    * Fixed an issue in Makefile.dep causing to rebuild unnecessary files
299      in the gtk/gnome plugins.
300    * Removed cruft from configure.in.
301
302 2001-12-11 Tuesday 15:31  sam
303
304    * Fixed an issue in Makefile.dep causing to rebuild unnecessary files
305      in the gtk/gnome and x11/xvideo plugins.
306    * Fixed CFLAGS_XVIDEO.
307
308 2001-12-11 Tuesday 14:43  sam
309
310    * Added vlc-arts to the debian package generation.
311    * HP-UX port of the DVD ioctls courtesy of David Siebörger.
312
313 2001-12-11 Tuesday 13:55  massiot
314
315  Fixed major bugs in the PSI decoder.
316
317 2001-12-10 Monday 18:58  gbazin
318
319    * configure.in was broken for win32
320
321 2001-12-10 Monday 16:17  massiot
322
323  Backported fix for possible segfault with --input.
324
325 2001-12-10 Monday 16:16  massiot
326
327  Fixed possible segfault with --input.
328
329 2001-12-10 Monday 13:17  sam
330
331    * (very old) russian translation courtesy of Valek Filippov <frob@df.ru>.
332    * Fixed a charset issue in the french translation.
333
334 2001-12-10 Monday 12:40  sam
335
336    * Removed more unused code.
337    * Updated config.guess and config.sub from GNU's latest versions (bozo,
338      you may want to update them in vls as well).
339    * Added vlc.pot skeleton for translators.
340
341 2001-12-10 Monday 04:54  sam
342
343    * Fixed a segfault on exit when no fast_memcpy module was found.
344
345 2001-12-10 Monday 04:53  sam
346
347    * Removed unused code (intf_channels.c, keystrokes.h).
348    * Put common_win32.h back into common.h -- it wasn't that big and we
349      should not multiply header files.
350    * Added gettext support by Thomas Graf <reeler@reeler.org>, may be
351      broken on other platforms but we'll only see it when I'm finished
352      with vout 4 :-)
353    * Fixed a segfault on exit when no fast_memcpy module was found.
354
355 2001-12-09 Sunday 17:08  sam
356
357    * Fixed Debian package builds.
358
359 2001-12-09 Sunday 17:01  sam
360
361    * COMPLETE CVS BREAKAGE !! The MAIN branch is going to be a playground
362      for my nevrotic and destructive pulsions during the next few hours!
363
364    * If you want to test vlc, please use the v0_2_92_branch branch.
365
366    * Stuff currently working:
367       - direct to YUV buffer decoding
368       - non-ugly subtitle blending
369       - XVideo and SDL video output
370
371    * Stuff currently utterly broken:
372       - aspect ratio
373       - software rendering (ie, all other video output plugins)
374
375    * Additional misc changes:
376       - Renamed spu_dec to spudec and mad_adec to mad to stay coherent with
377         other plugins. Also, renamed mpeg to mpeg_system.
378       - Added jobi to the AUTHORS file.
379       - Factored code common to vout_x11.c and vout_xvideo.c.
380
381 2001-12-09 Sunday 16:34  sam
382
383  file vlc-mad.dirs was initially added on branch v0_2_92_branch.
384
385 2001-12-09 Sunday 16:34  sam
386
387    * Added the MAD plugin to the Debian build system, called it mad instead
388      of mad_adec to stay coherent will other plugins.
389    * Fixed a few warnings due to missing <string.h>.
390
391 2001-12-08 Saturday 12:55  sam
392
393    * Fixed debian and make snapshot rules.
394
395 2001-12-07 Friday 19:29  massiot
396
397  Bumped up revision number to 0.2.92-pre1 and 1.0.1-pre1. Ready for 0.2.92
398  pre-release.
399
400 2001-12-07 Friday 19:25  massiot
401
402  0.2.92 pre-release.
403
404 2001-12-07 Friday 19:22  massiot
405
406  Bumped up revision number to 0.2.92-dev and 1.0.1-dev.
407
408 2001-12-07 Friday 18:33  sam
409
410    * Fixed a total breakage of decoder plugins introduced by fast_memcpy.
411    * Got rid of #include "main.h", included it in common.h instead ; got
412      rid of #include "config.h" in most files as well.
413
414 2001-12-07 Friday 16:47  jobi
415
416  * added functions in inputs to change the current program (most of
417    them do nothing)
418
419  All inputs should now have a pf_setprogram function. A default one is
420  provided in input_programs.c.
421
422 2001-12-06 Thursday 13:53  massiot
423
424  Fix for altivec under Linux.
425
426 2001-12-06 Thursday 11:18  massiot
427
428  Updated man page.
429
430 2001-12-06 Thursday 10:53  massiot
431
432  * mad plug-in is now built-in to avoid PIC/non-PIC collision ;
433  * Updated documentation ;
434  * New --desync option, to delay the video (in case of lip desynchronization) ;
435  this is bad, but we have no other option for the moment ;
436  * Clicking in vout now pauses the stream, patch courtesy of Peter Surda.
437
438 2001-12-05 Wednesday 10:30  massiot
439
440  Fix for altivec detection (courtesy of walken).
441
442 2001-12-05 Wednesday 03:31  jobi
443
444  * Added 2 fields, p_selected_program and p_new_program, to the
445    input_thread_t structure, so that we may support multi programs
446    streams.
447  * Modified inputs to take account of this change.
448  * Modified input_clock.c so that it doesn't refer to pp_programs[0]
449    any more.
450
451  Now we should not refer to the first program, but to the selected
452  program. Functions to change the current program are coming.
453
454 2001-12-04 Tuesday 13:47  massiot
455
456  libmad plug-in, courtesy of Jean-Paul Saman <jpsaman@wxs.nl>.
457
458 2001-12-03 Monday 17:55  massiot
459
460  Reversed my previous patch (too buggy).
461
462 2001-12-03 Monday 17:34  stef
463
464  -added eof for ts seekable streams
465  -close netlist when ts input ends
466
467 2001-12-03 Monday 16:43  massiot
468
469  Fixed a bug in my previous commit.
470
471 2001-12-03 Monday 16:18  sam
472
473    * Borrowed MPlayer's fast memcpy() routines. Best is autodetected, choose
474      "--memcpy <whatever>" to choose one from c, mmx, mmxext or 3dn.
475      Please test! Especially Athlon users.
476    * Added versioned build-dep to libasound2-dev (Closes Debian bug #121057).
477    * Updated Gtk/GNOME interfaces to use "udpstream" instead of "ts".
478    * Unrolled ChangeLog.
479
480 2001-12-03 Monday 15:58  massiot
481
482  More checks for GTK headers.
483
484 2001-12-03 Monday 13:58  massiot
485
486  Fixed a crash when pausing.
487
488 2001-12-03 Monday 11:49  massiot
489
490  Fixed numerous bugs in ES selection.
491
492 2001-12-02 Sunday 17:32  stef
493
494  -hopeless fix for the input netlist corruption bug.
495
496  Please test.
497
498 2001-11-30 Friday 22:52  gbazin
499
500   * DeleteDecoderConfig wasn't freeing (anymore) the packets left in the
501      decoder fifo. This bug was creating an io_vec starving on title change
502      when playing DVDs.
503
504 2001-11-30 Friday 00:34  stef
505
506  -Update for libdvdcss documentation
507
508 2001-11-29 Thursday 17:24  jobi
509
510  Removed a bug in the Makefile that made the CVS-snapshots building fail.
511
512 2001-11-29 Thursday 15:57  massiot
513
514  Added vlc.app
515
516 2001-11-29 Thursday 15:34  massiot
517
518  Fixed a problem with vlc.app.
519
520 2001-11-29 Thursday 10:20  massiot
521
522  Moved #include <string.h> to macosx plug-in instead of threads.h, as in
523  other plug-ins.
524
525 2001-11-29 Thursday 01:01  fgp
526
527    *) Added "#include <string.>" to include/threads.h
528       It' wouldn't compile on OSX without this.
529
530    *) Removed the mutex the vout and intf thread (were supposed to use)
531       for syncronizing acces to the p_vout->p_sys structure.
532       The p_vout->change_lock mutex is used for syncronization now. (and
533       should make synronization work)
534
535 2001-11-28 Wednesday 15:08  massiot
536
537  * Added error checking in pthread wrapper ; as a result, intf_msg.h must
538  now be included *before* threads.h ;
539  * Changed all files to include intf_msg.h before threads.h ; while I was
540  at it, I update the copyright notices ;
541  * Removed the obsolete darwin plug-in.
542
543 2001-11-27 Tuesday 14:42  sam
544
545    * Fixed a deadlock (bug reported by marcari).
546
547 2001-11-27 Tuesday 13:06  massiot
548
549  Removed obsolete entry.
550
551 2001-11-27 Tuesday 12:52  massiot
552
553  Documentation updates.
554
555 2001-11-27 Tuesday 12:33  massiot
556
557  * Updated man page.
558  * dvd:<device>[@<raw device>] to avoid device namespace collision under
559  win32.
560
561 2001-11-27 Tuesday 11:14  massiot
562
563  More WIN32 portability fixes.
564
565 2001-11-27 Tuesday 10:58  massiot
566
567  Disabled dvdread by default since it causes many portability problems.
568  Enable it with --enable-dvdread.
569
570 2001-11-27 Tuesday 10:50  massiot
571
572  Fixed a compilation issue under Win32
573
574 2001-11-27 Tuesday 10:18  massiot
575
576  Fixed a potential packet corruption in the DVD input (I suspect this
577  might be the cause of the OS X problem - please confirm).
578
579 2001-11-26 Monday 23:06  marcari
580
581  * changed the protocol version for communication between vlc and vlcs
582  from 12 to 13 (due to change from ts:// to udpstream://)
583
584 2001-11-25 Sunday 22:52  gbazin
585
586   * Big clean-up to allow compiling every module as plugins.
587   * Added bytes_swap.h to provide ntoh() and htol() on Win32. With this
588       change we don't have to link winsock2 with every plugin anymore. This
589       should also give us a slight speed increase.
590   * Added #define WIN32_LEAN_AND_MEAN in threads.h to speed-up compilation
591       on Win32.
592   * Modified ac_downmix_3dn and sse so they compile with the latest gcc for
593       Win32.
594
595  (PS: the dvdread plugin doesn't compile yet on Win32)
596
597 2001-11-25 Sunday 05:04  stef
598
599  Support for libdvdread.
600
601  Libdvdread files are in extras/libdvdread. They have not been changed from
602  those of libdvdread 0.9.2. The changes are in the subdirectory videolan.
603  They basically consist of a new function in the API that does a readv()
604  instead fo a read().
605
606  The library is statically linked with libdvdcss from extras/libdvdcss, and
607  the whole is statically linked with the plugin dvdread. Dvdread can only be
608  compiled as a builtin module for the time being, I think (which means I
609  haven't tried to compile it as a plugin).
610
611  Basically, input_dvdread.c is a copy and paste from input_dvd.c with a few
612  changes to use libdvdread calls. It is still in very alpha stage, but it
613  should offer the same features as the current DVD input.
614
615  It can be called with either the syntax: "dvdread:/dev/dvd"
616  or "--input dvdread /dev/dvd". The command line switches (-t, -T, -c, -u)
617  should work too.
618
619 2001-11-25 Sunday 01:26  sam
620
621    * Added "Video" menu hint to debian/*menu (Closes Debian bug #121036).
622
623 2001-11-23 Friday 18:47  massiot
624
625  Major rewrite of the network layer. The following syntax ARE NO LONGER
626  SUPPORTED :
627  ts:toto:1234/meuh
628  --server toto --broadcast meuh --port 1234
629
630  The only supported syntax is :
631  udp[stream]:[//][serveraddr:[serverport]][@[bindaddr][:bindport]]
632  example : udpstream:toto@meuh:toto
633
634  In most cases, simply passing "udpstream:" should work, since it enables
635  unicast and broadcast reception on port 1234 from any server. Other
636  options are only used for fine tuning and multicast.
637
638  TODO :
639  * The GTK interface is broken (glade knowledge wanted !)
640  * Test this on all supported platforms (and fix them :)
641  [this won't work with current channel servers - fix needed]
642
643 2001-11-21 Wednesday 22:33  jlj
644
645  Don`t use long long, use u64/s64 (int_types.h).
646  Fixed a stale pointer in mpeg_vdec_Run().
647
648 2001-11-21 Wednesday 16:47  massiot
649
650  (Hopefully) fixed the network connect() bug under UNIX. I need
651  confirmation that I didn't break the Win32 port, please.
652
653 2001-11-21 Wednesday 10:47  massiot
654
655  Fixed compilation bugs with Qt and BeOS (henriiiiiiiiiiiiiiiiiiiiiiiii !!)
656
657 2001-11-19 Monday 23:49  sam
658
659    * aRts audio output courtesy of Emmanuel Blindauer <manu@agat.net>.
660    * Fix to the esd plugin when esd-config --cflags is nonempty.
661
662 2001-11-16 Friday 00:29  stef
663
664  * --chennels puts gtk/gnome in multi-channel network mode.
665
666  * the network window of the interface reports the values of the environment
667   variables.
668
669  * channels mode excludes vls configuration
670
671  * the vlc does not try to bind vls.via.ecp.fr by default when you select
672   channels mode.
673
674 2001-11-15 Thursday 18:50  sam
675
676    * Fixed MacOS X 10.1 network input, thanks to Mathias Kretschmer
677      <mathias@research.att.com>.
678
679 2001-11-15 Thursday 18:11  sam
680
681    * Fixed a little crash introduced in my previous commit :-)
682    * Removed more unused code.
683
684 2001-11-15 Thursday 17:39  sam
685
686    * Fixed a few crashes due to race conditions in the decoder spawning.
687    * Removed unused code here and there.
688
689 2001-11-15 Thursday 16:15  massiot
690
691  Removed unused structure.
692
693 2001-11-14 Wednesday 23:19  xav
694
695  Please, please, don't forget those who use the --with-directx flag when
696  ./configuring ! :p
697  Now, to configure directx, use the --enable-directx and --with-directx
698  if necessary.
699
700 2001-11-14 Wednesday 18:08  gbazin
701
702  - The ./configure script is more friendly for Win32 users.
703      ( xvideo, x11 and dsp plugins are not enabled by default for win32,
704        plus a few other Win32 cosmetic changes )
705  - Updated the INSTALL-win32.txt file.
706
707  (Let's hope I didn't break anything ;-)
708
709 2001-11-14 Wednesday 16:55  massiot
710
711  Fixed a bug in altivec detection on MacOS X.
712
713 2001-11-14 Wednesday 03:38  stef
714
715  -moved warning message to debug message in spdif pass-through plugin
716
717  -changed a bit the wait time. It works better here, please test (Bozo ? 0:-)
718
719 2001-11-14 Wednesday 00:01  jlj
720
721  The default file-translation mode was not being set under win32.
722  In other words, file playback in 0.2.91 does not work. For de-
723  scheduling threads use a 0ms sleep instead of 1ms, as it was
724  causing problems under WinXP. I hope this does not introduce
725  problems under previous windows versions. I noticed it was
726  originally 0ms, but later changed to 1ms...
727
728 2001-11-13 Tuesday 18:10  sam
729
730    * Fixed heap corruption issues in ac3dec (thanks reno).
731
732 2001-11-13 Tuesday 16:28  massiot
733
734  Typo.
735
736 2001-11-13 Tuesday 16:00  sam
737
738    * Fixed a crash when using `--input dvd /dev/dvd' instead of `dvd:/dev/dvd'
739
740 2001-11-13 Tuesday 15:08  sam
741
742    * configure should no longer assume AltiVec is supported when it actually
743      isn't with buggy compilers and/or pre-set $CFLAGS.
744
745 2001-11-13 Tuesday 12:19  massiot
746
747  RPM builds.
748
749 2001-11-13 Tuesday 12:15  henri
750
751  Forgot Changelog.
752  Began to re-read the documentation.
753
754 2001-11-13 Tuesday 12:11  sam
755
756    * Commited my little release-howto (only useful to core vlc developers).
757
758 2001-11-13 Tuesday 12:09  henri
759
760  All decoders (audio, video, subtitles) are now modules.
761
762  - mpeg_vdec, mpeg_adec and ac3_adec are builtins by default
763  - ac3_spdif, spu_dec and lpcm_dec are plugins by default
764
765 2001-11-13 Tuesday 11:44  sam
766
767    * Closing Debian bug #119369 which was fixed a while ago.
768
769 2001-11-13 Tuesday 01:25  sam
770
771    * Got rid of DVDCSS_SEEK_INI in libdvdcss.
772
773 2001-11-13 Tuesday 00:46  sam
774
775    * Added a "make package-beos" rule.
776    * Fixed a BeOS compilation issue.
777
778 2001-11-12 Monday 23:56  sam
779
780    * Fixed the vlcs communication for real now.
781
782 2001-11-12 Monday 22:42  sam
783
784    * Fixed the vlcs communication issue by initializing WinSock at
785      startup (thanks Meuuh for the tip).
786
787 2001-11-12 Monday 20:49  massiot
788
789  Bumped up version number to 0.2.91.
790
791 2001-11-12 Monday 20:44  sam
792
793    * Fixed a bug in the "make snapshot*" rules.
794
795 2001-11-12 Monday 20:16  sam
796
797    * Made everything ready for a vlc-0.2.91 / libdvdcss-1.0.0 release.
798    * Updated ChangeLog and ChangeLog.libdvdcss.
799    * Increased vlcs response message length.
800    * Removed the i_flags argument to dvdcss_open. Everything is done through
801      environment variables now.
802
803 2001-11-12 Monday 13:22  massiot
804
805  Added FAQ.
806
807 2001-11-12 Monday 12:54  massiot
808
809  New --channelserver switch.
810
811 2001-11-12 Monday 11:37  massiot
812
813  Documentation updates.
814
815 2001-11-12 Monday 11:30  massiot
816
817  ipkg script for Familiar Linux 0.5 & bug fix in debian/rules.
818
819 2001-11-12 Monday 10:33  massiot
820
821  Corrected a typo.
822
823 2001-11-12 Monday 05:15  sam
824
825    * Added Oct's NSIS installer script. It will probably not work for you,
826      but I need it to build the Win32 auto installer.
827
828 2001-11-12 Monday 04:12  sam
829
830    * Automatic handling of the Channel Server's response in network mode.
831
832 2001-11-12 Monday 03:07  stef
833
834  -LPCM _is_ a private stream. Sorry.
835
836  -GetMACAddress takes the interface defined in the environment variable
837  vlc_iface instead of eth0
838
839 2001-11-12 Monday 01:56  stef
840
841  -Fixed bug with MPEG audio in TS streams: MPEG audio & LPCM are _not_
842  private ES :p
843
844 2001-11-11 Sunday 18:15  sam
845
846    * Fixed compilation (and quite probably runtime) issues under IA64
847      due to mixed int/void* casts.
848
849 2001-11-11 Sunday 01:32  stef
850
851  -Merged DVD netlist with input netlist to remove duplicated code.
852  Basically, this adds the ability for the netlist to handle transport
853  packets that carry more than one data_packet.
854
855 2001-11-09 Friday 13:49  massiot
856
857  * BSD/OS VCD patch, courtesy of Steven M. Schultz <sms@TO.GD-ES.COM>
858  * Win32 network fix.
859
860 2001-11-08 Thursday 21:07  jlj
861
862    * Fixed a mingw32 problem I introduced last night :)
863
864 2001-11-08 Thursday 14:45  stef
865
866  -kludge to have less discontinuity after a zero scr in DVD.
867
868  Maybe we should try to predict the date instead of taking the last one but
869  it seems quite hard.
870
871 2001-11-08 Thursday 01:48  jlj
872
873    * Fixed some win32 64-bit issues.
874
875 2001-11-07 Wednesday 22:58  jlj
876
877    * Fixed some win32 compile issues.
878    * Don't use long long, use u64/s64 (int_types.h).
879
880 2001-11-07 Wednesday 17:37  stef
881
882  *Move function that translates language codes into country name in src/misc
883  so that every plugin can use it
884
885  *Change the name of a function in dvd_udf.c to fit with the forthcoming
886   libdvdread plugin.
887
888 2001-11-07 Wednesday 10:34  massiot
889
890  Added fgp.
891
892 2001-11-06 Tuesday 17:12  massiot
893
894  New --enable-release config option.
895
896 2001-11-06 Tuesday 00:59  sam
897
898    * Fixed support for SPU and LPCM streams over network.
899
900 2001-11-05 Monday 21:24  fgp
901
902  Added a new drawer to the control window to support:
903  1) Title / Chapter selection
904  2) Subtitle selection
905  3) Audiochannel/Language selection
906  4) Angle selection
907
908 2001-11-05 Monday 15:22  massiot
909
910  New --volume option (untested, like usual :).
911
912 2001-11-02 Friday 13:30  massiot
913
914  * libdvdcss port to OpenBSD.
915
916 2001-11-01 Thursday 21:58  fgp
917
918  Reimported Intf_Controller, connected "File/Open/File" to Intf_Controller::file:Open.
919
920 2001-11-01 Thursday 15:30  sam
921
922    * Modified the pf_close kludge in input.c so that we don't segfault when
923      pf_init fails.
924
925 2001-11-01 Thursday 00:29  asmax
926
927  - Do not resample if delta is short enough
928
929 2001-10-31 Wednesday 11:55  reno
930
931  * Fixed a segfault on exit under Windows 2000
932
933 2001-10-30 Tuesday 23:45  massiot
934
935  Fixed mistakes in my previous commit.
936
937 2001-10-30 Tuesday 19:34  reno
938
939  * Use memalign for aligned data (instead of a greek malloc)
940  * Some optimization in imdct (all data are now aligned)
941  * SSE downmix now works for windows
942  * SSE imdct is desactivated for windows (MINGW32 doesn't know how to aligned data)
943
944 2001-10-30 Tuesday 12:49  asmax
945
946  - Changed default configuration for vls/vlcs hostname/IP
947
948 2001-10-30 Tuesday 10:57  massiot
949
950  Fixed '-' input.
951
952 2001-10-30 Tuesday 10:48  massiot
953
954  New interface for MacOS X, courtesy of Florian G. Pflug.
955
956 2001-10-26 Friday 16:23  massiot
957
958  VLC FAQ TBU.
959
960 2001-10-23 Tuesday 23:41  sam
961
962    * Synced dummy_dvdcss with Stef's changes to libdvdcss.
963    * configure now compiles the VCD plugin if linux/cdrom.h is present.
964
965 2001-10-23 Tuesday 03:06  jobi
966
967  Added VCD input plugin for Linux :
968
969  The Linux specific stuff is located in linux_cdrom_tools files.
970  For the time being, it only has title (tracks). Chapters will come if I
971  ever can read .vcd files.
972  I've modified Gnome and GTK+, not the others.
973  I've noticed a big bug, it segfaults at the end of a title. I will
974  have a look on this tomorrow.
975  Please be indulgent, it's my first peace of code ;-)
976
977 2001-10-22 Monday 15:17  massiot
978
979  Fixed ATTR_ALIGN configure test.
980
981 2001-10-22 Monday 14:07  sam
982
983    * Fixed NetBSD (and probably OpenBSD) libdvdcss compilation.
984
985 2001-10-22 Monday 12:28  massiot
986
987  Fixed compilation problems with OpenBSD.
988
989 2001-10-22 Monday 12:02  sam
990
991    * xvideo.so is now built in by default. Mixing PIC and non-PIC code was not
992    very nice.
993    * Fixed compilation errors in src/interface/main.c when the compiler did
994    not support SSE or 3DNow! inline assembly.
995
996 2001-10-22 Monday 11:35  massiot
997
998  Qt fix courtesy of Christopher Johnson <cjohnson@mint.net>.
999
1000 2001-10-22 Monday 02:33  xav
1001
1002  The vlc now crosscompiles smoothly without having to correct one file
1003  BUT this is UGLY ! We HAVE to find a way to make multicast function
1004  under Win32.
1005
1006  BTW, it does now definitely read TS Streams, locally or from the network.
1007
1008 2001-10-22 Monday 00:43  jobi
1009
1010  [no log message]
1011
1012 2001-10-21 Sunday 23:17  lool
1013
1014  Moved unlock in the if structure. This suppresses the dead_lock which
1015  was crashing the windows port in TS_input.
1016
1017  The audio still segfaults.
1018
1019 2001-10-16 Tuesday 16:51  stef
1020
1021  -defining TRACE_DVDCSS in config.h displays libdvdcss debug message.
1022  -libdvdcss error messages are reported in input_dvd.c.
1023  -vlc verbosity also enables more error messages from libdvdcss.
1024
1025 2001-10-15 Monday 14:59  sam
1026
1027    * Fixed an error in the ts://server[:port][/broadcast] input parsing.
1028
1029 2001-10-14 Sunday 03:26  stef
1030
1031  Use of an environment variable to choose libdvdcss method.
1032
1033 2001-10-13 Saturday 15:34  stef
1034
1035  New features for libdvdcss: we have three ways now to decode a title key.
1036
1037  1) Crack the title key (the method that was here before). The only change
1038  here is that we search the key for the exact chapter we are seeking with
1039  DVDSetArea (in case the key has changed within a title). It is maybe not a
1040  good idea.
1041
1042  2) Crack the disc key, which allows us to decode instantly all title keys.
1043  I've used an algorithm from Frank Stevenson ; it eats much memory (64MB),
1044  and takes about 15 s at launch time.
1045
1046  3) Decode the disc key with player keys (libcss method). However, you need
1047  licensed player keys at build time for that to work.
1048
1049  To choose between libdvdcss methods, a command line options is supplied:
1050
1051          vlc --dvdcss <method> where method is one of title, disc, key.
1052
1053  Note that all these changes only work with linux now, since we have to add a
1054  specific ioctl to read title key. I hope that I haven't broken too many things.
1055
1056 2001-10-11 Thursday 16:12  massiot
1057
1058  * Minor video parser optimization ;
1059  * SDL now displays an error message on 422 streams.
1060
1061 2001-10-11 Thursday 13:19  massiot
1062
1063  * Chroma 4:2:2 and 4:4:4 support in the decoder.
1064  * Fixed bugs in the C YUV transform with 4:2:2 format.
1065
1066 2001-10-11 Thursday 11:28  massiot
1067
1068  * Fixed bugs in RPM spec files ;
1069  * Fixed a bug in configure where ix86 machines were improperly detected.
1070
1071 2001-10-10 Wednesday 15:18  sam
1072
1073    * Fixed bad ChangeLog formatting.
1074
1075 2001-10-10 Wednesday 14:25  sam
1076
1077    * 0.2.90 release.
1078    * Updated ChangeLog files.
1079    * XVideo module now compiled as built-in for Debian packages, to avoid
1080      PIC and non-PIC code collision (Closes Debian bug #111790).
1081
1082 2001-10-09 Tuesday 11:46  massiot
1083
1084  MacOS X port : replaced -traditional-cpp (deprecated) with -no-cpp-precomp.
1085
1086 2001-10-08 Monday 16:20  massiot
1087
1088  MacOS X port : native QuickTime video output, courtesy of Florian G.
1089  Pflug <fgp@phlo.org>. Use it with -I macosx_qt.
1090
1091 2001-10-08 Monday 09:21  massiot
1092
1093  Fixed bugs in the altivec detection, courtesy of Michel Lanners <mlan@cpu.lu>.
1094
1095 2001-10-03 Wednesday 15:10  sam
1096
1097    * Added User-Agent header in the HTTP input.
1098    * Fixed an input segfault which occured using ES input.
1099
1100 2001-10-03 Wednesday 14:41  massiot
1101
1102  * Enhanced --with-tuning
1103  * Fixed a nasty segfault
1104
1105 2001-10-03 Wednesday 13:14  sam
1106
1107    * Added an endianness check for cross-compilations.
1108    * We now check for sys/times.h.
1109
1110 2001-10-03 Wednesday 12:58  massiot
1111
1112  * Repaired dummy input broken yesterday.
1113
1114 2001-10-03 Wednesday 12:46  massiot
1115
1116  * Minor ShowBits() optimization ;
1117  * Fixed a bug in vlc.spec ;
1118  * New --disable-plugins option ; make all plug-ins built-in.
1119
1120 2001-10-03 Wednesday 10:12  massiot
1121
1122  Info : you can use #ifndef instead of #ifdef... #else :p
1123
1124 2001-10-03 Wednesday 03:32  xav
1125
1126  The vlc now compiles when cross-compiling with Mingw32. It segfaults
1127  while browsing plugins (modules.o, it seems).
1128
1129  Oh, btw, stats won't work under win32, since <sys/times.h> and the
1130  function times don't seem to exist.
1131
1132  Sam, may I speak with you tomorrow about modules.c ?
1133
1134 2001-10-03 Wednesday 02:53  xav
1135
1136  Modified configure.in to allow cross-compiling with Mingw32.
1137  Quick and ugly, i'm gonna find a better way to do it.
1138
1139 2001-10-03 Wednesday 02:20  tcastley
1140
1141  Updated to compile on BeOS.
1142
1143 2001-10-03 Wednesday 02:19  tcastley
1144
1145  Changes to ensure the BeOS compile still works.
1146
1147 2001-10-02 Tuesday 17:09  sam
1148
1149    * Added HTTP virtualhost support in the HTTP input.
1150    * Enabled mouse clicks in the GGI plugin.
1151    * Minor Makefile alteration.
1152
1153 2001-10-02 Tuesday 17:04  massiot
1154
1155  * Fixed a warning in input_es.c ;
1156  * Don't connect on INADDR_ANY, patch courtesy of Mathias Kretschmer
1157    <mathias@research.att.com>.
1158
1159 2001-10-02 Tuesday 16:46  massiot
1160
1161  * Cleaned up sam's mess with input's pf_open and pf_close (not completely) ;
1162  * With -vvv modules now show up their scores ;
1163
1164  This afternoon I have been a little bored, so the feature of the day is :
1165  * HTTP input support.
1166
1167  You can test it with :
1168  ./vlc http://mysite.com:80/mystream.mpg
1169  It doesn't implement any kind of buffering, so make sure you have enough
1170  bandwidth, otherwise you'll just get nothing.
1171
1172  It is compatible with HTTP proxy, just set http_proxy :
1173  export http_proxy="http://proxy.mycompany.com:3128/"
1174
1175  Enjoy !
1176
1177 2001-10-02 Tuesday 13:34  massiot
1178
1179  * Borrowed Mandrakesoft's vlc.spec and libdvdcss.spec ;
1180  * New configure option --with-tuning=[arch], extending --enable-pentiumpro ;
1181  for Pentium, use --with-tuning=pentium, for PowerPC 604 use --with-tuning=604,
1182  and so on.
1183
1184 2001-10-01 Monday 16:44  massiot
1185
1186  Dramatically improve compilation time, with a negligible performance
1187  tradeoff.
1188
1189 2001-10-01 Monday 16:18  massiot
1190
1191  * Removed -march=pentiumpro ; should now work on pentium-class machines ;
1192  * Removed --enable-stats configuration directive. Stats are now activated
1193  at runtime with --stats ;
1194  * New intf_StatMsg() call ;
1195  * Vout picture heap is now 8 pictures instead of 5 (better synchro) ;
1196  * Tremendous enhancements in statistics display ;
1197  * Better capabilities handling.
1198
1199 2001-10-01 Monday 12:48  massiot
1200
1201  Error checks in debug mode : pthread ERRORCHECK_MUTEX and MALLOC_CHECK_=2.
1202
1203 2001-09-30 Sunday 00:33  stef
1204
1205  .better handling of the buffer of the sound driver to try to remove
1206   sratches in spdif.
1207
1208  Thanx to bozo for his help :)
1209
1210 2001-09-28 Friday 15:08  massiot
1211
1212  Fixed bugs in the MacOS X port.
1213
1214 2001-09-28 Friday 14:17  massiot
1215
1216  Faster configure script and as-yet untested Darwin patches.
1217
1218 2001-09-28 Friday 10:39  massiot
1219
1220  Test for Altivec C extensions.
1221
1222 2001-09-28 Friday 09:57  massiot
1223
1224  If memalign isn't available, fall back on valloc.
1225
1226 2001-09-26 Wednesday 12:32  massiot
1227
1228  By default, use the real size of the stream for the video output size.
1229
1230 2001-09-25 Tuesday 11:46  massiot
1231
1232  Altivec IDCT and motion compensation, courtesy of Michel Lespinasse for
1233  mpeg2dec (untested).
1234
1235 2001-09-24 Monday 11:17  massiot
1236
1237  Fixed many alignment issues.
1238
1239 2001-09-14 Friday 15:36  massiot
1240
1241  Miscellaneous updates to configure, especially for cross-compilation.
1242
1243 2001-09-09 Sunday 13:43  sam
1244
1245   Changes to vlc:
1246
1247    * Fixed arch-dependant build dependencies (Closes Debian bug #109722).
1248    * Minor changes to the (non-working) ncurses interface.
1249
1250   Changes to libdvdcss (courtesy of Håkan Hjort <d95hjort@dtek.chalmers.se>):
1251
1252    * If we see 3000 unencrypted blocks assume that the title is unencrypted.
1253    * If we have not seen any encrypted block and then discover that the block
1254      just read is not a valid block of an MPEG2 Program stream, assume that the
1255      title is unencrypted.
1256    * Empty keys (for unscrambled sectors) are now cached as well.
1257    * We try to decrypt the file even if DVD ioctls are not available.
1258
1259 2001-09-06 Thursday 18:21  henri
1260
1261  - Fixed a netlist packet leak in demuxPSI (Mark Gritter <mgritter@kealia.com>).
1262
1263  - Removed the nuts message "unable to allocate memory" when the netlist got
1264  empty.
1265
1266  - Cosmetic changes.
1267
1268 2001-09-06 Thursday 13:24  massiot
1269
1270  Another fix for the altivec detection.
1271
1272 2001-09-06 Thursday 10:39  massiot
1273
1274  Fixed numerous bugs with the Altivec IDCT (still not compiling).
1275
1276 2001-09-06 Thursday 07:31  henri
1277
1278  Added gnome.h check and cleaned the error messages in the configure
1279  script
1280
1281 2001-09-06 Thursday 04:28  henri
1282
1283  A very tiny small useless optimization in the LPCM decoder
1284
1285 2001-09-05 Wednesday 16:07  massiot
1286
1287  * Altivec IDCT and motion compensation, based on Paul Mackerras's mpeg2dec
1288  (untested !) ;
1289  * Local minor optimizations in IDCT ;
1290  * Removed a hopeless kludge in input_clock.c
1291
1292 2001-08-27 Monday 16:13  massiot
1293
1294  IP Multicast support, courtesy of Mathias Kretschmer <mathias@research.att.com>.
1295
1296 2001-08-24 Friday 10:51  sam
1297
1298    * Fixed build dependencies for architectures not supporting libasound2
1299      (Closes Debian bug #109722).
1300
1301 2001-08-23 Thursday 15:39  sam
1302
1303    * Attempt to fix the SDL detection under *BSD.
1304
1305 2001-08-23 Thursday 13:24  massiot
1306
1307  Removed /usr/local/include, because it is unsafe in a cross-compilation
1308  environment. If you have problems with this, tell me and we'll find an
1309  alternate solution.
1310
1311 2001-08-22 Wednesday 21:18  gbazin
1312
1313  - The win32 port is once again using msvcrt.dll instead of msvcrt40.dll
1314  - Fixed a synchro bug (typo) in video_output.c
1315
1316 2001-08-22 Wednesday 18:47  massiot
1317
1318  * Added a documentation to use VLC as a netscape plug-in and do some
1319  (buggy) web streaming.
1320
1321 2001-08-22 Wednesday 17:21  massiot
1322
1323  * Totally rewrote the video decoder (inspired by walken's mpeg2dec), implying :
1324  - performance boost ;
1325  - fixed the "Dual Prime Arithmetic" bug ;
1326  - 3DNow! motion compensation module ;
1327  * BTW, fixed numerous bugs ;
1328  * AC3dec statistics do not show up with --enable-stats, because I doubt
1329  they're understandable by a normal human being, and they pollute the output.
1330
1331 2001-08-22 Wednesday 15:16  sam
1332
1333    * Grmbl. Forgot to update the libdvdcss changelog.
1334
1335 2001-08-22 Wednesday 14:23  sam
1336
1337    * Split ChangeLog into ChangeLog and ChangeLog.libdvdcss.
1338    * Added --xvadaptor flag to select the XVideo adaptor to use.
1339    * Everything is ready for the 0.2.83 release.
1340
1341 2001-08-19 Sunday 23:35  sam
1342
1343    * Added support in ./configure for the cprof profiler.
1344    * Activated -D_FILE_OFFSET_BITS=64 -D__USE_UNIX98 on all platforms, fixes
1345      issues under Solaris and QNX.
1346    * Additional checks for SSE-specific (non-MMXEXT) instructions, as
1347      reported in <20010817114220.A23480@slartibartfast.angrypacket.com>.
1348
1349 2001-08-14 Tuesday 17:53  sam
1350
1351    * Fixed yesterday's pthread detection fix.
1352
1353 2001-08-14 Tuesday 04:52  sam
1354
1355    * GNU/Hurd configuration and compilation fixes.
1356
1357 2001-08-14 Tuesday 00:00  sam
1358
1359    * Fixed a crash in subtitle rendering.
1360    * Activated old crappy subtitle rendering in overlay mode (ugly but
1361      probably better than having no subtitles at all).
1362
1363 2001-08-13 Monday 12:24  sam
1364
1365    * Added missing debian files I forgot to add a long time ago.
1366    * Fixed libglide2/libglide3 inconsistency in debian/control.
1367
1368 2001-08-10 Friday 17:43  sam
1369
1370    * Another mistake in the BSD/OS configuration process.
1371
1372 2001-08-10 Friday 17:14  massiot
1373
1374  Added --with-sdl-config-path option if you sdl-config is not in $PATH.
1375
1376 2001-08-10 Friday 16:38  sam
1377
1378    * Added proper Conflicts: rules in debian/control.
1379    * configure.in fixes for BSD/OS.
1380
1381 2001-08-09 Thursday 23:12  sam
1382
1383    * Added BSD/OS libdvd by Steven M. Schultz <sms@TO.GD-ES.COM> in
1384      extras/BSDI_dvdioctl after he suggested it. License is GPL.
1385    * ./configure now checks for an installed libdvd under BSD/OS and
1386      falls back to ours if not found.
1387    * Fixed harmless typos in yesterday's Solaris libdvd patches.
1388    * Bumped libdvdcss version number up to 0.0.3 ; release will probably
1389      follow once the BSDI changes have been tested.
1390
1391 2001-08-09 Thursday 20:16  jlj
1392
1393  Fixed a memory leak in the ifo parser and input_EndStream
1394
1395 2001-08-09 Thursday 08:20  sam
1396
1397    * Fixed a bug in the gtk interface which caused vlc to go amok after
1398      having met a zero-sized area.
1399    * Found out how to type 'å' in vim :-)
1400    * Added missing bloat to modules_export.h.
1401    * 'snapshot*' rules do not depend on 'clean', and don't use /tmp anymore.
1402    * Added vlc:loop playlist command to go back at the beginning.
1403      Usage: vlc file1.mpeg file2.mpeg ... fileN.mpeg vlc:loop
1404      This change isn't very elegant but there are already bugs in the
1405      playlist handling, I'll try to polish it once the playlist is fixed.
1406
1407 2001-08-08 Wednesday 02:48  sam
1408
1409    * Solaris DVD decryption support by H}kan Hjort <d95hjort@dtek.chalmers.se>.
1410
1411 2001-08-07 Tuesday 10:54  sam
1412
1413    * Updated version number to 0.2.82.
1414    * Updated ChangeLog.
1415    * Fixed a typo in Makefile.dep.
1416
1417 2001-08-07 Tuesday 02:48  sam
1418
1419    * Got Makefile to launch ./configure almost properly. $(MAKECMDGOALS) rules !
1420    * Various debian scripts fixes.
1421    * Added -lmsvcrt40 to the win32 flags for proper execution under Wine.
1422    * Fixed broken soname setting under Solaris (and OS X, sort of).
1423    * Made the illegal instruction report more explicit.
1424    * BSD/OS 4.3beta1 fixes by Steven M. Schultz <sms@TO.GD-ES.COM>.
1425
1426 2001-08-06 Monday 13:46  sam
1427
1428    * libdvdcss* packages are now a bit more policy-compliant.
1429
1430 2001-08-06 Monday 13:27  sam
1431
1432    * Added a dummy libdvdcss so that the DVD plugin can be used without
1433      libdvdcss. It will try to dlopen() libdvdcss at runtime, though,
1434      and will use the dummy functions only if it couldn't find a valid
1435      libdvdcss. This is probably only useful to package maintainers.
1436
1437    * Tidied the snapshot-* Makefile rules.
1438    * Tidied the modules Makefiles.
1439    * Removed useless stuff in the debian/ directory.
1440    * Removed the "make all" kludge in the Makefile.opts rule. I hope this
1441      patch is harmless on all systems.
1442
1443 2001-08-05 Sunday 15:32  gbazin
1444
1445  * Big rewrite of the DirectX audio plugin. The audio output is now (almost)
1446      perfect on Win32.
1447  * Fixed a bug in ac3dec_CreateThread() in ac3_decoder_thread.
1448  * On Win32, open() will now open files in binary mode by default.
1449  * A few minor changes to vout_xvideo.c
1450
1451 2001-08-03 Friday 18:03  gbazin
1452
1453  Oops, forgot to commit this file.
1454
1455 2001-07-31 Tuesday 21:13  gbazin
1456
1457  * Fixed a segfault in PSEnd in input_ps.c
1458  * The video decoder thread is now also reniced to a lower priority on
1459    Win32 (as in the linux version). This slightly increases the responsiveness of vlc.
1460
1461 2001-07-30 Monday 14:13  massiot
1462
1463  * Now use SDL_CFLAGS for searching SDL/SDL.h.
1464
1465 2001-07-30 Monday 13:57  massiot
1466
1467  * Don't miserably die in `make` when ./configure hasn't be run ;
1468  * Fixed a bug when compiling KDE plug-in without Qt plug-in ;
1469  * Now taking into account $KDEDIR ;
1470  * Made SDL configure error messages more explicit ;
1471  * --disable-sdl is now correctly taken into account ;
1472  * Changed the order of evaluation of sdl-config and sdl11-config ;
1473  * Finally fixed SDL*/SDL.h check ;
1474
1475 2001-07-30 Monday 00:53  sam
1476
1477    * VC++/Intel compiler fixes by Jon Lech Johansen <jon-vl@nanocrew.net>.
1478
1479 2001-07-29 Sunday 22:54  sam
1480
1481    * Better gtk-config detection.
1482    * Removed duplicate checks in configure.in.
1483    * Fixed a typo in vlc.spec.
1484
1485 2001-07-28 Saturday 02:17  sam
1486
1487    * Fix in libdvdcss in the key caching code.
1488    * Removed useless variables in configure.in which caused all subsequent
1489      compilation tests to fail.
1490
1491 2001-07-27 Friday 16:23  sam
1492
1493    * Additional fixes to the sdl-config detection.
1494
1495 2001-07-27 Friday 16:14  sam
1496
1497    * Added a make uninstall rule.
1498
1499 2001-07-27 Friday 14:43  sam
1500
1501    * Updated version numbers for imminent release.
1502    * Fixed the --with-dvdcss flag:
1503       o --with-dvdcss - build libdvdcss, link statically (also default behaviour)
1504       o --with-dvdcss=local-static - build libdvdcss, link statically
1505       o --with-dvdcss=local-shared - build libdvdcss, link dynamically
1506       o --with-dvdcss=/foo/bar - don't build libdvdcss, use libdvdcss in /foo/bar
1507    * Fixed an omission in the dvdcss.h header.
1508
1509 2001-07-27 Friday 01:05  sam
1510
1511    * Changed libdvdcss API to force binary incompatibility. Yeah, this is
1512      evil, but if we don't do it now we'll have to do it when more people
1513      are using it.
1514    * Fixed minor libdvdcss stuff such as the soname and compilation flags.
1515    * New --with-dvdcss flag.
1516      Explanation:
1517       o default: build libdvdcss, statically link vlc against it.
1518       o --with-dvdcss=no: build libdvdcss, dynamically link vlc against it.
1519       o --with-dvdcss=yes: don't build libdvdcss, use already installed one.
1520       o --with-dvdcss=/foo: don't build libdvdcss, use libdvdcss from /foo/*.
1521      (this looks a bit strange to me, I'll find better flag settings)
1522
1523 2001-07-26 Thursday 20:00  reno
1524
1525  * Format asm functions for gcc
1526    -> fixed the segfaults with imdct_sse
1527    -> sound is hugly with imdct_sse in debug mode
1528
1529 2001-07-26 Thursday 14:53  massiot
1530
1531  Now using gcc -pipe.
1532
1533 2001-07-26 Thursday 09:08  massiot
1534
1535  Accept SDL 1.1.5 or later.
1536
1537 2001-07-26 Thursday 03:13  sam
1538
1539    * Fixed the MMX YUV plugin issues with gcc 2.96 and 3.0.
1540    * Updated TODO, cosmetic changes.
1541
1542 2001-07-25 Wednesday 19:14  massiot
1543
1544  Now use sdl-config for SDL.
1545
1546 2001-07-25 Wednesday 14:51  bozo
1547
1548  The spdif audio output won't kill itself anymore at the beginning.
1549
1550 2001-07-25 Wednesday 08:41  gbazin
1551
1552   * dvdcss_readv optimisations for Win32. We now send only one read command
1553     to the DVD drive for the whole iovec.
1554   * Fixed _win32_dvdcss_aread to work around the WinASPI32 64kb transfer
1555     size restriction.
1556   * New and theoretically better Win32 pthread implementation which fixes a
1557     problem I was having when changing title on a DVD (netlist related).
1558     vlc_cond_multicast may or may not work.
1559   * Fixed the "quit" event handling in directx/vout_events.c.
1560   * dvd_ifo.c now takes into account error messages from UDFFindFile.
1561   * Temporarily disabled aout_Probe() in aout_SDL (this function
1562     is creating an awful lot of problems - libSDL bug ).
1563
1564 2001-07-25 Wednesday 03:53  sam
1565
1566    * Updated ChangeLog.
1567
1568 2001-07-25 Wednesday 03:12  sam
1569
1570    * ncurses compilation fix by Michael Mondragon <mammon@lokmail.net>.
1571    * fix for large inline functions and gcc 3.0.
1572    * fixed the gnome plugin so that it does not include gtk headers.
1573
1574 2001-07-24 Tuesday 11:16  xav
1575
1576  Removed the changes made ; vlc should compile when following the
1577  instructions in INSTALL-win32.
1578
1579 2001-07-24 Tuesday 09:40  xav
1580
1581  Quick and ugly hack in the makefile to allow vlc_win32 to compile when
1582  getting it directly from the CVS. As a result, the vlc_win32 program
1583  doesn't have an icon any more. Too bad.
1584
1585 2001-07-20 Friday 16:20  massiot
1586
1587  Fixed the "paused movie won't restart" bug.
1588
1589 2001-07-19 Thursday 11:50  massiot
1590
1591  * QNX RTOS plug-in by Jon Lech Johansen.
1592
1593 2001-07-19 Thursday 11:42  massiot
1594
1595  * FreeBSD compilation fix, by Øyvind Kolbu.
1596
1597 2001-07-18 Wednesday 17:05  massiot
1598
1599  * Updated documentation with recent changes ;
1600  * Decoders are niced again, for it is really better.
1601
1602 2001-07-18 Wednesday 15:21  massiot
1603
1604  A BIG kludge for the calculation of mux_rate, so that times displayed in
1605  the scroll bar are now correct for MPEG-2 streams. There is probably a
1606  better way to do it, but I haven't found in months.
1607
1608 2001-07-18 Wednesday 14:21  massiot
1609
1610  * Rewrote the video decoder to take advantage of several processors (SMP mode) ;
1611  * Fixed a bug in the video decoder initialization :-p ;
1612  * Added --smp option and several hooks in src/input/input_ext-intf.c ;
1613  * Grayscale mode now turns off chroma IDCT.
1614
1615 2001-07-17 Tuesday 09:48  massiot
1616
1617  Cleaned up include/. Unnecessary headers are no longer under include/, but
1618  under src/. (eat that)
1619
1620 2001-07-16 Monday 22:00  gbazin
1621
1622  Added intf_DbgMsg and intf_DbgMsgImm symbols to modules_export.h
1623  This fixes the TRACE build.
1624
1625 2001-07-16 Monday 16:40  massiot
1626
1627  ...and the associated Makefile modifications.
1628
1629 2001-07-16 Monday 16:26  massiot
1630
1631  * Exploded the outdated generic decoder ;
1632  * Updated ChangeLog and TODO.
1633
1634 2001-07-16 Monday 15:54  massiot
1635
1636  * Added IDEALX developer documentation into main CVS - PLEASE UPDATE
1637  REGULARLY ;
1638  * Cleaned up doc/ directory.
1639
1640 2001-07-16 Monday 12:10  massiot
1641
1642  Fixed GetChunk for chunks < 4 bytes.
1643
1644 2001-07-12 Thursday 23:06  gbazin
1645
1646  - Fixed 2 Win32 bugs in libdvdcss (in _win32_dvdcss_readv), one of them
1647      should have prevented the Win9x dvd input from working.
1648  - Moved the "if(Win2k)" out of the loop in _win32_dvdcss_readv.
1649
1650  - Put a readv() function in input_iovec.h, the input_es now compiles.
1651  - Modified input_ts to use this function.
1652
1653  - Fixed an initialisation bug in vout_directx.c
1654  - Right clicking on the mouse now displays the navigation menu.
1655
1656  PS: If someone is willing to test the DVD input on Win95/98/Me I will
1657      upload an up to date binary package.
1658
1659 2001-07-12 Thursday 20:31  reno
1660
1661  * Fix audio/video synchro bug with esd
1662  * Should fix buggy sound due to 44100-48000 Hz conversions
1663
1664 2001-07-11 Wednesday 02:01  sam
1665
1666    * libdvdcss enhancements by Billy Biggs <vektor@dumbterm.net>. This breaks
1667      vlc's DVD input (looks like decoders are expecting data too early and
1668      DVD input can't cope with it due to decryption). Needs to be investigated.
1669    * Plugins are now compiled in plugins/* and libraries in lib/*.
1670    * The KDE UI compiles again but does not work yet.
1671    * ALSA plugin message corrections.
1672    * Calculation modules can now be calledwith a shorter name
1673      (eg. '--downmix mmx' instead of '--downmix downmixmmx').
1674    * Fixed insane verbosity of the SDL plugin.
1675
1676 2001-07-10 Tuesday 06:07  gbazin
1677
1678  - Fixed the segfault in vout_UnloadFont
1679  - DestroyThread in video_output doesn't call pf_destroy if pf_create has
1680      failed previously.
1681  - The Xvideo plugin now closes the video window when it XVideoGetPort
1682      fails in vout_Create.
1683
1684 2001-07-08 Sunday 23:15  reno
1685
1686  * Alignement in asm functions
1687  * 16 bytes alignement for data (need fo SSE)
1688  * Optimization in SSE
1689
1690 2001-07-08 Sunday 17:45  gbazin
1691
1692  Win32 changes only:
1693
1694   - defined off_t as a long long. This allows DVD navigation to work.
1695     This change is to be implemented on a compiler by compiler basis. For
1696     now, it works on mingw32 (tested) and should work on MSVC (not tested).
1697
1698   - Implemented a quick and dirty hack in intf_msg.c to be able to display
1699     long long integers with printf on Win32. This change is also necessary
1700     to avoid segfaults when debug is enabled in vlc on Win32.
1701
1702   - few minor changes in the directx plugins.
1703
1704   - defined snprintf in common.h and removed a few #ifdef WIN32
1705
1706 2001-07-07 Saturday 17:45  sam
1707
1708    * Probably fixed the "X eats more and more CPU" bug. Please test.
1709    * mingw32 cross-compilation issue fixed.
1710
1711 2001-07-06 Friday 08:43  sam
1712
1713    * Small optimization in vpar_blocks.c, sparing a few memset() calls.
1714    * Additional error checking in vout_sdl.c.
1715    * Minor manpage fix, conforming to Debian policy version 3.5.5.0
1716      (Closes Debian bug #99561).
1717
1718 2001-07-01 Sunday 08:49  gbazin
1719
1720  - Portablility fix: We now control the name to be used in the assembler
1721      code for a C function or variable.
1722      GCC for Win32 normally prepends an underscore to the name of a
1723      C function or variable, and the inline assembler code was using the
1724      name without the underscore so we had undefined symbols in some
1725      modules.
1726  - Reenabled all the accelerated modules on Win32.
1727
1728 2001-06-28 Thursday 22:12  gbazin
1729
1730  - a few bug fixes for the directx plugin.
1731  - removed the custom usleep function for win32 as we don't really need
1732      this accuracy, and it was eating cpu resources.
1733
1734 2001-06-27 Wednesday 09:53  massiot
1735
1736  Elementary Stream input plugin (use it with --input es). Only works with
1737  video streams at the moment.
1738
1739 2001-06-27 Wednesday 06:29  gbazin
1740
1741  - Added command line option '--stdout <filename>' which redirects stdout
1742      and stderr to the specified file. This option should mainly be useful
1743      on Win32.
1744  - On Win32, vlc now has an icon associated to the .exe file, and is a full
1745      GUI application (you don't have this annoying dos command box anymore)
1746  - Added INSTALL-win32.txt for specific details to the Win32 port.
1747
1748  I've tested these changes on Win32 and Linux, let's hope I didn't break
1749    vlc for other platforms.
1750
1751  --
1752  Gildas
1753
1754 2001-06-25 Monday 11:34  sam
1755
1756    * Compile fix for newer versions of MacOS X by Colin Simmonds
1757      <colin_simmonds@Mac.lover.org>.
1758    * Additional MacOS X DVD ioctl work by Eugenio Jarosiewicz
1759      <ej0@cise.ufl.edu>.
1760
1761 2001-06-21 Thursday 07:22  sam
1762
1763    * Win32 network support by Boris Dorès <babal@via.ecp.fr>.
1764
1765 2001-06-19 Tuesday 05:51  sam
1766
1767    * FreeBSD (and probably QNX) shared memory handling fix.
1768
1769 2001-06-18 Monday 23:42  sam
1770
1771    * First libdvdcss version
1772
1773 2001-06-15 Friday 05:12  sam
1774
1775    * Unrolled two loops in dvd_netlist.c to prevent flooding.
1776    * DVD input stuttering fix by Jon Lech Johansen.
1777
1778 2001-06-14 Thursday 20:21  sam
1779
1780    * Added gprof profiling support with --enable-profiling.
1781
1782      It works at last! configure with --enable-profiling, build, run
1783   vlc (you may want to add --noaudio, it currently segfaults with sound
1784   here) and launch "gprof vlc" when finished.
1785
1786      To make gprof work with multithreaded programs, one needs to set the
1787   internal ITIMER_PROF timer for each new thread launched. I did this
1788   through a wrapper in vlc_thread_create (see include/threads.h).
1789
1790 2001-06-14 Thursday 02:47  sam
1791
1792    * Fully working Windows DVD ioctl support by Jon Lech Johansen.
1793    * Usual weekly ChangeLog mass-update.
1794
1795 2001-06-14 Thursday 01:49  sam
1796
1797    * DirectX enhancements by Gildas Bazin, such as software rendering.
1798    * Merged dvdcss_init and dvdcss_open into dvdcss_open, and dvdcss_close
1799      and dvdcss_end into dvdcss_close. libdvdcss API now has 7 functions.
1800    * Another failed attempt at profiling vlc under Linux: ported the
1801      threads API to GNU Pth. Activate with --enable-pth. It doesn't seem to
1802      spawn new threads for me, maybe someone will have better luck.
1803    * Makefile optimizations.
1804    * Automatic build of libdvdcss if not found.
1805
1806 2001-06-13 Wednesday 00:03  stef
1807
1808  *the dvd netlist no longer stops when the fifo is empty ; it just waits
1809  that there are free vectors again
1810
1811 2001-06-12 Tuesday 22:14  sam
1812
1813    * Exported the CSS part of the dvd plugin into a library.
1814
1815 2001-06-12 Tuesday 18:16  stef
1816
1817  *slight modification in input_dvd since Getiovec wasn't at the right
1818  place
1819
1820  *send escape packet when changing title, not to be stuck in some
1821  decoder.
1822
1823  *the position in the title is now resetted when we change title to
1824  prevent a title from being unavailable because we're stuck at the end
1825
1826  *fixed a bug with 1-chapter-long title that displayed chapter 0.
1827
1828  *added a _temporary_ field in p_main to know whether the audio stream is
1829  ac3 (ugly). It allows a vlc launched in spdif mode to play mpeg or lpcm
1830  audio.
1831
1832  *cleaned the title property messages to get rid of the ugly stars.
1833
1834 2001-06-12 Tuesday 13:50  henri
1835
1836  Added LPCM support. It should work with stereo LPCM.
1837  Untested with 5-ways LPCM streams.
1838
1839 2001-06-12 Tuesday 11:02  reno
1840
1841  * Fix the warning in compilation of main.c
1842
1843 2001-06-12 Tuesday 00:30  reno
1844
1845  * Check that OS support SSE optimization for PIII (to avoid illegal hardware instruction on Linux 2.2.x)
1846
1847 2001-06-09 Saturday 17:01  stef
1848
1849  *Fixed a bug in synchro reinitialisation: we no longer have a shift each
1850  time we restart the synchro (for scr discontinuity for instance)
1851
1852  *In DVD mode, we reinit the synchro only if the scr are not continuous
1853  (instead of each cell)
1854
1855  *Try to improve ac3 spdif to prevent from desynchronization.
1856
1857 2001-06-08 Friday 20:03  sam
1858
1859    * Lots of DirectX plugin fixes by Gildas Bazin.
1860    * Compilation fix in message queue mode.
1861
1862 2001-06-07 Thursday 15:27  sam
1863
1864    * Applied old FreeBSD patch for dvd input by German Tischler.
1865    * Found what was causing the slowdowns: a namespace collision. Put all
1866      plugins into builtins again.
1867
1868 2001-06-07 Thursday 01:10  sam
1869
1870    * Put most builtins in plugins again due to performances issues (more
1871      about this in a forthcoming post here).
1872    * Fixed the painfully slow build process (at last!).
1873    * Moved the null plugin together with the dummy one.
1874    * Added new dummy input plugin.
1875
1876     More on the dummy input plugin: we'll use it to insert commands in
1877    the playlist. Currently implemented are the "quit" and "pause" functions,
1878    here are examples on how they are used:
1879
1880      vlc file.mpeg vlc:quit                # exit after file.mpeg has been read.
1881
1882      vlc file1.mpeg vlc:pause:3 file2.mpeg # pause 3 seconds before playing
1883                                            # the next file.
1884
1885     From now we can more efficiently benchmark vlc. For instance, to test
1886    the video output changes I am doing, I use such a command:
1887
1888      time vlc -I dummy --noaudio file.mpeg vlc:quit
1889
1890     Future extentions might include more interesting stuff like "switch
1891    to full screen", "repeat next file 3 times", "switch to SDL video
1892    output"...
1893
1894 2001-06-05 Tuesday 04:08  sam
1895
1896    * Updated things and stuff for 0.2.80 release.
1897
1898 2001-06-03 Sunday 12:47  sam
1899
1900    * Various little fixes
1901     - BeOS interface compilation fix by Rene Gollent.
1902     - DirectX plugin compilation fix by Gildas Bazin.
1903     - removed %ebx spill in the iMDCT plugins.
1904
1905 2001-06-02 Saturday 01:10  sam
1906
1907    * Moved modules_builtins.h.in into src/misc. Please remove
1908      include/modules_builtins.h in your local tree.
1909
1910 2001-06-02 Saturday 01:09  sam
1911
1912    * DirectX plugin by Gildas Bazin <gbazin@netcourrier.com>.
1913
1914      Notes: o I called it 'directx' instead of 'windx' because it
1915               made a lot more sense to me.
1916             o Completely untested. I didn't manage to compile it yet.
1917             o Code in vout_directx.c will go through a big rewrite when
1918               vout 4 is finished. Xav is already working on this.
1919
1920 2001-05-31 Thursday 16:10  stef
1921
1922  *fixed a double malloc/free bug in DVDRead
1923
1924  *fixed a lock issue in the interface introduced in my last commit
1925
1926 2001-05-31 Thursday 12:45  sam
1927
1928    * Win32 plugin support by Gildas Bazin <gbazin@netcourrier.com>.
1929
1930 2001-05-31 Thursday 03:57  sam
1931
1932    * BeOS fixes. renamed iovec.h to input_iovec.h because of namespace issues.
1933
1934 2001-05-31 Thursday 03:23  sam
1935
1936    * miscellaneous Win32 fixes by Gildas Bazin <gbazin@netcourrier.com>, sorry
1937      for the 2 weeks delay.
1938
1939 2001-05-31 Thursday 03:12  sam
1940
1941    * Win2000 DVD input by Jon Lech Johansen <jon-vl@nanocrew.net>.
1942
1943 2001-05-31 Thursday 01:37  sam
1944
1945    * Applied patch from Jon Lech Johansen <jon-vl@nanocrew.net> to compile
1946      vlc with MS and Intel C/C++ compilers.
1947
1948 2001-05-30 Wednesday 23:02  stef
1949
1950  -Updated the gtk/gnome interface to work in network mode,
1951
1952  -Fixed some bugs in interface (language menus in ts, misnamed fields)
1953
1954  -Play/Stop work in network mode to start/stop decoding of the stream
1955
1956  I have a segfault in imdct_3dn(93). But I can't underdand assembly.
1957
1958 2001-05-30 Wednesday 22:16  sam
1959
1960    * Fixed a bug introduced in my previous commit which broke DVD input.
1961
1962 2001-05-30 Wednesday 17:04  sam
1963
1964    * Hrmpf. Forgot the most important file.
1965
1966 2001-05-30 Wednesday 17:03  sam
1967
1968    * Fixed the BeOS compile typo.
1969    * The ALSA plugin is back.
1970    * A gift for Gildas: plugins don't rely on backlinking any more. The
1971      drawback is the dirty magic in include/modules_export.h which has to
1972      be included whenever a module needs one of the functions in it. But
1973       a) we should less and less rely on those functions
1974       b) no plugin code modification was needed
1975
1976     The BeOS and MacOS X modules may be broken when compiled as plugins,
1977     I'll check this later when I can reboot under BeOS.
1978
1979 2001-05-30 Wednesday 05:19  stef
1980
1981  -Changes and bugfixes to make network work in VLAN Broadcast mode.
1982
1983  -Bugfix in the interface to access the network specific features.
1984
1985  -Some base of synchro in ac3 spdif
1986
1987 2001-05-28 Monday 04:23  sam
1988
1989    * Added a wrapper for readv() on platforms which don't support it. The
1990      network support now compiles under Win32, but still doesn't work, the
1991      select in plugins/mpeg/input_ts.c never returns any data.
1992
1993      Is there anything like strace(1) under Win32 to debug this ?
1994
1995 2001-05-28 Monday 03:17  xav
1996
1997  Modified in order to add network input under Win32.
1998  It compiles under Linux and Win32 (yeeaaahaaa, haven't broken anything
1999  :-))
2000  (added the WinSock library initialization and cleanup)
2001  Could someone test if it does really function ?
2002
2003 2001-05-28 Monday 02:54  sam
2004
2005    * Of course my Win32 patch broke the Un*x version.
2006
2007 2001-05-28 Monday 02:44  sam
2008
2009    * Forgot a little #ifdef, sorry.
2010
2011 2001-05-28 Monday 02:38  sam
2012
2013    * Win32 compilation fixes, esp. the MAC retrieval.
2014
2015 2001-05-25 Friday 13:20  sam
2016
2017    * Fixed a warning for *BSD compilation.
2018    * Fixed a typo in yesterday's Darwin ioctl fixes.
2019    * Patch by Eugenio so that the OS X interface and video output handle the
2020      aout and vout banks.
2021
2022 2001-05-25 Friday 04:23  sam
2023
2024    OS X fixes:
2025
2026    * Applied Eugenio's fix to the DVDioctl driver. I didn't test it, but
2027      it should not hang the kernel anymore.
2028
2029    * Ported most dvd_ioctl.c functions to the DVDioctl driver: ReportAgid,
2030      ReportChallenge, ReportKey1, ReportASF, InvalidateAgid, SendChallenge,
2031      SendKey2. They should comply with the "Mt. Fuji Commands for Multimedia
2032      Devices" paper.
2033
2034      Last remaining problem: ReadCopyright and ReadKey. The version of
2035   Darwin I have here only has reportKey() and sendKey() functions in
2036   the IODVDBlockStorageDevice class (pages 413 and 449 of the Mt. Fuji
2037   paper), but we also need the READ_STRUCTURE (page 357) which I couldn't
2038   find anywhere in the kernel headers. Either I missed it, or we'll have
2039   to wait for Apple to implement it (or maybe we can emulate this command
2040   with some other IOKit commands).
2041
2042 2001-05-23 Wednesday 23:40  stef
2043
2044  -A little bug with lpcm in Makefile
2045
2046 2001-05-23 Wednesday 23:08  stef
2047
2048  -Unification of gnome/gtk intefaces: now all the file are in plugin/gtk.
2049
2050  Specific files are glade generated files and intf_* files. All the
2051  remainders are common to gtk and gnome and contain all the callbacks for
2052  both interfaces.
2053
2054 2001-05-23 Wednesday 17:47  stef
2055
2056  -LPCM audio selection in ps mode, in prevision of henri's decoder.
2057
2058 2001-05-19 Saturday 00:39  stef
2059
2060  *More cleanification in gtk interface: now to change the
2061  title/chapter/audio/spu/angle, we tell the input to do intead of doing
2062  it inside the interface. It results in fewer locks during the changes.
2063
2064  *The dvd plugin reads again blocks of 32 sectors to gain speed since
2065  there are no more lock-ups during stream change. I've also created a new
2066  file that contain function to described video and audio streams with ifo
2067  datas.
2068
2069  The changes are made only for gtk. We should update the other interfaces
2070  soon (beos at least).
2071
2072  There is a memory corruption somewhere that make the vlc crash. I've no
2073  idea where to search.
2074
2075 2001-05-18 Friday 09:49  xav
2076
2077  [no log message]
2078
2079 2001-05-16 Wednesday 14:51  reno
2080
2081  * Add 3D Now! imdct
2082  * Remove kmudge for ac3 on MacOS X
2083
2084 2001-05-16 Wednesday 02:12  sam
2085
2086    * We now do pthread detection for FreeBSD like the XMMS guys do. It
2087      works even better.
2088
2089 2001-05-15 Tuesday 19:36  sam
2090
2091    * FreeBSD pthread fixes.
2092
2093 2001-05-15 Tuesday 16:19  sam
2094
2095    * AC3 IMDCT and downmix functions are now in plugins, --imdct and
2096      --downmix options added.
2097
2098 2001-05-15 Tuesday 14:49  stef
2099
2100  *Bugfixes, cleanings in gtk.
2101
2102 2001-05-15 Tuesday 01:01  stef
2103
2104  *initialization bugfixes in input_dvd
2105
2106  *added a b_stopped flag to interface playlist to have a stop function in
2107  interface plugins. As a consequence, the playlist no longer loops on end
2108  but wait for the user to press 'play' or to add another item (gtk/gnome
2109  interface). I think that other plugins are broken but it shouldn't be
2110  difficult to repair: just add a 'p_main->p_playlist->b_stopped = 0' in
2111  play functions and 'p_main->p_playlist->b_stopped = 1' when you have to
2112  stop.
2113
2114  *Updated gtk interface so that it has the same features as gnome. I
2115  think I will merge the code so that we don't have to copy and paste each
2116  change. Only the .glade file would be different.
2117
2118 2001-05-14 Monday 15:58  reno
2119
2120   * Begin of SSE/3DNow! support for imdct and downmix
2121
2122  If you have a PIII or a Athlon and you want to try this, just comment #if 0
2123  in ac3_downmix.c and ac3_imdct.c and add in AC3_DECODER section of Makefile :
2124         src/ac3_decoder/ac3_imdct_sse.o \
2125         src/ac3_decoder/ac3_srfft_sse.o \
2126         src/ac3_decoder/ac3_downmix_sse.o \
2127         src/ac3_decoder/ac3_downmix_3dn.o \
2128
2129 2001-05-12 Saturday 00:14  henri
2130
2131  Put a little note in the doc about "dvd devices"
2132
2133 2001-05-11 Friday 15:10  sam
2134
2135    * Fixed a deadlock in spudec.
2136
2137 2001-05-10 Thursday 06:47  sam
2138
2139    * Added SPU cropping.
2140    * Gnome interface segfault fix.
2141    * BeOS interface segfault fix by AnEvilYak (what's you real name btw?).
2142
2143    Note: if you want to have a look at the currently buggy YUV subpictures,
2144          uncomment line 1999 of src/video_output/video_output.c. Don't report
2145          bugs about this, I _know_ it's a quick hack.
2146
2147 2001-05-08 Tuesday 20:38  sam
2148
2149    * Fixed an aspect ratio issue in the SPU decoder, and optimized the
2150      SPU renderer.
2151
2152 2001-05-08 Tuesday 14:53  bozo
2153
2154  end of the last commit :-P
2155
2156 2001-05-08 Tuesday 14:38  bozo
2157
2158    - fix a discontinuity bug in input_ClockManageRef()
2159
2160 2001-05-08 Tuesday 00:43  sam
2161
2162    * Speed optimization in the handling of the unusual ephemer DVD subtitles.
2163    * Little optimization to bozo's UnalignedShowBits fix.
2164    * Race fix in the packet cache by Jon Lech Johansen <jon-vl@nanocrew.net>.
2165
2166 2001-05-07 Monday 13:52  bozo
2167
2168    - fix a bug in UnalignedShowBits that makes some _heavy_ unaligned streams
2169      not wotk correctly (for instance VLS' generated TS streams)
2170
2171 2001-05-07 Monday 04:42  sam
2172
2173    * Added support for some terribly braindead DVD subtitles in Kenshin
2174      which do not have a "stop display" command. Anime fans rejoice!
2175    * Fixed the BeOS interface to use p_aout_bank instead of p_main->p_aout.
2176    * Coding-style butchery (mostly tabs).
2177
2178 2001-05-07 Monday 03:14  stef
2179
2180  *Changed the level arg in intf_WarnMsg so that it is more logical: the
2181  level corresponds now to the nb of -v to display the message.
2182
2183  *added functionnal preference window in gnome: it changes the
2184  envirronment variables
2185
2186  *added jump window in gnome to jump to a precise time.
2187
2188 2001-05-06 Sunday 18:32  stef
2189
2190  *Much work on the gnome interface: added oct's playlist from gtk plugin,
2191  tuned appearence, added preferences window (with no features yet), jump
2192  window to go to specified time (not functionnal yet), and fixed some
2193  bugs.
2194
2195  *moved b_fullscreen from p_vout->p_sys to p_vout and unified way of
2196  toggling fullscreen in sdl in x11/xvideo output (using p_vout->i_ch
2197  nges) so that an interface plugin can toogle fullscreen (implemented
2198  in gnome)
2199
2200  *added p_input->stream.p_selected_area->i_tell in input TS so that the
2201  slider work with ts files ( however, the time counter doesn't since we
2202  have no mux_rate )
2203
2204  *improved ac3 spdif output ( and made it work again :)). It uses a true
2205  blank frame now, and it allows to switch languages like a traditionnal
2206  output. It doesn't support multiplexing though, neither can we switch
2207  between spdif/analogical mode on-the-fly.
2208
2209  *beginning of the back port of gnome to gtk for those who do not have
2210  gnome.
2211
2212 2001-05-06 Sunday 04:32  sam
2213
2214    * Fixed a few warnings with gcc 3.0.
2215    * aout and vout are now allocated in banks, making it possible to have
2216      several of them at the same time.
2217    * configure now checks for MMX and MMX EXT support in the assembler.
2218    * Removed all MMX code from the main program and moved it to the
2219      existing idct modules (Closes: Debian bug #96036).
2220
2221      Don't forget to make distclean before building vlc again.
2222
2223 2001-05-02 Wednesday 20:01  sam
2224
2225    * FreeBSD CSS decryption support.
2226
2227 2001-05-02 Wednesday 13:30  henri
2228
2229  * Corrected vlc-howto thanks to Arnaud Gomes-do-Vale
2230  * Fixed a segfault in TS input. Some stream still do not work, or
2231    work very slowly with many error messages. I'll try to have a look.
2232
2233 2001-05-01 Tuesday 15:12  sam
2234
2235    * Fixed a remaining buffer overflow in the Gnome interface and applied
2236      the patches to the Gtk+ interface.
2237
2238 2001-05-01 Tuesday 12:22  sam
2239
2240    * Fixed a segfault in the SPU decoder initialization.
2241
2242 2001-05-01 Tuesday 04:18  sam
2243
2244    * Mandatory step for video output IV and the audio output quality
2245      fix: the output threads are now spawned when a decoder needs one,
2246      so it can decide the audio frequency or the video window size. Still
2247      under heavy construction, so don't get too excited at finding bugs
2248      in it yet.
2249
2250      Note: this change broke the XVideo module, so I made its score much
2251      lower than before. I suspect xvideo.so had a bug before which only
2252      appears now. Other video output plugins may be broken as well, but
2253      again this might be due to old existing bugs showing their ugly head.
2254
2255    * Fixed a few buffer overflows in the Gnome interface.
2256    * The module bank is now a global variable. The video output bank and
2257      the audio output bank might follow (when they exist).
2258    * Coding style and organization fixes to the spdif decoder.
2259    * autoconf and Makefile changes by Arnaud Gomes-do-Vale
2260      <arnaud@carrosse.frmug.org>.
2261
2262 2001-04-30 Monday 21:04  reno
2263
2264  * Follow of the new ac3_decoder ;)
2265    - New ac3_imdct
2266    - New ac3_downmix
2267
2268 2001-04-30 Monday 15:00  massiot
2269
2270  Removed unused files.
2271
2272 2001-04-30 Monday 09:44  massiot
2273
2274  Fixed a mistake with -g and --enable-debug.
2275
2276 2001-04-29 Sunday 17:57  stef
2277
2278  -Fixed the title-change-with-no-input-restart in dvd.
2279
2280  -I haven't forgotten the chagelog this time :)
2281
2282 2001-04-29 Sunday 17:03  sam
2283
2284    * BeOS crash fix by Wade Majors <guru@startrek.com>.
2285
2286      Please, try no to forget the ChangeLog when commiting!
2287
2288 2001-04-29 Sunday 14:52  stef
2289
2290  -slight modification in ClockManageRef: after a synchro reinit, we still
2291  do the mwait and re-init last-cr so that there no date irregularity.
2292  Such a thing is necessary for dvd playback at cell change ; however,
2293  Meuuh, could you look at that since you might think we should do
2294  otherwise.
2295
2296  -turned the "bitsream callback discontinuity" message to debug.
2297
2298  -removed modification of the title environnement variable in input dvd
2299  at title change since we no longer restart the input at title change.
2300
2301 2001-04-29 Sunday 02:55  stef
2302
2303  Forgot one file.
2304
2305 2001-04-29 Sunday 02:48  stef
2306
2307  -new audio output using direct ac3 pass-through with some sound
2308  cards: it sends raw ac3 frames to an external ac3 decoder. It is very
2309  experimental yet, hasn't any synchro ... but it works well with my
2310  sblive and my dtt3500 speakers (note that you need a patched emu10k1
2311  driver for this to work).
2312
2313  -bug fix in gnome intf thanks to Shane Harper.
2314
2315  -bug fix in input_dvd for chapter change.
2316
2317 2001-04-28 Saturday 23:19  henri
2318
2319  - Fixed a bug in TS input. It should be more smooth now
2320  - Fixed the pace control. Meuuh, could you check ?
2321
2322 2001-04-28 Saturday 05:12  sam
2323
2324    * Updated debian control files and disabled ALSA for this version.
2325
2326 2001-04-28 Saturday 05:08  henri
2327
2328  Updated files for 0.2.73 release
2329
2330 2001-04-28 Saturday 04:47  sam
2331
2332    * Fixed a nonsense in configure.in preventing to build sdl.so.
2333    * Removed a few stupid debug instructions in aout_s16.c that should
2334      have never been commited. Sorry about that.
2335
2336 2001-04-28 Saturday 04:09  sam
2337
2338    * Don't use the #@%&$! autoconf-suggested CFLAGS.
2339
2340 2001-04-28 Saturday 03:36  sam
2341
2342    * Coding style fixes here and there.
2343    * Miscellaneous QNX compile fixes.
2344    * Beginning of the mingw32 port by Gildas Bazin <gbazin@netcourrier.com>.
2345    * Added Marcari and Gildas to the AUTHORS file.
2346
2347    (I commited the mingw32 port because it doesn't add any new code outside
2348     the #ifdefs, but we won't tell a word about it for the moment. We don't
2349     really need windows users whining about bugs, do we ?)
2350
2351 2001-04-28 Saturday 00:28  henri
2352
2353  Added a howto. Feel free to correct it. I'll put it on the website soon.
2354
2355 2001-04-27 Friday 19:29  massiot
2356
2357  Change --enable-debug into --enable-trace. Same with DEBUG_*.
2358  --enable-debug still exists, but only activates -g and additional
2359  safety checks.
2360
2361  I hope I didn't break anything :))
2362
2363 2001-04-27 Friday 18:07  henri
2364
2365  Repaired broadcast support : binding INADDR_ANY doesn't seem to work.
2366
2367  You now have to specify the broadcast address as an argument.
2368  Btw, thanks to sam, you can now use ts://server:port style, which gives
2369  for broadcast :
2370
2371  vlc --broadcast broadcast_addr ts://server[:port]
2372
2373 2001-04-27 Friday 16:08  sam
2374
2375    * Fixed the continuous 'seeking position' bug in network mode.
2376    * rc interface plugin for vlc control through /dev/stdin courtesy
2377      of Peter Surda <shurdeek@panorama.sth.ac.at>.
2378    * Support for `ts://foo:42' style input source:
2379       vlc ts://vls.via.ecp.fr:1234
2380       vlc ts://vls.via.ecp.fr
2381       vlc ts:vls
2382       vlc ts:vls:4321
2383      As a side effect, the Gnome and Gtk "network input" buttons work.
2384
2385 2001-04-26 Thursday 03:55  sam
2386
2387    * Commited Shane's XVideo patches. It works here (tm).
2388    * Fixed the XVideo aspect ratio (AR_SQUARE_PICTURE means square pixels,
2389      not square image).
2390
2391 2001-04-25 Wednesday 20:54  massiot
2392
2393  * Removed my optimization attempt.
2394
2395 2001-04-25 Wednesday 10:22  massiot
2396
2397  * Fixed an alignment issue with the bit stream and the bit stream
2398  callback on startup - InitBitstream prototype has changed ;
2399  * Removed a buffer zeroing in video output - doesn't change anything
2400  for me, does it for you ?
2401
2402 2001-04-25 Wednesday 09:31  sam
2403
2404    * Updated the TODO list.
2405    * Fixed benny's latest C++ism.
2406    * Fonts not found are no longer fatal to the video output.
2407
2408 2001-04-25 Wednesday 06:56  benny
2409
2410  Get rid of the asprintf that were slow and not available on Solaris. Didn't
2411  check if the new code still compiles everywhere, but it should.
2412
2413 2001-04-22 Sunday 00:08  stef
2414
2415  -better handling of angles: you should be able to change on the fly now
2416
2417  -removed à bug added at my last commit in css code; cleaned CSSGetKey
2418
2419  -various changes and bugfixes in the gnome interface.
2420
2421 2001-04-21 Saturday 22:49  sam
2422
2423    * XVideo fullscreen mode by David Kennedy <dkennedy@tinytoad.com>.
2424
2425 2001-04-21 Saturday 00:31  sam
2426
2427    * X11 fullscreen mode, courtesy of David Kennedy <dkennedy@tinytoad.com>
2428
2429 2001-04-20 Friday 15:02  sam
2430
2431    * Added prototypes for the Elementary Stream input module for Alexis.
2432       it's compiled by default, to activate it: "vlc --input es <file.mpeg>"
2433
2434 2001-04-20 Friday 11:06  sam
2435
2436    * Fixed build process when no plugins or no builtins were chosen.
2437    * Makefile changes to get around MacOS X's brain-damaged gcc.
2438    * FreeBSD configure and Makefile patches, courtesy of Espen
2439      Skoglund <esk@ira.uka.de>.
2440
2441 2001-04-20 Friday 05:40  stef
2442
2443  -corrected some bugs in gnome interface: language menu are now
2444  synchronized ; and menus have less chances to be changed when they're opened.
2445
2446  -added basic angle support ; this is a first try. It works with my 2
2447  test-DVDs, but I'd like that people having DVDs with repeated scenes to
2448  test it. We can choose angle with command line option -u (don't ask me
2449  why :)
2450
2451  -a cosmetic change in css decryption.
2452
2453  Since config.h.in has changed, you have to re-run ./configure.
2454
2455 2001-04-17 Tuesday 20:43  marcari
2456
2457  [no log message]
2458
2459 2001-04-17 Tuesday 15:17  colin
2460
2461  fix MacOS X icon
2462
2463 2001-04-17 Tuesday 14:54  massiot
2464
2465  Fixed optional PES size bug, courtesy of Steve Brown <sbrown@cortland.com>.
2466
2467 2001-04-17 Tuesday 14:39  sam
2468
2469     OS X fixes:
2470    * Fixed a compilation issue in the DVDioctl driver.
2471    * Added a call to ranlib after a built-in module compilation.
2472
2473 2001-04-16 Monday 13:32  sam
2474
2475    * Fixed a typo in configure.in
2476
2477 2001-04-16 Monday 13:00  sam
2478
2479    * Merged Makefile.common and Makefile.modules.in into Makefile.modules
2480    * Updated version number and ChangeLog to 0.2.72
2481    * Additional plugin Makefile cleaning, probably the last.
2482
2483 2001-04-16 Monday 12:34  asmax
2484
2485  Re-added the new packet allocation method in PS input, using packet caches.
2486  With warning level 1, you can see when a packet is allocated or freed; the
2487  goal is to never call 'malloc' nor 'free', except at the beginning of the
2488  stream.
2489  The size of the different caches can be adjusted in plugins/mpeg/input_ps.h.
2490  If 'free' is called too often, it means that a cache is too small, so try
2491  to increase its size.
2492
2493 2001-04-16 Monday 07:40  sam
2494
2495    * Added .cvsignore files in the plugins directories.
2496    * Additional Makefile cleaning for built-in modules.
2497    * Fixed Makefile for Solaris target.
2498
2499 2001-04-15 Sunday 15:11  sam
2500
2501    * All Debian packages are now lintian-clean.
2502    * Fixed XVideo plugin linking.
2503
2504 2001-04-15 Sunday 10:54  sam
2505
2506    * Updated TODO list with Henri's Apr 6th post.
2507    * Built-in modules support almost finished.
2508
2509      Now you can compile any module within vlc, even the Gnome, Qt, SDL
2510    and GGI modules at the same time, resulting in an awful extra fat
2511    vlc binary with gazillons of library dependecies.
2512
2513      The only exception is that the Gnome and Gtk+ modules can't be
2514    compiled together into vlc. But you can have one compiled built-in
2515    and the other as a plugin.
2516
2517      Another consequence is that libdl should no longer be needed under
2518    MacOS X. I'll check this as soon as possible.
2519
2520 2001-04-15 Sunday 04:46  sam
2521
2522    * A few Makefile fixes for BeOS
2523    * XVideo patches by Shane Harper
2524
2525 2001-04-15 Sunday 04:19  sam
2526
2527    * Beginning of the built-in modules support.
2528
2529     A few words about the changes:
2530
2531    - heavy Makefile butchery has taken place, each plugin now has its own
2532      Makefile. I know recursive make blablah harmful, but it was just so
2533      much easier to do this way.
2534
2535    - Makefile.in has disappeared, we now generate Makefile.opts with
2536      the overall configuration options, and Makefile.modules which is
2537      specific to module compilation.
2538
2539    - After ./configure has been run you may want to modify Makefile.opts
2540      to check which modules will be compiled built-in or as plugins.
2541
2542    - Some modules cannot be compiled built-in right now because proper
2543      linkage doesn't work yet. We don't really care since they're the
2544      interface or video output modules. The most important stuff works
2545      (iDCT, motion, YUV, input).
2546
2547    - It's perfectly valid to compile a module both as built-in and as a
2548      plugin. vlc will only load the built-in one, but I'll add an option
2549      to ignore built-in modules for testing purposes.
2550
2551    - We *should* see a performance increase here. I didn't have much time
2552      to test it, but if anyone can confirm and perhaps give a rough
2553      estimate of how much we gain...
2554
2555 2001-04-14 Saturday 07:41  sam
2556
2557    * Got rid of the sleep() hack in beos_specific.cpp
2558    * Fixed a segfault when launched without argument under Darwin.
2559
2560 2001-04-13 Friday 14:33  sam
2561
2562    * Fix for Darwin program path handling. I mistakenly assumed that the
2563      program path was always absolute.
2564
2565 2001-04-13 Friday 06:20  sam
2566
2567    * Updated version number to 0.2.71 (release today).
2568
2569    * Merged 6 months of CVS logs to the ChangeLog file.
2570      The vlc changelog can now be viewed here:
2571         http://www.videolan.org/vlc/changelog.html
2572
2573    * Fixed a lintian error in debian/rules.
2574    * XVideo resize patch by Shane Harper <shanegh@optusnet.com.au>.
2575
2576 2001-04-13 Friday 05:36  stef
2577
2578  *Added udf fix by Billy Biggs
2579
2580  *Added checks in dvd_ifo
2581
2582  *Cleanings in gnome interface : the interface should be dependant on the
2583  input method.
2584
2585 2001-04-13 Friday 01:49  henri
2586
2587  TS input : only one audio & spu ES selected at a time
2588  Intf : ts streams in menu
2589         fixed a typo
2590
2591  There be certainly need for debug on the TS input as vls complains about
2592  wrong sized PES packets, and that many streams do not seem to work.
2593
2594  btw, I forgot to mention in my last commit the function that nooone will
2595  ever use : "right button" key of 105 keys keybords support under X11,
2596  Xv, Sdl
2597
2598 2001-04-12 Thursday 17:57  colin
2599
2600  MacOS X
2601  make vlc.app now correctly updates vlc.app
2602  added an icon to the MacOS X vlc
2603  removed the build of the vlc app from the install target
2604
2605 2001-04-12 Thursday 08:24  sam
2606
2607    * Fixed a typo in yesterday's BeOS changes.
2608
2609 2001-04-12 Thursday 03:26  stef
2610
2611  -added a field to p_input->stream to inform the interface of a stream
2612  change (useful in network mode)
2613
2614 2001-04-12 Thursday 02:40  stef
2615
2616  -Fixed a bug in area management added in my last commit
2617
2618  -Change the way ifo are read ; I hope this fixes problems with some
2619  compilers
2620
2621  -Added error checks in dvd input
2622
2623 2001-04-12 Thursday 01:52  sam
2624
2625    * BeOS icon and MIME resources courtesy of Wade Majors <guru@startrek.com>.
2626    * Updated icons.
2627    * Removed redefinition of NULL in src/audio_decoder/adec_layer?.c.
2628    * Created darwin_specific.c to store the program path at boot time.
2629      (XXX: check that it didn't break the OS X port)
2630    * Fixed a warning in netutils.c.
2631
2632 2001-04-11 Wednesday 14:10  ej
2633
2634  Forgot a little thing...main.  Done for now I hope;-)
2635
2636 2001-04-11 Wednesday 13:56  ej
2637
2638  Fixed a dumb mistake in Makefile.in
2639
2640 2001-04-11 Wednesday 13:30  ej
2641
2642  Updated & cleaned up intf_macosx.c and vout_macosx.c - added Open menu
2643  function support and a no-frills About box
2644
2645  Created macosx_common.h in plugins/macosx/ to hold , well, common stuff
2646  (the way I see it, there is inherently a difficult separation of intf and
2647  vout on Mac OS, if anyone has suggestions I'm open)
2648
2649  Cleaned up debug spew I left in modules.c and video_text.c
2650
2651  Hacked main.c to disregard argv[1] when compiled for OSX & run as a full
2652  app (ie., double clicked and not launched from command line)... read the
2653  file for more details.  UGLY.
2654
2655  Updated Makefile.in to make vlc.app by default on Mac OS X & Darwin, added
2656  clean code for it as well
2657
2658 2001-04-11 Wednesday 12:52  sam
2659
2660    * Fixed icons location and Debian desktop menus.
2661
2662 2001-04-11 Wednesday 04:31  sam
2663
2664    * Fixed the whitespace/tab issues in the Makefile.
2665    * Corrected an awful typo in the version name, I hope Lieutenant Commander
2666      Arkady Grigorovich Ourumov will never set up us the bomb for that.
2667    * Removed deprecated stuff from config.h.
2668    * Disabled message queue by default.
2669    * A few other changes in the CSS code, the BeOS issues should be fixed.
2670    * Fixed a memory leak in gtk_callbacks.c (thanks to Dae).
2671
2672 2001-04-11 Wednesday 02:01  henri
2673
2674  - Ported the 0.2.0's channel changing functions
2675  - Cosmetic changes : the word 'vlan' is disappearing
2676  - network_ChannelJoin is still commented out as it's not in sync anymore
2677    with our channel server. Nitrox should fix this within a week.
2678  - X and Xv output : added autohide cursor as in SDL
2679  - X and Sv : keys 1 to 0 change channel
2680  - SDL : keys F1 to F10 change channel as I was not able to make 1..0 work
2681
2682 2001-04-10 Tuesday 17:47  stef
2683
2684  -Fixed the lock segfault bug with some compilers
2685
2686  -Quick kludge in ifo to avoid a bug with optims. The real fix is coming.
2687
2688 2001-04-08 Sunday 16:57  sam
2689
2690     * XVideo window now has a black background, thanks to Shane Harper.
2691     * Fixed a heap corruption in dvd_css.c.
2692
2693 2001-04-08 Sunday 09:04  stef
2694
2695  -fixed css authentication under linux since it has been broken for a few
2696  days: we have to initialize agid of authinfo struct.
2697
2698  -fixed a segfault on exit when DVDInit fails
2699
2700 2001-04-08 Sunday 07:24  stef
2701
2702  -changes in gnome interface
2703
2704  -bugfix in input dvd
2705
2706 2001-04-08 Sunday 04:17  sam
2707
2708    * Updated ChangeLog and TODO list.
2709    * Added TODO to the .spec file.
2710    * Fixed Makefile.in so that `make snapshot' takes extras/* in account.
2711
2712 2001-04-07 Saturday 23:23  massiot
2713
2714  Removed --enable-mmx (enabled by default under x86) and changed a few
2715  things.
2716
2717 2001-04-07 Saturday 16:35  massiot
2718
2719  Disable x11 plugin if X11 headers are not found.
2720
2721 2001-04-07 Saturday 16:21  massiot
2722
2723  Added a missing file for MacOS X port.
2724
2725 2001-04-07 Saturday 04:17  sam
2726
2727     * Updated version information in RedHat and Debian package control files.
2728
2729 2001-04-06 Friday 18:18  massiot
2730
2731  * Sync MOSX dev/CVS tree : code support for MacOS X audio, video and
2732  interface (courtesy of Eugenio Jarosiewicz & Colin Delacroix) ;
2733  * Bumped up version number to 0.2.70.
2734
2735 2001-04-06 Friday 09:15  sam
2736
2737    * Code cleanup: removed a few tabulations.
2738    * Fixed inline asm routines to remove all read/write operands.
2739    * Added <string.h> to most files to prevent warnings under FreeBSD.
2740    * Added "break;" after "default:" in case switches to prevent
2741      warnings when compiling with GCC 3.0pre.
2742
2743 2001-04-05 Thursday 16:37  asmax
2744
2745  switched back to the old packet allocation method for PS input, because
2746  Sam does not want the new one ;)
2747
2748 2001-04-05 Thursday 14:00  asmax
2749
2750  Added a new packet allocation method that punish one's mother in PS input.
2751  I hope there won't be too many segfaults because of it ;)
2752  A few parameters must be adjusted to optimize this method; I'll do it later
2753  because Proba Stat sucks ;)
2754
2755 2001-04-05 Thursday 03:50  sam
2756
2757    * added the GNU getopt library, which gets compiled in when getopt_long
2758      isn't available on the desired platform.
2759    * replaced the `--warning' flag with the standard cumulative `-v' flag.
2760      `-v' is like `--warning 3', and `-vvvv' is like `--warning 0'
2761      (`--warning' is still valid for those used to it)
2762    * cleaning in configure.in and Makefile.in, the Solaris port now
2763      builds and runs properly.
2764
2765 2001-04-03 Tuesday 03:39  stef
2766
2767  -Fall back to one-packet-once reading in dvd input since multi-block
2768  seems to have a bug that make the vlc crash on title/audio/spu change. I
2769  hope that this bug will be fixed soon for the performance is poorer now
2770
2771  -add-ons and changes in gnome interface:
2772          *menu subdivision is done only if there are over 20 items,
2773          *in DVD mode next/prev apply to title,
2774          *in DVD mode, added a box with button to navigate through
2775           chapters.
2776  This has not been finished yet (and it is not in gtk plugin then). And I
2777  think I will leave toolbar next/prev buttons for playlist and add
2778  button specifically for title change like for chapters.*
2779
2780 2001-04-02 Monday 23:30  sam
2781
2782   * fixes for the Qt plugin compilation under Debian
2783
2784   * heavy butchering in the CSS and DVD ioctl code to put all architecture-
2785     dependent code in dvd_ioctl.c
2786
2787   * added almost fully-functional /dev/dvd driver for MacOS X in
2788     extras/DVDioctl; to build it:
2789
2790      % cd extras/DVDioctl
2791      % pbxbuild
2792      % kextload build/DVDioctl.kext # note: kextload has to be run as root
2793
2794     be aware that the license for the DVDioctl kernel extension is
2795     not GPL but APSL, because I borrowed some code from the Darwin kernel.
2796
2797 2001-04-01 Sunday 07:31  stef
2798
2799  -Various bug fixes in dvd_netlist. Some bugs seem to remain though.
2800  -New function input_ToggleES for interaction with interface.
2801  -Changes in gnome interface : navigation menus are now splited, there
2802  are radio item in menus and the code should be better.
2803  -First step for dvd_ifo rewritting. Now allocation/disallocation is
2804  being done as it has to be.
2805  -Fixed a bug in title management that make dvd like Seven work.
2806
2807 2001-04-01 Sunday 06:21  sam
2808
2809    * XVideo plugin courtesy of Shane Harper <shanegh@optusnet.com.au>
2810    * Makefile.in and configure.in fixes by Nilmoni Deb <ndeb@ece.cmu.edu>
2811    * A few syntax fixes in the plain X11 plugin
2812
2813 2001-03-26 Monday 19:06  sam
2814
2815    - fixed SDL compilation, thanks to Colin.
2816    - disabled Altivec iDCT until it works.
2817
2818 2001-03-25 Sunday 17:09  richards
2819
2820  Language & Inteface support for BeOS interface
2821
2822 2001-03-21 Wednesday 13:42  sam
2823
2824    * Header cleaning: filled all empty authors fields, added CVS $Id stuff.
2825    * Fixes to aout_darwin.c by Colin Delacroix <colin@zoy.org>.
2826    * Fixes to configure.in, Makefile.in and main.c (Altivec detection)
2827      by Eugenio Jarosiewicz <ej0@cise.ufl.edu>.
2828    * Added Colin and Eugenio to the AUTHORS file.
2829
2830 2001-03-21 Wednesday 02:58  sam
2831
2832    * Fixed a typo in the Altivec iDCT module declaration.
2833    * Made a few enhancements to the Makefile.
2834
2835 2001-03-20 Tuesday 23:18  sam
2836
2837     * Altivec instructions autodetection.
2838
2839 2001-03-20 Tuesday 21:42  sam
2840
2841     * SDL fixes and enhancements by Shane Harper <shanegh@optusnet.com.au>
2842
2843     Shane, I removed the static variables from your code because static
2844     is not thread-safe, and one can imagine having several video output
2845     windows launched at the same time. Also, I made your feature work
2846     in windowed mode as well, because people kept asking how to hide the
2847     mouse pointer.
2848
2849     Also, if you want to work on the XVideo extension, you are welcome ;
2850     most of us are quite busy at the moment. Damien Lucas <nitrox@via.ecp.fr>
2851     had offered to work on it, but he seems to be a bit lost, so you may
2852     want to take over his job.
2853
2854     As for the "zoom" feature, I suggest you wait until version 4 of the
2855     video output is done, it'll be easier to do then.
2856
2857  Regards,
2858
2859 2001-03-20 Tuesday 20:54  massiot
2860
2861  * Compile Altivec modules on Darwin. [MacOS X port]
2862
2863 2001-03-20 Tuesday 20:40  massiot
2864
2865  * Use $QTDIR for the qt module ;
2866
2867 2001-03-20 Tuesday 20:20  massiot
2868
2869  * Fixed Makefile for normal people :p
2870
2871 2001-03-20 Tuesday 20:09  massiot
2872
2873  * Added IDCT Altivec optimization [MacOS X port]. Untested, not compiled.
2874
2875 2001-03-20 Tuesday 19:36  massiot
2876
2877  * Compile Darwin module by default on Darwin system. [MacOS X port]
2878
2879 2001-03-20 Tuesday 17:36  massiot
2880
2881  * Support for Darwin CoreAudio, courtesy of Colin Delacroix [MacOS X port] ;
2882  * Added warnings for ac3 mantissa (we still have problems with AC3 on
2883  MacOS X) ;
2884  * Renamed WriteResource to avoid a namespace clash with Darwin's
2885  WriteResource.
2886
2887 2001-03-20 Tuesday 04:44  sam
2888
2889    * Split audio output into several separate files to make it easier
2890    to debug. Removed a few redundancies as well.
2891
2892 2001-03-19 Monday 13:26  sam
2893
2894    * vlc core compiles under QNX RTOS. Now if anyone feels like tidying
2895    it and writing output and interface plugins...
2896
2897 2001-03-19 Monday 05:08  sam
2898
2899    * Fixed Debian sparc build for real (Closes: Debian bug #89285).
2900
2901 2001-03-18 Sunday 00:01  sam
2902
2903    * Function prototypes for the forthcoming Darwin and MacOS X port.
2904    * Gtk+ interface: fixed a precision issue in the scale.
2905    * Qt interface: somebody pop up us the menu!!
2906
2907 2001-03-17 Saturday 22:52  stef
2908
2909  -Added dsp plugin compilation (/dev/dsp is not a regular file :))
2910
2911 2001-03-16 Friday 22:37  massiot
2912
2913  * Borrowed config.guess and config.sub from SDL [MacOS X port] ;
2914  * Changed files so that the MacOS X port compiles & runs [MacOS X port] ;
2915  * If SDL/GTK/DSP is not available, don't compile the associated module.
2916
2917 2001-03-15 Thursday 01:42  sam
2918
2919    * Bug fixes and enhancements in the Gtk+/Gnome interfaces.
2920
2921     o the slider should behave correctly and stop jumping here and
2922       there (this bug is _not_ related to Stef's similar bug)
2923     o added an "open network" menu (useless since the input doesn't
2924       handle it properly yet)
2925     o tried to reorganize gnome_callbacks.c and gtk_callbacks.c
2926     o stream date is now displayed instead of percentage
2927     o renamed gnome_sys.h to intf_gnome.h, and gtk_sys.h to intf_gtk.h
2928
2929    * Changed documentation and package creation files.
2930
2931     o added versioned conflicts/replaces to vlc-gtk (Closes Debian bug #88796)
2932     o removed useless or outdated documentation from doc/*
2933     o moved vlc.1 manpage from debian/vlc.1 to doc/vlc.1
2934
2935    * Added basic Qt interface.
2936
2937     o working features: slide bar, open file, toolbar, popup menu
2938     o added "qvlc" alias, equivalent to "vlc -I qt"
2939     o known issues : no "open disc" or "open network" menus yet
2940                      the IntfWindow class is never cleaned on destruction
2941                      the popup menu always pop at the middle of the screen
2942
2943    * Misc fixes/updates.
2944
2945     o renamed netutils.h functions from input_* to network_*
2946     o renamed *plst* files and functions to *playlist* (it was stupid
2947       from me to name them "plst")
2948     o made a few input error messages more meaningful
2949     o added -I, -A and -V short flags, corresponding to --intf, --audio
2950       and --video
2951
2952      I got a lot of conflicts on this commit, lart me if I forgot a
2953    file or made old bugs reappear.
2954
2955 2001-03-15 Thursday 00:37  stef
2956
2957  -Fixed most of the bugs in gnome interface menus
2958
2959  -Added radio checks in menu items.
2960
2961  There are still issues with default selected item but it works well.
2962
2963 2001-03-14 Wednesday 00:40  massiot
2964
2965  * Tried to fix the "stream jumps at will" bug.
2966
2967 2001-03-11 Sunday 19:00  henri
2968
2969  - Moved 2 local network functions
2970  - Removed old code
2971  - Broadcast should work. I'm not detecting broadcast address, i'm
2972  binding 0.0.0.0
2973
2974 2001-03-10 Saturday 11:23  henri
2975
2976  Small optim.
2977
2978 2001-03-08 Thursday 13:32  octplane
2979
2980  Hurg !
2981  ###code is dirty###
2982  Please clean it for me :P
2983  (or at least, tell me how to clean it)
2984
2985  . Slightly modified playlist base interface
2986    (Added a function to jump directly to an item, used for double clicking)
2987
2988  . Added manymanycallbacks
2989  . Added the playlist dialog
2990  . Added Dnd support for intf_window and the clist1
2991    . support URI and plain file(s)/folder(s)
2992  . Added "show/hide main window" menuitem in intf_popup
2993  . Added bugs :P
2994
2995  Enjoy and please bug report.
2996
2997 2001-03-07 Wednesday 10:31  stef
2998
2999  -Working menus for run-time audio/spu/title/chapter selection with gtk
3000  interface.
3001
3002  It is a bit buggy yet, and some pieces of code need to change,
3003  especially to handle better menus change when title change but it
3004  eventually works.
3005
3006 2001-03-07 Wednesday 02:16  stef
3007
3008  -Added `glib-config --libs glib` for interface compilation
3009  for debian/sid users
3010
3011 2001-03-07 Wednesday 01:36  sam
3012
3013    * Disabled network input under BeOS so that it compiles again. We'll
3014      have to wait for BONE anyway.
3015
3016 2001-03-07 Wednesday 00:18  henri
3017
3018  - Fixed TS input ( a nasty dead lock had appeared 4 days ago )
3019  - Added base of network support
3020
3021  Things to be done :
3022  - Meuuh : fix the PCR synchronisation so that we can set b_pace_cntrol to 0
3023  - Sam : find a way of specifing the type of media (file, net). For the
3024  moment, the "--input ts" always call input_NetworkOpen
3025  - Maybe sam : for the moment the working syntax is vlc --input ts
3026  servername, it should nbe turned into "vlc --server servername".
3027
3028  Things that don't work (i'll work on this this week end) :
3029  - stopping and retaking a stream
3030  - a nice 'waiting for stream'
3031  - we select all incoming streams. we should be able to select.
3032
3033  Things that haven't been tested :
3034  - broadcast
3035  - only tested with one stream.
3036
3037  Kick me if something is broken by my fault.
3038
3039 2001-03-06 Tuesday 19:33  massiot
3040
3041  * Fixed an alignment problem in UnalignedShowBits().
3042
3043 2001-03-06 Tuesday 17:54  massiot
3044
3045  * Fixed an alignment problem in PTS parsing.
3046
3047 2001-03-06 Tuesday 17:39  massiot
3048
3049  * Fixed an alignment problem on startup.
3050
3051 2001-03-06 Tuesday 15:16  massiot
3052
3053  * Fixed a boolean_t/int mix.
3054  * Increased FIFO_SIZE.
3055
3056 2001-03-05 Monday 20:36  richards
3057
3058  [no log message]
3059
3060 2001-03-05 Monday 16:00  massiot
3061
3062  Fixed MPEG-1 mux_rate parsing.
3063  Fixed MPEG-1 stuffing.
3064
3065 2001-03-05 Monday 11:53  sam
3066
3067    * fixed headers for FreeBSD compilation.
3068    * fixed debian/rules for non-x86 packages (Closes: Debian bug #88583).
3069
3070 2001-03-05 Monday 01:29  sam
3071
3072    * Everything in place for the 0.2.63 release.
3073
3074    * Got rid of the CONTRIBUTORS list, and switched AUTHORS to a
3075      linux-kernel like author list.
3076    * Updated TODO list.
3077    * Fixed a segfault in the BeOS interface when --noaudio was specified.
3078    * Title and Chapter selection in the Gnome and Gtk+ interfaces.
3079
3080 2001-03-04 Sunday 16:20  sam
3081
3082     Commited BeOS changes by Richard Shepherd and Tony Castley.
3083
3084     include/video_output.h
3085      * Added boolean_t b_YCbr to vout_thread_s structure to flag YUV-YCbCr
3086        decoding needed instead of YUV-RGB
3087      * Will be removed later when video_output.c rewritten
3088
3089     src/video_output.c
3090      * vout_CreateThread() initialises b_YCbr to zero
3091
3092     plugins/beos/*
3093      * New BeOS video plugin that supports hardware overlays and new
3094        MediaPlayer compatible interface
3095
3096     plugins/*
3097      * Added YUV-YCbCr transforms
3098
3099 2001-03-03 Saturday 11:01  sam
3100
3101    * Added debian/* files to help generating CSS-enabled non-US packages,
3102      and changed plugins/dvd/* to reflect this change.
3103    * Added .xpm icons (fixes lintian warnings).
3104    * --help output and manpage are now in sync (Closes Debian bug #87478).
3105    * Fixed Build-dpends entry in debian/control (Closes Debian bug #83707).
3106
3107 2001-03-02 Friday 15:51  massiot
3108
3109  * More consistency in the p_input->stream management.
3110
3111 2001-03-02 Friday 13:49  massiot
3112
3113  * Made input_SelectES() and input_UnselectES() not block the input thread
3114  for a long time.
3115
3116 2001-03-02 Friday 13:47  sam
3117
3118    * Changed debian/control to fix Debian bug #83707
3119    * Added a --disable-css configure option
3120    * Moved some code here and there in the DVD plugin to make it easier
3121      for me to build the Debian CSS-free packages.
3122
3123 2001-03-02 Friday 13:20  massiot
3124
3125  * Fixed miscellaneous alignment problems (alpha/sparc ports) ;
3126  * Added a fps display when toggling 'i' ;
3127  * Fixed a bug in the video parser where one picture buffer was not
3128  released at quit time ;
3129  * Broke the mux_rate calculation, but hey guys ! it was already broken and
3130  nobody noticed it.
3131
3132 2001-03-02 Friday 03:32  stef
3133
3134  -New function for DVD reading, that is able to read multiple blocks
3135  (I've chosen 32 now), that doesn't use any memcpy anymore and is also much
3136  faster. It is ready now for cell positioning in multi-angle DVD (to come
3137  soon).
3138
3139  -DVD specific netlist adapted to 2048 bytes long blocks that contain
3140  several data_packets.
3141
3142  -Modification in mpeg_system.c to use p_payload_start instead of
3143  p_buffer (necessary for DVD plugin). It does not break other plugins
3144  since they set p_payload_start to p_buffer
3145
3146  -New field i_read_once in input_thread_s to be able to read more than
3147  the TS related 7 packets ; i_read_once is set to INPUT_READ_ONCE by
3148  defaults but plugins can change it during initialisation.
3149
3150  Please check that nothing is broken :)
3151
3152 2001-02-28 Wednesday 05:20  sam
3153
3154    * Additional optimizations to the subtitle decoder
3155    * The GGI video output should now be faster. Also, right-mouse-clicking
3156      works in GGI mode as well.
3157
3158 2001-02-26 Monday 17:41  sam
3159
3160    * Optimizations done to the SPU decoder. Now the RLE is expanded at
3161      decoding time, not rendering time. The main loop in vout_RenderSPU
3162      is now 20 lines long.
3163
3164 2001-02-26 Monday 12:16  sam
3165
3166    * The Gtk+ interface is now built as a Debian package as well. The Gnome
3167      package depends on it because of the icon and menu entry.
3168    * Added an intf_WarnHexDump() function to do raw hexadecimal dumps of
3169      memory areas. For debugging purposes or for real men, as you wish.
3170    * Lots of tidying in dvd_ioctl.c, a few comments added.
3171    * Better error handling in the subpicture decoder.
3172    * Tidied video_spu.c. More to come later.
3173    * Fixed subtitle displaying. Will soon work in overlay mode as well.
3174
3175 2001-02-23 Friday 12:37  massiot
3176
3177  * Fixed a compile problem in debug mode.
3178
3179 2001-02-22 Thursday 17:00  massiot
3180
3181  * Added functions and hooks to display dates instead of off_t.
3182
3183 2001-02-22 Thursday 16:17  massiot
3184
3185  * Added a 'd' keystroke to dump the stream contents (for debugging
3186  purposes).
3187
3188 2001-02-22 Thursday 08:44  stef
3189
3190  -New ES detection based on .ifo for DVD module. It might fail (I have
3191  found one DVD for which ifo seems false).
3192
3193  -Title and chapter selection on the command line (see -t and -T options)
3194  It will allow to watch some DVD that went through menus by default.
3195
3196  -beginning of menus in gnome interface.
3197
3198 2001-02-21 Wednesday 15:52  polux
3199
3200  Some changes in the BeOS video output :
3201  - New video output method, the vlc now uses BBitmap instead of
3202    BDirectWindow (better performances)
3203  - Added resizing
3204  - Added beta support for overlay
3205
3206 2001-02-21 Wednesday 11:49  sam
3207
3208    (note: empty CVS mails mean that a new directory has been created,
3209     don't forget to use the -p option if you cvs update)
3210
3211    * Added a plain Gtk+ port of the Gnome interface, for the gnome-impaired
3212      people. Gtk+ is now compiled by default, while Gnome isn't (you will
3213      have to add --enable-gnome when running configure)
3214    * Replaced -lcurses with -lncurses in configure.in.
3215
3216 2001-02-21 Wednesday 04:38  henri
3217
3218  TS Input :
3219  - Added DemuxPSI, DecodePAT and DecodePMT. Never tested which streams
3220    where PAT or PMT are splitted in more than one section.
3221  - Some TS files still don't work (matrix.ts i.e : no sound ),
3222    others do ... i'll have to investigate.
3223
3224  Todo :
3225  - What if data get unaligned ?
3226  - Write NetworkOpen
3227  - Try to find why I get no sound on matrix.ts
3228  - Support Stream and program selection.
3229
3230 2001-02-21 Wednesday 00:47  sam
3231
3232    * Forgot to fix the vlc.spec.
3233    * Added Bozo to the author list.
3234
3235 2001-02-20 Tuesday 23:30  sam
3236
3237   * Updated version number to 0.2.62. Release tonight.
3238
3239   * DVD plugin is still non-functional when you don't have DVD ioctls,
3240     but at least it compiles under BeOS as well.
3241   * Minor cosmetic changes here and there.
3242
3243 2001-02-20 Tuesday 17:08  polux
3244
3245  Added the BeOS code for vlc_mutex_destroy() and vlc_cond_destroy()
3246
3247 2001-02-20 Tuesday 15:03  massiot
3248
3249  Minor optimizations in the video decoder.
3250
3251 2001-02-20 Tuesday 13:41  massiot
3252
3253  On machines without dvd ioctl, remove the DVD plugin from the Makefile,
3254  fucking holy piece of *£$^%ù !
3255
3256 2001-02-20 Tuesday 12:06  reno
3257
3258  * Move ac3 globals variables into structures
3259  * Adding authors
3260  * Prepared to add asm imdct and downmix
3261
3262 2001-02-20 Tuesday 11:34  sam
3263
3264   * Fixed a bash-ism in configure.in
3265
3266 2001-02-20 Tuesday 09:10  sam
3267
3268   * Fixed a segfault in input.c when no input plugin was found for
3269     a given file.
3270   * Fixed a deadlock in the Gnome interface. Next time I'll initialize
3271     my mutexes, I promise.
3272   * Added Oct to the authors list in intf_gnome.glade :)
3273
3274 2001-02-20 Tuesday 08:47  stef
3275
3276  Second step in area management ; everything is in place now to have
3277  title handling; it is coming :)
3278
3279 2001-02-20 Tuesday 07:49  sam
3280
3281    * Ported Glide and MGA plugins to the new module API. MGA never worked,
3282      so this didn't make it work better.
3283    * Started thinking about built-in modules, and added some code to
3284      make it easier eventually.
3285    * Added Oct in the AUTHORS file.
3286    * Fixed a mistake in configure.in.
3287    * All your base are belong to us.
3288    * Fixed a bug in src/misc/modules which prevented loading modules
3289      when launched from the Tracker.
3290    * Fixed a similar bug in src/video_output/video_text.c.
3291    * BeOS CSS support, thanks to Markus Kuespert <ltlBeBoy@beosmail.com>
3292      who ported the Linux DVD ioctls. We can now read encrypted DVDs
3293      under BeOS ! Woohoo.
3294
3295 2001-02-20 Tuesday 02:53  stef
3296
3297   First serie of changes in DVD module for the forthcoming interface menus
3298   There is a new capability in input type modules for setting the
3299  attributes of a new area. It is set to NULL for PS and TS plugins.
3300   It should be called for every title change, chapter change,
3301  audio mode change or spu channel change.
3302
3303  But this part of code is not used at the moment, and is not completed
3304  yet.
3305
3306 2001-02-19 Monday 19:28  massiot
3307
3308  * Kludge of the kludge, removing an oddity in YUV initialisation, and
3309  activating YUV overlay on startup whenever hardware acceleration is
3310  available. Thanks for bearing with us, stay tuned.
3311
3312 2001-02-19 Monday 19:08  massiot
3313
3314  * mux_rate parsing ;
3315  * Changed video decoder's error messages into warnings.
3316
3317 2001-02-19 Monday 03:46  sam
3318
3319    * Drag and drop support under BeOS.
3320
3321 2001-02-19 Monday 03:12  stef
3322
3323  -Change in the code to detect beginning of movie. It is much better now
3324  but still fails with some DVD for which the movie is not the first
3325  Program.
3326
3327  As a consequence some DVD that worked before don't work anymore.
3328
3329  -Beginning of ideas to handle chapters and ES selection
3330
3331 2001-02-18 Sunday 19:14  sam
3332
3333    * configure.in and Makefile.in patches for better SDL support and
3334      support for $(bindir) $(datadir) and $(libdir) stuff, courtesy
3335      of Arkadiusz Miskiewicz <misiek@pld.ORG.PL>
3336    * Ported ggi.so to the new modules API. As for the other modules, only
3337      the "q" key works. Moreover, VLC doesn't exit cleanly if you close the
3338      GGI window.
3339    * Deactivated non-working widgets in the Gnome interface.
3340    * Added CONTRIBUTORS file.
3341
3342    Hint of the day: don't expect to code quite long in your bed when sleepy.
3343
3344 2001-02-18 Sunday 10:24  sam
3345
3346   * Ported the framebuffer plugin to the new module API. As for most of the
3347     other video output modules, keyboard doesn't work. Except ^C to quit.
3348
3349 2001-02-18 Sunday 03:32  polux
3350
3351     The BeOS port seems to work again.
3352
3353     I used this command to play an unencrypted DVD, but maybe there is a
3354     better solution: ./vlc dvd:/dev/disk/ide/atapi/1/master/0/raw
3355
3356     Current problems: gcc doesn't like MMX-EXT instructions, and refuses
3357     to have register %ebx being used in the main application. Grr.
3358
3359     ,-- don't trust the CVS bot, it's Sam speaking here :)
3360    /
3361
3362 2001-02-18 Sunday 01:42  stef
3363
3364  -UDF filesystem support so that we know the location of the first video
3365  related file with 100% reliability (great change that should make DVDs
3366  with binaries and extra stuff work with vlc).
3367
3368  -Correction of a bug in ifo reading that falsified the adress of
3369  video titles.
3370
3371  -Changed the method for selecting title at start. It is _not_ reliable
3372  though, but it is better than the preceding one.
3373
3374 2001-02-17 Saturday 08:48  sam
3375
3376   * Tried to fix the BeOS interface and video output. Any BeOS developers
3377     listening ? I can't even test that code, it probably wants additional
3378     fixing.
3379   * Added a workaround in modules.c for broken libc's which happen to truncate
3380     filenames in dentry structures when using 64bits offsets. The kind of
3381     stuff you only see in RedHats <g>.
3382   * Made the SDL error messages a bit more useful.
3383   * The Gnome menu is now created when mouse is released, not when it
3384     is pressed. It may sound stupid, but it really makes a difference.
3385
3386 2001-02-16 Friday 09:25  sam
3387
3388   * Upgraded version number to 0.2.61. Release is today.
3389
3390   * Fixed package building (both RPMs and .debs).
3391   * Fixed `make snapshot' rule.
3392   * Added some magic to filename detection. To read a DVD you now just
3393     need to run 'vlc dvd:/dev/hdc' for instance. Same for file:// URIs.
3394   * Fixed a segfault in the slider when no stream was playing.
3395   * Made the slider go from 0 to 100 (instead of 99 :)
3396   * The vlc now doesn't exit when finished playing. As a side effect of
3397     the playlist code being very recent, it continuously loops.
3398
3399 2001-02-16 Friday 06:37  sam
3400
3401   * Fixed a segfault in the input thread creation, as well as a possible
3402     deadlock. This happened mostly when opening non-existing files.
3403   * Created input_SetStatus to do input_SetRate's job. input_SetRate will
3404     be used to set an arbitrary rate, for people who want to read DVDs at
3405     1/2.71828 times the actual speed.
3406   * Stubs for the ncurses control interface. No working code yet, but the
3407     holes just need to be filled.
3408   * Improved X11 support. Still not as functional as before.
3409   * The output window now states the method name, so that people know whether
3410     they are using X11 or SDL.
3411   * The Gnome interface is now drag'n'drop aware, you can drop a file
3412     on it just like Xine does (or so I guess).
3413
3414 2001-02-15 Thursday 03:01  sam
3415
3416   * X11 output works again. It's just the output, but it works; I now need
3417     to clean the code and add event handling.
3418
3419 2001-02-14 Wednesday 15:58  henri
3420
3421  Begining of TS Input
3422
3423  Done :
3424  - fixed netlist
3425  - embryo : support TS video trough file ( kludgy ... )
3426
3427  Next :
3428  - Write DecodePSI and DemuxPSI, wich will clean the kludges off
3429
3430  Then :
3431  - Write NetworkOpen ( shouldn't be difficult )
3432
3433  Eventually :
3434  - Deal with lost/corrupt packets
3435
3436 2001-02-14 Wednesday 14:31  sam
3437
3438   * Should have fixed the dependency generater for some plugins.
3439
3440 2001-02-14 Wednesday 07:48  sam
3441
3442   * updated version information to 0.2.60 -- today's release
3443   * started porting the X11 vout (still disabled)
3444   * a few unnoticeable changes in the Gnome intf
3445
3446 2001-02-13 Tuesday 04:29  sam
3447
3448   * added --intf option to vlc
3449   * started cleaning vout_sdl.c
3450   * the dummy plugin works again
3451   * added a slider to the Gnome interface so that we can browse through streams
3452
3453    There is a problem with the slider: we sometimes get unexpected async
3454    replies, which would mean that we don't properly lock our Xlib calls.
3455    Which is true. But we also get these errors when using `--vout dummy'.
3456    I'll investigate.
3457
3458 2001-02-12 Monday 13:20  massiot
3459
3460  * We can now seek at position 0 :p ;
3461  * Fixed a typo in my previous commit.
3462
3463 2001-02-12 Monday 11:22  massiot
3464
3465  * Tried to enhance picture dating on timebase discontinuities.
3466
3467 2001-02-12 Monday 09:39  sam
3468
3469   . removed tests against i_rate and i_new_rate calculation from the
3470     plugins and hid this complexity into input_ext-intf.c
3471
3472 2001-02-12 Monday 07:52  sam
3473
3474    * Fixed my old stupid bug that disabled sound after having played the
3475      first playlist item.
3476    * Added `Prev' and `Next' buttons to the interface, with the beginning of
3477      a playlist window (still empty).
3478    * Added `Slow' and `Fast' buttons to the interface and popup menu.
3479
3480    Ok, I promise it's the last time I check bloat in, from now the interface
3481    commits will be much cleaner and actually fix things :)
3482
3483 2001-02-12 Monday 00:20  sam
3484
3485   * The pure Gnome part of the Gnome interface has been rewritten from
3486     scratch, and the .glade file included as well. You can edit it by
3487     installing glade-gnome and doing `glade plugins/gnome/intf_gnome.glade',
3488     or directly by hand if you grok XML.
3489   * Files can now be loaded into vlc using the `Open' buttons. But for the
3490     moment you still have to launch vlc with at least one file, because it
3491     quits when the end of the playlist is reached.
3492   * Idle screen was disabled because it eats a lot of CPU and is mostly
3493     useless for the moment. And it gets activated when pause lasts for too
3494     long.
3495
3496 2001-02-11 Sunday 01:15  sam
3497
3498    Beginning of Interface II
3499   ---------------------------
3500
3501   * Plugins have completely disappeared, we now only use the new module API.
3502   * All intf and vout modules are now independant. So far, only the Gnome
3503     intf module and the SDL vout module have been ported. configure.in has
3504     been modified to reflect the changes (x11 and dummy aren't compiled by
3505     default anymore, while SDL and Gnome are).
3506
3507    Note that this is _not_ Interface II, it's just a step forward. For
3508    instance, it lacks the whole message passing scheme.
3509
3510    Things that should work:
3511
3512   * Right-clicking on the SDL video output window brings the Gnome menu.
3513   * Pause, Play, Exit, About work from the menu or from the interface window.
3514   * The old SDL keys still work.
3515
3516     Things that are broken or may be broken:
3517
3518   * Xlib calls are not locked yet, which may lead to "Unexpected async reply"
3519     errors, and make the vlc segfault.
3520   * Sound only works for the first file.
3521   * The SDL vout_sdl.c file is absolutely ugly and kludgey.
3522   * The vlc immediately quits when no filename is given as an argument. Not
3523     a real bug, but still annoying.
3524   * The Gnome menu does not work in fullscreen mode.
3525
3526     Things that will come soon, maybe tomorrow:
3527
3528   * Complete navigation buttons (fast forward, slow, etc.).
3529   * File/Open menu to add files to the playlist.
3530   * Return of the X11 video output for those of us who do not have SDL.
3531   * Textmode interface for those of us who do not have Gnome.
3532   * aout and vout autospawn (maybe).
3533
3534 2001-02-09 Friday 03:51  stef
3535
3536  -Some functions to prepare ifo commands utilisation to move in the
3537  structures of DVDs
3538  -Change in configure to avoid compiling css functions on BSD.
3539
3540 2001-02-08 Thursday 23:40  sam
3541
3542   . added comments to src/interface/intf_plst.c and include/intf_plst.h
3543     so that people understand how the playlist works.
3544   . updated the TODO list (34 items to do, 41 done !)
3545
3546 2001-02-08 Thursday 17:44  massiot
3547
3548  * Portability : changed off64_t to off_t and activated appropriate
3549    GNU/Linux options ;
3550  * Changed fseek() to fseeko() for 64-bit offsets ;
3551  * Reset frame predictors on a stream discontinuity.
3552
3553 2001-02-08 Thursday 13:52  massiot
3554
3555  * Implemented basic stream navigation function, and bound Jump forward
3556    and jump Backward in the SDL intf. Enjoy !
3557
3558 2001-02-08 Thursday 13:08  massiot
3559
3560  * Pause function implemented ('p' key).
3561
3562 2001-02-08 Thursday 07:24  sam
3563
3564   . moved the playlist handling from input/input.c to interface/interface.c
3565   . fixed a few warnings at compile-time
3566   . fixed sound channel selection in playlist mode
3567   . added a color message in the plugin bank because on peut bien déconner
3568     cinq minutes, quand-même
3569   . we now spawn a new input thread for each file
3570   . added a missing pf_close() because it's always cool to close files
3571     after we read them
3572
3573 2001-02-08 Thursday 06:41  stef
3574
3575  -solved bug with cssdescrambling. The vlc might segfault with dvd
3576  plugins. I will fix that soon.
3577  -minor modification in pluginification.
3578
3579 2001-02-08 Thursday 04:43  sam
3580
3581     This commit is a bit early, but it'll save Stef, Henri and me much
3582   time later, when we don't have to backport modifications to input_*.c
3583
3584     What's new :
3585      - playlist works again (still the old wrong way like Meuuh doesn't
3586      like, but this is going to change within a few hours)
3587      - input_ps, input_ts and input_dvd are now plugins, located in
3588      plugins/mpeg/ and plugins/dvd/
3589
3590     What's broken :
3591      - audio output might be broken on some streams ; have to investigate
3592
3593     What has changed :
3594      - fast/slow keys are now A/Z instead of A/S since S was already
3595      linked to the scale/noscale toggle.
3596      - `--dvd' doesn't work anymore, for the moment try to use :
3597       vlc --input dvd /dev/dvd
3598      - module bank is now less verbose ; use `--warn 1' to turn back
3599      verbosity on
3600
3601 2001-02-08 Thursday 01:34  stef
3602
3603  -New method using netlist to read packets on DVD device by sectors of
3604  2048 bytes.
3605  -Some modifications in netlist to make it work with DVD.
3606  -Fixed à bug in mpeg_system.c
3607
3608  We use INPUT_READ_ONCE many times in the input code. I think that
3609  we should replace it with a field in input_thread_t to give more
3610  flexibility to modules. I have done it in DVD plugin but it can't work
3611  if input.c is limited by INPUT_READ_ONCE.
3612
3613  The DVD method is slower than input_ps ; but there are things to
3614  improve.
3615  CSS descrambling is broken.
3616
3617 2001-02-08 Thursday 00:46  reno
3618
3619  We can now choose the speed of forward (between 32/1 and 1/8)
3620
3621  Thanks to Meuuh, he's MORTEL ;)
3622
3623 2001-02-07 Wednesday 17:56  massiot
3624
3625  Another mistake.
3626
3627 2001-02-07 Wednesday 17:51  massiot
3628
3629  /me <- pogno who modifies Makefile instead of Makefile.in :p
3630
3631 2001-02-07 Wednesday 17:44  massiot
3632
3633  * Functional fast forward and slow motion API ;
3634  * Dirty hack in the SDL intf to bind "a" (fAst forward), "s" (Slow motion)
3635  and "p" (Play).
3636
3637 2001-02-07 Wednesday 15:32  massiot
3638
3639  * Centralized clock management, preparing for stream navigation ;
3640  * Fixed a bug in the management of the first video PTS.
3641
3642 2001-02-06 Tuesday 00:56  nitrox
3643
3644  . Fixed a FIXME in SDL: p_vout->p_sys is no more used in intf_sdl.c
3645  . Used instead p_vout->i_changes like in x11
3646
3647 2001-02-05 Monday 21:00  sam
3648
3649   . disabled SDL parachute to let the vlc dump a core instead of staying stuck
3650   . patched 2 debian bugs
3651      (see http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=vlc)
3652   . improved the snapshot generation
3653
3654 2001-02-04 Sunday 03:06  sam
3655
3656   . removed obsolete video_yuv_mmx.S
3657   . updated the TODO list and wrote a small todo.pl parser to make it
3658     easier to see which items remain to be done
3659   . `make snapshot' now creates vlc-*.tar.gz and vlc-*-nocss.tar.gz
3660
3661 2001-01-31 Wednesday 03:42  sam
3662
3663   . version 0.2.50 for the Linux Expo
3664   . --overlay and --fulscreen options (only work with --vout sdl)
3665   . the vlc exits after the end of the stream, which prevents from having
3666     to kill it and relaunch it during a presentation, just script it like :
3667
3668        for i in ~/mpeg/* ; do vlc --fullscreen --overlay --vout sdl $i ; done
3669
3670   Yes, I know the --overlay stuff is fucking ugly. But *I* am not the one
3671    who redefines vout_sys_t in an interface-related source file. I won't
3672    change it until the vout/intf is finished being rewritten.
3673
3674   Additional information: if "--overlay --fulscreen" doesn't center your
3675    picture, try with your screen geometry, eg:
3676    "--overlay --fullscreen --width 1024 --height 768"
3677
3678 2001-01-31 Wednesday 03:24  sam
3679
3680   . version 0.2.0 pour la linux expo
3681   . ajout des options --fullscreen et --overlay
3682   . XXX: l'overlay ne fonctionne pas chez moi, je ne comprends pas
3683     pourquoi -- mais je m'en fous, ça ne marchait déjà pas avant ce
3684     commit. Si quelqu'un veut voir, qu'il se lâche.
3685
3686 2001-01-30 Tuesday 19:19  massiot
3687
3688  * Fix for assholes who don't have a dvd players. :pppp
3689
3690 2001-01-30 Tuesday 05:48  sam
3691
3692   . not a very nice hack, but will probably spare us a few user complaints: if
3693    no -a option is specified, the vlc will play the first audio type it finds,
3694    so there is no need to specify "-a ac3" for a DVD anymore.
3695
3696 2001-01-29 Monday 06:28  stef
3697
3698  * Correction of two errors.
3699
3700 2001-01-29 Monday 06:10  stef
3701
3702  -CSS support kludged for current DVD input.
3703  It is very slow now but will be more adapted to the forthcoming DVD
3704  input.
3705  It should read the first title of many DVDs but has been tested with few.
3706
3707  -Beginning of ifo commands to implement DVD navigation.
3708
3709 2001-01-27 Saturday 02:51  henri
3710
3711  added documentation
3712
3713 2001-01-27 Saturday 02:51  henri
3714
3715  file VideoLAN-HOWTO.sgml was initially added on branch V0_2.
3716
3717 2001-01-26 Friday 15:38  massiot
3718
3719  * Removed dead code.
3720
3721 2001-01-26 Friday 00:10  bozo
3722
3723    - backport of the sdl plugin (minor correction in video_output as I made
3724      in unstable)
3725
3726  NOTE: This is the last development commit in the stable version. Do NOT commit
3727  any new features in the stable version. If you do you'll be murdered by Henri.
3728
3729 2001-01-25 Thursday 21:57  sam
3730
3731   . removed Makefile -- I can't understand why it reappeared.
3732
3733 2001-01-24 Wednesday 19:05  massiot
3734
3735  * Hooks for fast forward and slow motion support.
3736
3737 2001-01-23 Tuesday 13:22  massiot
3738
3739  * Fixed backwards moves ;
3740  * Updated TODO list.
3741
3742 2001-01-23 Tuesday 10:15  massiot
3743
3744  * Completely removed BIZARRE_OPTIMS.
3745
3746 2001-01-22 Monday 19:40  massiot
3747
3748  * Tuned up optimizations.
3749
3750 2001-01-22 Monday 18:04  massiot
3751
3752  * Minor bitstream optimization.
3753
3754 2001-01-22 Monday 15:49  massiot
3755
3756  * Tuned up optimization flags.
3757
3758 2001-01-22 Monday 05:20  stef
3759
3760  *Check for the needed headers for DVD ioctls
3761
3762  I have only tested it on my computer ; so I don't know if it work
3763  elsewhere, particularly on BSD and BeOS.
3764
3765 2001-01-21 Sunday 09:20  stef
3766
3767  *Some cleaning in the dvd authentification code
3768
3769  Now it generates a valid title key, but there is no sector descrambler
3770  yet.
3771
3772 2001-01-21 Sunday 01:36  massiot
3773
3774  * Various miscellaneous minor optimizations of the video parser.
3775
3776 2001-01-20 Saturday 20:59  stef
3777
3778  * Beginning of support for encrypted DVDs.
3779  * It only tests encryption and authenticates disc.
3780
3781  The decryption does not work now et it is very ugly but I'm working on it.
3782
3783 2001-01-20 Saturday 13:08  sam
3784
3785   . really fixed GetChunk now.
3786
3787 2001-01-20 Saturday 04:19  sam
3788
3789   . the infamous Saturday morning mighty one-liner patch that fixes subtitles
3790
3791 2001-01-19 Friday 18:17  sam
3792
3793   . changed program version to 0.2.5 (preparing 0.3.0 release).
3794   . changed codename to Urumov
3795   . cleaned a lot of stuff in the Debian package generation.
3796
3797    If anyone objects with the versioning scheme, let's fight in the
3798    dirt and sort that out. Or change it yourself.
3799
3800    Debian packages can be tried here: http://armitage.via.ecp.fr/~sam/vlc/
3801
3802 2001-01-18 Thursday 17:40  massiot
3803
3804  * 32-bit aligned bitstream (not that fast).
3805
3806 2001-01-18 Thursday 05:13  sam
3807
3808      The motion compensation routines are now modules as well ; choose your
3809    implementation with `--motion motion', `--motion motionmmx' or
3810    `--motion motionmmxext'. Of course, the best implementation is chosen
3811    if you don't ask for any. There doesn't seem to be any performance hit
3812    due to the move to shared libs, which is a good thing. Please test
3813    actively if you have time, though.
3814
3815      Updated --help result, manpage, INSTALL document, and a few files.
3816
3817      I moved vdec_motion.h and vpar_blocks.h back to /include because they
3818    will be needed to build motion compensation modules, but perhaps we don't
3819    need to export everything which is in these files.
3820
3821      /src/video_decoder/ now has only one .c file, perhaps it could now be
3822    merged with video_parser ?
3823
3824 2001-01-17 Wednesday 18:17  massiot
3825
3826  * Borrowed LiViD's MMX and MMX EXT IDCT.
3827
3828  This might break things. Expect a performance increase.
3829
3830 2001-01-17 Wednesday 17:25  sam
3831
3832   . removed a few useless malloc() and unused variables in the audio SDL stuff
3833   . prepared the work for built-in modules (not yet finished)
3834
3835 2001-01-17 Wednesday 00:52  stef
3836
3837  * Minor changes
3838
3839 2001-01-16 Tuesday 18:35  octplane
3840
3841  - Added SDL sound support. Sounds a bit laggy sometimes but my streams are ill.
3842    please try.
3843  - modified configure.in and all that stuff. Re-run configure
3844  - SDL audio, video and interface are all part of the same .so now.
3845  - remove YUV old files :->
3846
3847 2001-01-16 Tuesday 18:06  massiot
3848
3849  * Reverted something that wasn't supposed to go into the cvs :p
3850  * Removed -fargument-noalias-global which causes problems with as (???).
3851
3852 2001-01-16 Tuesday 17:59  massiot
3853
3854  * Borrowed livid's latest libmmx and MMXEXT MC. Not in the Makefile => to
3855  test it, replace vdec_motion_inner_mmx.c by vdec_motion_inner_mmxext.c.
3856
3857  I'm interested in performance feedback.
3858
3859 2001-01-16 Tuesday 16:09  sam
3860
3861   . a few changes in the CPU extensions detection code, borrowed from the
3862     kernel and from mpeg2dec. I still don't know how to detect if code
3863     compiled with -mcpu=pentiumpro will run, since the cpuid arcanes are
3864     quite obtuse to me. Perhaps we should also have a way not to load modules
3865     if they have been compiled with a different CPU to avoid segfaults.
3866
3867 2001-01-16 Tuesday 13:26  sam
3868
3869   . added files for the SSE (MMX on steroids) IDCT. Meuuh, you should just
3870     need to touch plugins/idct/idct_mmxext.c (ok, the filenames suck).
3871
3872 2001-01-16 Tuesday 05:04  sam
3873
3874   [ include/config.h.in has changed, don't forget tu run ./configure ]
3875
3876   . fixed the --aout, --idct and --yuv flags
3877   . updated manpage and --(long)help output to reflect that change
3878   . removed a few unneeded #includes here and there
3879   . cosmetic changes in error messages in input.c
3880
3881     Currently available flags are now :
3882
3883       --aout dummy
3884              esd
3885              dsp
3886              alsa
3887
3888       --idct idct
3889              idctclassic
3890              idctmmx
3891
3892       --yuv yuv
3893             yuvmmx
3894
3895    --vout works like before, but still uses the old plugin system for now.
3896
3897 2001-01-16 Tuesday 04:41  stef
3898
3899  . Now use of 64 bits offsets to parse the whole DVD. So we have all the
3900  available information
3901  . Fixed a bug in parsing of VTS attributes
3902  . Fixed a bug in input.c that made input plugin initialize even though
3903  no stream is reachable (thanks Sam)
3904
3905  I hope I'll be able to get the position of the movie soon.
3906
3907  Meuuh : the seek function of the plugin now take off_t as argument which
3908  could be a problem later. Maybe it should take off64_t or time argument.
3909
3910 2001-01-16 Tuesday 02:16  sam
3911
3912   . merged the YUV plugins in the same directory to avoid too much code
3913     duplication
3914   . YUV transformations now use the new module API ; now only the vout
3915     and interface still depend on the old plugin API
3916   . changed TestMMX to TestCPU because we will be able to test for other
3917     specific extensions (3DNow, SSE) for the forthcoming IDCT we'll
3918     borrow to mpeg2dec (as usual :P)
3919   . don't show "hiding module" messages anymore except in debug mode
3920   . swapped C IDCT and Classic IDCT scores since the classic one seems
3921     to be faster ; anyway you should use the MMX one
3922   . fixed a Makefile bug under BeOS
3923   . tried to fix the cpuid code so that it compiles under BeOS (Polux, can
3924     you test it when you have time ?)
3925
3926 2001-01-15 Monday 08:07  sam
3927
3928     OK, so I foired input.h once again. But this one works. For real.
3929
3930 2001-01-15 Monday 06:56  sam
3931
3932   . correction d'un poliotage de copier-coller
3933
3934 2001-01-15 Monday 06:18  sam
3935
3936   . fixed the bug-that-made-the-vlc-segfault-on-exit, which means that
3937     more than ever, « le client ne segfaulte pas ».
3938
3939   . there was still a problem upon quitting: sometimes the null packet
3940     wasn't big enough to reach a decoder breakpoint, so I now create 10
3941     of them (since I can't make it bigger) to be sure. Meuuh, what do
3942     you think ?
3943
3944   . fixed the Makefile to spare a few variables here and there.
3945
3946   . reduced module hide delay, removed loading of the audio output
3947     plugins since they are now modules.
3948
3949   . changed a few intf_Msg to intf_DbgMsg, and added "vout:", "intf:",
3950     and so on in a few other messages.
3951
3952   . removed unused includes in the idct modules.
3953
3954 2001-01-15 Monday 03:26  stef
3955
3956  . Correction of bugs in ifo parsing. Now the structures should be well
3957  initialized. It remains some segfaults but it globally works.
3958  . DVD mode is enabled with option --dvd. For the moment, it only read
3959  the first vts and find the movie if it is at the beginning of the title
3960  set.
3961
3962  Coming soon:
3963  . udf filesystem management to access over 2Gb zones.
3964  . detection of the offset to the movie inside a vts when it is not at
3965  the beginning.
3966
3967  Is there a chance that using fopen/fseek function instead of open/lseek
3968  system calls solve the 2Gb issue ?
3969
3970 2001-01-14 Sunday 07:08  stef
3971
3972  . Beginning of dvd_input.
3973  . Parsing of ifo file almost completed.
3974  . Still does not work well.
3975
3976 2001-01-13 Saturday 12:57  sam
3977
3978   . the IDCT functions are now located in modules : the classic IDCT,
3979     our optimized IDCT, and MMX IDCT.
3980   . cosmetic changes for modules (pf_* instead of p_*)
3981   . fixes to the BeOS and dummy modules
3982
3983     WARNING: a new directory has been added, which means you have to
3984     use `cvs update -dP' to update ; files have been removed , which means
3985     you either have to run `make distclean' or remove the .deps directory,
3986     and the configure script has changed, which means you have to run it
3987     again. Don't complain before having checked this :)
3988
3989     Note about the IDCT modules: there is no way to choose the one we
3990     use, but you may remove the module in lib/ to prevent it from being
3991     loaded. The preference order is : MMX, Optimized, Classic.
3992
3993 2001-01-12 Friday 17:33  massiot
3994
3995  * Changed default values :
3996  INPUT_PTS_DELAY down to 200 ms ;
3997  video heap down from 10 to 5 pictures ;
3998  decoder fifo size from 1023 to 511 PES ;
3999  * Fixed various bugs in 32 bit-versions of input_ext-dec.h ;
4000  * Fixed a bug in GetChunk() ;
4001  * Renamed GetByte, GetWord, ShowWord to _GetByte, _GetWord, _ShowWord ;
4002  * Moved decoder_fifo-specific code from programs.c to dec.c ;
4003  * Fixed bugs in program.c that prevented vlc to close all decoders ;
4004  * Gave sam a lesson for the use of the bitstream in spu_decoder.c :ppp ;
4005  * Made the video parser unlock the reference pictures before quitting
4006  (still one left, yaknow why ?)
4007
4008 2001-01-12 Friday 14:49  sam
4009
4010   . destroy fifo mutex and cond variables _after_ they are used for
4011     the last time. henri, that'll be one binouze.
4012
4013 2001-01-12 Friday 12:48  henri
4014
4015  Done :
4016  - ported the alsa plugin to the news vlc module API
4017  - cosmetic changes
4018
4019  To do :
4020  - check if it works with the latest alsa release
4021  - add features ... prepare for 4 or more speakers
4022
4023 2001-01-12 Friday 11:36  massiot
4024
4025  * Fixed 32 bits bitstream bugs.
4026
4027 2001-01-11 Thursday 17:44  sam
4028
4029    . moved the MPEG audio decoder to the new bitstream
4030
4031      I wasn't sure whether the bits counting method was effective to
4032    skip ancillary data at the end of a frame, but I kept it for
4033    safety. There is still a lot to optimize in the bit counting, like
4034    unrolling the first iteration of some loops, but I don't know if
4035    it would be worth it. The other solution would have been to look for
4036    a startcode after eache frame, without caring about the ancillary bits.
4037
4038    . cleaning in the SPU decoder.
4039
4040 2001-01-11 Thursday 15:35  sam
4041
4042   . moved swab32 from input_ext-dec.h to common.h. We probably won't need
4043     it anymore really soon, since ntohl() and htonl() seem to be properly
4044     optimized when gcc is passed the right optimization flags.
4045
4046   . fixed GetBits32 and RemoveBits32. I know the #ifdefs are useless since
4047     we only support u32 words, but it's a safe reminder. Comments appreciated
4048     on this fix since I may have b0rked something -- it runs well here though.
4049
4050 2001-01-10 Wednesday 19:22  massiot
4051
4052  * Changed code for handling b_die in bitstream ;
4053  * Move input_ext-dec.h to input.h ;
4054  * New input_NullPacket function ;
4055  * Fixed init bugs in input and vpar ;
4056
4057 2001-01-10 Wednesday 16:24  massiot
4058
4059  * Placed a callback to the decoder in the bitstream structure ;
4060  * Fixed a purify bug in input_ps.c ;
4061  * Added -mcpu=pentiumpro in the Makefile.
4062
4063 2001-01-10 Wednesday 02:33  sam
4064
4065   . complete commenting of modules_core.h and small modifications
4066   . separated MODULE_CONFIG_START and ADD_WINDOW (Henri, beware)
4067   . fixed a very, very old bug that caused namespace collision between
4068     plugins (Henri, beware: call your aout_getplugin function like this,
4069     not alsa_aout_getplugin)
4070   . removed the Debian specific clean rules from the Makefile, since they
4071     are already handled by the debian/rules script.
4072   . tidied a few compilation rules (-lfoo should always be at the end)
4073
4074 2001-01-09 Tuesday 21:03  sam
4075
4076   . fixed a warning under FreeBSD (dlerror() is a const char*, not a char*).
4077   . made configure script look for the bswap assembly instruction (using
4078     AC_TRY_COMPILE makes sure the compiler will really accept it).
4079
4080 2001-01-08 Monday 18:16  sam
4081
4082   . Added a missing mutex_unlock in video_output.c
4083   . Moved a mutex_destroy after the thread cancellation to prevent
4084     possible problems
4085   . Added a missing #ifdef in intf_msg.c which prevented compilation
4086     with --enable-debug
4087   . Fixed a bug in the input that prevented to quit properly in certain
4088     cases (some ES were not deleted because their index was skipped when
4089     the former one was deleted, well Meuuh should know what I mean)
4090
4091    There is still a segfault when quitting, most presumably in the
4092   audio output. I couldn't find what causes it yet.
4093
4094 2001-01-07 Sunday 17:07  sam
4095
4096   . added a .cvsignore file in lib/ so that the directory doesn't get
4097     removed whenever one does a cvs update -dP
4098   . fixed debian/.cvsignore because of a new version of debhelper
4099
4100 2001-01-07 Sunday 16:17  sam
4101
4102   . all plugins now compile with -fPIC.
4103
4104   . made the audio_output API a bit simpler.
4105
4106   . got rid of modules_config.h.
4107
4108   . fixed `make install' rule.
4109
4110   . fixed warnings in the MMX YUV compilation.
4111
4112   . probably fixed a bug in the input : pp_foo structures were free()d at
4113     the end, but this was useless since the last call to realloc() is
4114     equivalent to free(), and two consecutive calls to free() aren't a
4115     goo idea.
4116
4117   . we check that the version number match and that we don't already have
4118     a module by that name when loading a new module.
4119
4120   . all public module_* functions now properly lock the module bank.
4121
4122   . the audio_output now uses the new module API ; EsounD and DSP modules
4123     have been ported, which should be enough for Henri to port the ALSA one.
4124
4125     The new plugin API is now much simpler ; it's now just a matter of
4126  calling module_Need( p_main->p_module_bank, MODULE_CAPABILITY_FOO, p_data );
4127  and if successful we get the best module. Capabilities can be ORed, so that
4128  one can ask for a plugin that does VOUT _and_ INTF actions for instance.
4129
4130     It's not complete yet though -- by making it generic I had to do a few
4131  ugly casts here and there, which I am going to fix ASAP. Also, command line
4132  selection of a plugin does not work yet.
4133
4134     The switch to the new plugin API has probably broken the BeOS audio
4135  output ; we can either wait until the whole vlc has switched to the new
4136  plugins, or create a separate beos_sound.so that conforms to the new API.
4137
4138 2001-01-07 Sunday 06:40  benny
4139
4140  Hum, ouais bon ben euhh, j'avais fume, donc je repare mes conneries et je
4141  vais me coucher.
4142
4143 2001-01-07 Sunday 05:41  benny
4144
4145  Optimisation de BinaryLog
4146
4147 2001-01-07 Sunday 04:31  henri
4148
4149  - Order : if a then b are initialized, release b then a ;
4150  - Typos ;
4151  - Cosmetic changes.
4152
4153 2001-01-07 Sunday 03:56  henri
4154
4155  - Added vlc_mutex_destroy and vlc_cond_destroy function, for pthreads.
4156  - Used them before quitting, every lock and cond is destroyed
4157  - Checked the return value of malloc and realloc in input_programs
4158  - Cosmetic changes
4159
4160  TODO: add vlc_*_destroy for beos and C_thread
4161
4162 2001-01-06 Saturday 08:05  benny
4163
4164  Fixed compilation pb under solaris 2.6
4165
4166 2001-01-06 Saturday 08:04  benny
4167
4168  Fixed solaris libraries
4169
4170 2001-01-06 Saturday 07:23  sam
4171
4172   . should compile & run on Solaris with ./configure --disable-dsp
4173      (tested on puma)
4174   . removed most SYS_SOLARIS #ifdef's in favour of more generic tests
4175   . updated example ./configure line in INSTALL file
4176   . now we only load modules that end with ".so"
4177   . null module is compiled by default
4178
4179 2001-01-06 Saturday 05:44  henri
4180
4181  Fixed a typo than prevented from building ...
4182
4183 2001-01-06 Saturday 03:16  henri
4184
4185  Fixed initialization of payload_start and payload_end
4186  It should be finished now.
4187
4188 2001-01-05 Friday 18:46  massiot
4189
4190  BSD port, including :
4191  * --enable-sdl and some others are now --with-sdl[=name] to supply an
4192  optional library name ;
4193  * deleted all unnecessary #include <sys/uio.h> ;
4194  * /usr/include is now searched when looking for libraries and headers.
4195
4196  It seems to compile and run on BSD. Under Linux Sam's latest commit makes
4197  vlc crash on startup, so I can't really tell, but hey it compiles.
4198
4199 2001-01-05 Friday 18:06  sam
4200
4201   . src/misc/modules.c is in a workable state now.
4202
4203    To test it, run ./configure with the --enable-null flag, which will
4204    compile the Null Module as a plugin. Watch the memory usage at the
4205    launch and when the plugin is released.
4206
4207 2001-01-05 Friday 14:46  sam
4208
4209  (previous commit foired)
4210
4211   . this is a coding style patch which removes all "foo(bar){" constructions
4212     and most of the tabulations.
4213   . also, fixed a bug in the default subtitle track.
4214   . and made a few error messages more explicit, ie. changed "error: %s" to
4215     "foo error: couldn't initialize bar (%s)"
4216   . and removed a warning in intf_ctrl.c which isn't used anyway.
4217
4218 2001-01-05 Friday 14:45  sam
4219
4220   . this is a coding style patch which removes all "foo(bar){" constructions
4221     and most of the tabulations.
4222   . also, fixed a bug in the default subtitle track.
4223   . and made a few error messages more explicit, ie. changed "error: %s" to
4224     "foo error: couldn't initialize bar (%s)"
4225
4226 2001-01-05 Friday 14:28  sam
4227
4228   . splitted modules.h into modules.h and modules_core.h to enable
4229      clean compilation of the Null Module.
4230
4231 2001-01-05 Friday 14:24  sam
4232
4233   . added the Null Module, the module that does nothing but that is going
4234      to be of great help for debugging my module code.
4235
4236 2001-01-05 Friday 13:57  sam
4237
4238   . Added files needed for the forthcoming module management.
4239
4240   Notes:
4241
4242     Plugins are now called modules, because we will be able to compile
4243     them either as a dynamic plugin, or within the program. And, more
4244     important, I can commit this without having to break the vlc :)
4245
4246     I tried to be as clear as possible in my comments, please tell me
4247     if a few prototypes still have an unclear beahaviour.
4248
4249     Current features:
4250      . none, files haven't even been added to the Makefile yet.
4251
4252     Future features:
4253      . dynamic loading (done)
4254      . built-in modules (still to do)
4255      . automatic unloading of plugins (done)
4256      . dynamic configuration (still to do)
4257      . automatic choosing of the most appropriate plugin for a given
4258         task (still to do but well prepared)
4259
4260 2001-01-04 Thursday 23:18  bozo
4261
4262    - fixed pitch bug;
4263    - fixed segfault, it was probably a memory corruption but I'm not sure :) ;
4264    - video_output.c : compute picture size even if b_need_render == 0;
4265
4266 2001-01-04 Thursday 19:11  massiot
4267
4268  Fixed a deadlock.
4269
4270 2001-01-04 Thursday 18:47  massiot
4271
4272  * Fixed a deadlock (the vout unlocked a mutex locked by another thread,
4273  grrrr, I'll kill someone) ;
4274  * Put config.h in front of others in audio_decoder.c.
4275