]> git.sesse.net Git - vlc/log
vlc
22 years agoSome heavy changes today:
Sam Hocevar [Sun, 30 Dec 2001 07:09:56 +0000 (07:09 +0000)]
Some heavy changes today:
  * Removed duplicate function checks from configure.in.
  * Added extra magic to Makefile.modules so that the module Makefiles
    are now ridiculously simple. And I mean *simple*. Check it! This will
    make a possible switch to full autoconf/automake a lot easier.
  * Added the vlc version name to the plugin symbols, to be sure we only load
    plugins with the same version number. A nasty consequence is that you
    need to rebuild your tree after midnight if you are using a CVS tree :-)
  * Got rid of modules_export.h by #defining exported functions in the same
    header as their prototype.
  * Added modules_inner.h and other commonly used .h files to common.h so
    there are less and less files to include, and renamed common.h to
    <videolan/vlc.h>.
  * First modifications to the module handling system towards my ultimate
    goal to get rid of the *_Probe functions. Got rid of TestMethod and
    TestCPU, as well as src/misc/tests.c.
  * Wrote the chroma plugin handling functions. No YUV functions have been
    ported yet because it'ls a lot of work, but the core system works, I
    tried it with a naive yv12->rgb16 plugin (which will disappear when the
    real functions are ready).
  * Made a lot of functions in dvd_summary.c one-liners to avoid wasting
    too many output lines.
  * Fixed a segfault in input_dvd.c:DVDInit.
  * Added a fixfiles.sh script in plugins/gtk to be run after Glade has
    generated its C files.
  * Did some work on the KDE interface to make it suck a bit less. It still
    segfaults, but at least it runs and it looks less ugly.
  * RGB SDL rendering works again, though in 16bpp only.
  * Made plugins/vcd/linux_cdrom_tools.c independent of any vlc structure
    so that it'll be easily put in a library. Maybe libdvdcss?
  * Fixed VCD date display.
  * Merged vout_xvideo.c, vout_x11.c and vout_common.c into xcommon.c.
  * Wrote non-Shm XVideo output.
  * Made X11 output work again. Still pretty unstable, only works for 16bpp.
  * Additional french translation in po/fr.po. Any taker for the rest?
  * Fixed a segfault in video_output.c when the allocated pictures were
    not direct buffers.
  * If $DISPLAY isn't set, don't try to run the Gtk+ interface.
  * Replaced 48x48 .xpm images with 32x32 ones to conform to Debian policy
    (Closes Debian bug #126939).
  * Removed the automatic ./configure launch when running `make all' for
    the first time.

Stuff currently more broken than it ought to be:
  * The wall filter. Being fixed.
  * x11 and sdl plugins for depth != 16bpp.
  * Software YUV.
  * gvlc, gnome-vlc, kvlc shortcuts. Use --intf instead for the moment.

22 years ago * Forgot a file in my last commit.
Sam Hocevar [Sun, 30 Dec 2001 05:46:14 +0000 (05:46 +0000)]
  * Forgot a file in my last commit.

22 years ago * Put ErrorThread() in input_ext-dec.h because it was the same function
Sam Hocevar [Sun, 30 Dec 2001 05:38:44 +0000 (05:38 +0000)]
  * Put ErrorThread() in input_ext-dec.h because it was the same function
    in all decoders. Called it DecoderError() instead.
  * All decoders enter DecoderError() in case of error, even if they
    haven't allocated all their data. This prevents the input from getting
    stuck if a decoder has failed its initialization.
  * Namespace fixes through the decoder files.

22 years ago * Fixed a segfault at EOF in input_es.c and input_ts.c (when i_read == 0).
Sam Hocevar [Sun, 30 Dec 2001 04:26:53 +0000 (04:26 +0000)]
  * Fixed a segfault at EOF in input_es.c and input_ts.c (when i_read == 0).
  * Improved error recovery and avoided memleaks in the various input plugins.
  * Fixed a deadloop inserted by someone else into input_vcd.c :-)

22 years agoUse libdvdread's define instead.
Christophe Massiot [Sat, 29 Dec 2001 22:22:01 +0000 (22:22 +0000)]
Use libdvdread's define instead.

22 years agoCosmetic fix.
Christophe Massiot [Sat, 29 Dec 2001 15:40:53 +0000 (15:40 +0000)]
Cosmetic fix.

22 years ago Small bugfix of a segfault. The playlist segfaulted with the urls
Loïc Minier [Sat, 29 Dec 2001 11:36:00 +0000 (11:36 +0000)]
 Small bugfix of a segfault. The playlist segfaulted with the urls
containing no '/'.

22 years agoFixed a cosmetic issue.
Christophe Massiot [Sat, 29 Dec 2001 03:44:38 +0000 (03:44 +0000)]
Fixed a cosmetic issue.

22 years agoHidden gory buffer management details in a private section of data_packet_t.
Christophe Massiot [Sat, 29 Dec 2001 03:07:51 +0000 (03:07 +0000)]
Hidden gory buffer management details in a private section of data_packet_t.

22 years agoFixed many bugs experienced by our users today.
Christophe Massiot [Sat, 29 Dec 2001 00:39:49 +0000 (00:39 +0000)]
Fixed many bugs experienced by our users today.

22 years ago* Changed pf_read prototype and minor changes.
Christophe Massiot [Thu, 27 Dec 2001 03:47:09 +0000 (03:47 +0000)]
* Changed pf_read prototype and minor changes.

22 years ago* Changed the way decoder_fifo_t works ;
Christophe Massiot [Thu, 27 Dec 2001 01:49:34 +0000 (01:49 +0000)]
* Changed the way decoder_fifo_t works ;
* Minor optimizations in the Next Generation Buffer Manager.

22 years agoFixed compilation issue (thanks Eyal !)
Christophe Massiot [Wed, 26 Dec 2001 00:01:18 +0000 (00:01 +0000)]
Fixed compilation issue (thanks Eyal !)

22 years agoFixed a typo.
Christophe Massiot [Thu, 20 Dec 2001 23:53:49 +0000 (23:53 +0000)]
Fixed a typo.

22 years ago * Added Jeffrey Baker to the AUTHORS file.
Sam Hocevar [Thu, 20 Dec 2001 22:11:53 +0000 (22:11 +0000)]
  * Added Jeffrey Baker to the AUTHORS file.
  * Fixed a PPC compilation issue.

22 years ago * Mouse wheel seek patch for XVideo courtesy of Peter Surda.
Sam Hocevar [Thu, 20 Dec 2001 15:43:15 +0000 (15:43 +0000)]
  * Mouse wheel seek patch for XVideo courtesy of Peter Surda.
  * Ported to SDL.

22 years ago * Heavy butchery in the VCD plugin. It should no longer segfault when
Sam Hocevar [Wed, 19 Dec 2001 23:19:20 +0000 (23:19 +0000)]
   * Heavy butchery in the VCD plugin. It should no longer segfault when
     reaching end of title.

22 years ago * --filter distort:ripple (Ok, ok, I promise it's the last one !! :-)
Sam Hocevar [Wed, 19 Dec 2001 19:26:00 +0000 (19:26 +0000)]
  * --filter distort:ripple (Ok, ok, I promise it's the last one !! :-)

22 years ago * Fixed compilation with dvdcss disabled.
Sam Hocevar [Wed, 19 Dec 2001 18:14:23 +0000 (18:14 +0000)]
  * Fixed compilation with dvdcss disabled.
  * Fixed compilation with plugins disabled.
  * Removed useless variables in the VCD and DVD plugins.
  * Fixed a function which was returning "struct foo" in the VCD plugin.
  * Fixed the old � XVideo eats more and more CPU � bug I mistakenly
    reintroduced in my first vout4 commit.

22 years agoNext Generation Buffer Manager for DVD and VCD plug-ins.
Christophe Massiot [Wed, 19 Dec 2001 10:00:00 +0000 (10:00 +0000)]
Next Generation Buffer Manager for DVD and VCD plug-ins.

22 years agofixed a segfault in vcd input (thank you Sam)
Johan Bilien [Wed, 19 Dec 2001 03:56:56 +0000 (03:56 +0000)]
fixed a segfault in vcd input (thank you Sam)

22 years ago * Initialize SDL before opening the SDL audio output.
Sam Hocevar [Wed, 19 Dec 2001 03:50:22 +0000 (03:50 +0000)]
  * Initialize SDL before opening the SDL audio output.
  * Prevent two SDL video outputs or audio outputs to be spawned at the
    same time to avoid ugly crashes.
  * The SDL plugin now says whether we are using software or hardware YUV
    in its window title.
  * We now stop at the first ':' when looking for a module name, to easily
    pass information to the modules. Possible example: --vout sdl:software,
    implementation of such an option is left as an exercise.
  * Merged filter_bob and filter_bob422 into filter_bob. Use --filter bob
    to deinterlace 422 into 420 as well.
  * Factorized code common to most filters and the video output, optimized
    a few filters by aligning data and reading 64 bits at a time.
  * Two new absolutely useless, CPU-eating, resource-wasting, but fun
    filters: enjoy `transform', which performs flips and 90� rotations, and
    `distort', which performs animated image effects (currently only a naive
    sine wave is implemented). Usage examples:
       --filter transform:hflip
       --filter transform:vflip
       --filter transform:90
       --filter transform:180
       --filter transform:270
       --filter distort:wave

22 years ago * Ultimate fixes to the win32 package generation.
Sam Hocevar [Tue, 18 Dec 2001 03:07:21 +0000 (03:07 +0000)]
  * Ultimate fixes to the win32 package generation.

22 years ago * Fixed Win32 build. You still need --disable-directx --disable-nls though.
Sam Hocevar [Tue, 18 Dec 2001 02:44:34 +0000 (02:44 +0000)]
  * Fixed Win32 build. You still need --disable-directx --disable-nls though.

22 years agoAdded missing XSync().
Christophe Massiot [Mon, 17 Dec 2001 19:42:16 +0000 (19:42 +0000)]
Added missing XSync().

22 years ago * TS input: bugfix in DecodePAT and minor optimizations elsewhere.
Sam Hocevar [Mon, 17 Dec 2001 16:42:27 +0000 (16:42 +0000)]
  * TS input: bugfix in DecodePAT and minor optimizations elsewhere.

22 years ago * TS input: we now check that the contents of the PAT has changed
Sam Hocevar [Mon, 17 Dec 2001 15:59:15 +0000 (15:59 +0000)]
  * TS input: we now check that the contents of the PAT has changed
    before updating it, instead of just relying on its version number.

22 years ago * Pathetic attempt at a 4:2:2 renderer and deinterlacer, combining the
Sam Hocevar [Mon, 17 Dec 2001 05:33:56 +0000 (05:33 +0000)]
  * Pathetic attempt at a 4:2:2 renderer and deinterlacer, combining the
    most awful line dropping techniques of both BOB and 422 to 420
    downscaling. Don't worry, it should only survive for a couple of days.

22 years ago * CPU detection under BeOS.
Sam Hocevar [Mon, 17 Dec 2001 03:38:22 +0000 (03:38 +0000)]
  * CPU detection under BeOS.
  * Fixed XVideo port selection.
  * New stupid plugin: "--filter wall" for split-image playback :-)
     (will evolve into a real image wall plugin when I have time)

22 years agolibdvdcss changes:
Sam Hocevar [Sun, 16 Dec 2001 18:00:18 +0000 (18:00 +0000)]
libdvdcss changes:
  * Support for REPORT_TITLE_KEY and RPC commands by H�kan Hjort
    <d95hjort@dtek.chalmers.se>.

vlc changes:
  * Minor coding style fixes (please avoid tabs).

22 years ago * Filter plugins. Not very polished (please don't look at how the dates are
Sam Hocevar [Sun, 16 Dec 2001 16:18:36 +0000 (16:18 +0000)]
  * Filter plugins. Not very polished (please don't look at how the dates are
    calculated!), but worth a try. Use the following flags:
     "--filter invert" for inverse video
     "--filter bob" for BOB deinterlacing
  * Fixed a potential segfault if the subtitle stream was encountered
    before the video stream.
  * Misc vout4 fixes.

22 years ago * Buffer choice optimizations - vout4 should eat even less CPU now.
Sam Hocevar [Thu, 13 Dec 2001 20:47:46 +0000 (20:47 +0000)]
  * Buffer choice optimizations - vout4 should eat even less CPU now.
  * Minor warning fix for Hurd.

22 years agoFixed a bug in ES input (I had not initiated p_selected_program)
Johan Bilien [Thu, 13 Dec 2001 17:58:16 +0000 (17:58 +0000)]
Fixed a bug in ES input (I had not initiated p_selected_program)

22 years agoFixed a major bug I introduced lately.
Christophe Massiot [Thu, 13 Dec 2001 17:33:47 +0000 (17:33 +0000)]
Fixed a major bug I introduced lately.

22 years ago * Fixed aspect ratio handling.
Sam Hocevar [Thu, 13 Dec 2001 12:47:17 +0000 (12:47 +0000)]
  * Fixed aspect ratio handling.
  * Fixed potential compilation issues under eg. BSD/OS.

22 years agoNext Generation Buffer Manager, for ES plug-in.
Christophe Massiot [Wed, 12 Dec 2001 17:41:15 +0000 (17:41 +0000)]
Next Generation Buffer Manager, for ES plug-in.

22 years ago * Another win32 fix.
Sam Hocevar [Wed, 12 Dec 2001 15:25:29 +0000 (15:25 +0000)]
  * Another win32 fix.

22 years ago * Fixed Win32 port.
Sam Hocevar [Wed, 12 Dec 2001 15:20:16 +0000 (15:20 +0000)]
  * Fixed Win32 port.
  * Fixed unnecessary target remake (recursive make is harmful !).

22 years agoNext Generation Buffer Manager, for TS plug-in. Please test in-ten-si-vely !
Christophe Massiot [Wed, 12 Dec 2001 13:48:09 +0000 (13:48 +0000)]
Next Generation Buffer Manager, for TS plug-in. Please test in-ten-si-vely !

22 years agoNext Generation Buffer Manager, for PS plug-in.
Christophe Massiot [Wed, 12 Dec 2001 11:18:38 +0000 (11:18 +0000)]
Next Generation Buffer Manager, for PS plug-in.

22 years ago * Additional fixes for OSes with no gettext (thanks to ej0).
Sam Hocevar [Wed, 12 Dec 2001 02:13:50 +0000 (02:13 +0000)]
  * Additional fixes for OSes with no gettext (thanks to ej0).
  * Fixed a potential BeOS linking issue.
  * Fixed a minor bug in input.c.

22 years ago * Don't try to use gettext if we don't have GNU gettext. This may change
Sam Hocevar [Tue, 11 Dec 2001 23:53:20 +0000 (23:53 +0000)]
  * Don't try to use gettext if we don't have GNU gettext. This may change
    in the future though (most GNU software seems to include a local copy of
    gettext in case the operating system doesn't provide it).

22 years ago * Fixed an issue in Makefile.dep causing to rebuild unnecessary files
Sam Hocevar [Tue, 11 Dec 2001 15:31:37 +0000 (15:31 +0000)]
  * Fixed an issue in Makefile.dep causing to rebuild unnecessary files
    in the gtk/gnome and x11/xvideo plugins.
  * Fixed CFLAGS_XVIDEO.

22 years ago * Added vlc-arts to the debian package generation.
Sam Hocevar [Tue, 11 Dec 2001 14:43:38 +0000 (14:43 +0000)]
  * Added vlc-arts to the debian package generation.
  * HP-UX port of the DVD ioctls courtesy of David Sieb�rger.

22 years agoFixed major bugs in the PSI decoder.
Christophe Massiot [Tue, 11 Dec 2001 13:55:55 +0000 (13:55 +0000)]
Fixed major bugs in the PSI decoder.

22 years agoPartial fix for Xvideo compilation.
Christophe Massiot [Tue, 11 Dec 2001 13:09:22 +0000 (13:09 +0000)]
Partial fix for Xvideo compilation.

22 years ago * configure.in was broken for win32
Gildas Bazin [Mon, 10 Dec 2001 18:58:13 +0000 (18:58 +0000)]
  * configure.in was broken for win32

22 years agoFixed possible segfault with --input.
Christophe Massiot [Mon, 10 Dec 2001 16:16:51 +0000 (16:16 +0000)]
Fixed possible segfault with --input.

22 years agoFix for EOF of ES-only streams.
Christophe Massiot [Mon, 10 Dec 2001 15:52:31 +0000 (15:52 +0000)]
Fix for EOF of ES-only streams.

22 years ago * (very old) russian translation courtesy of Valek Filippov <frob@df.ru>.
Sam Hocevar [Mon, 10 Dec 2001 13:17:35 +0000 (13:17 +0000)]
  * (very old) russian translation courtesy of Valek Filippov <frob@df.ru>.
  * Fixed a charset issue in the french translation.

22 years ago * Removed more unused code.
Sam Hocevar [Mon, 10 Dec 2001 12:40:24 +0000 (12:40 +0000)]
  * Removed more unused code.
  * Updated config.guess and config.sub from GNU's latest versions (bozo,
    you may want to update them in vls as well).
  * Added vlc.pot skeleton for translators.

22 years ago* MPEG-1 aspect ratio patch, courtesy of Vladimir Chernyshov
Christophe Massiot [Mon, 10 Dec 2001 10:58:54 +0000 (10:58 +0000)]
* MPEG-1 aspect ratio patch, courtesy of Vladimir Chernyshov
  <greengrass@writeme.com> ;
* Seeking patch for X11, courtesy of Peter Surda <shurdeek@panorama.sth.ac.at>.

22 years ago * Removed unused code (intf_channels.c, keystrokes.h).
Sam Hocevar [Mon, 10 Dec 2001 04:53:11 +0000 (04:53 +0000)]
  * Removed unused code (intf_channels.c, keystrokes.h).
  * Put common_win32.h back into common.h -- it wasn't that big and we
    should not multiply header files.
  * Added gettext support by Thomas Graf <reeler@reeler.org>, may be
    broken on other platforms but we'll only see it when I'm finished
    with vout 4 :-)
  * Fixed a segfault on exit when no fast_memcpy module was found.

22 years ago * Fixed Debian package builds.
Sam Hocevar [Sun, 9 Dec 2001 17:08:36 +0000 (17:08 +0000)]
  * Fixed Debian package builds.

22 years ago * COMPLETE CVS BREAKAGE !! The MAIN branch is going to be a playground
Sam Hocevar [Sun, 9 Dec 2001 17:01:37 +0000 (17:01 +0000)]
  * COMPLETE CVS BREAKAGE !! The MAIN branch is going to be a playground
    for my nevrotic and destructive pulsions during the next few hours!

  * If you want to test vlc, please use the v0_2_92_branch branch.

  * Stuff currently working:
     - direct to YUV buffer decoding
     - non-ugly subtitle blending
     - XVideo and SDL video output

  * Stuff currently utterly broken:
     - aspect ratio
     - software rendering (ie, all other video output plugins)

  * Additional misc changes:
     - Renamed spu_dec to spudec and mad_adec to mad to stay coherent with
       other plugins. Also, renamed mpeg to mpeg_system.
     - Added jobi to the AUTHORS file.
     - Factored code common to vout_x11.c and vout_xvideo.c.

22 years ago0.2.92 pre-release.
Christophe Massiot [Fri, 7 Dec 2001 19:25:39 +0000 (19:25 +0000)]
0.2.92 pre-release.

22 years agoBumped up revision number to 0.2.92-dev and 1.0.1-dev.
Christophe Massiot [Fri, 7 Dec 2001 19:22:46 +0000 (19:22 +0000)]
Bumped up revision number to 0.2.92-dev and 1.0.1-dev.

22 years ago * Fixed a total breakage of decoder plugins introduced by fast_memcpy.
Sam Hocevar [Fri, 7 Dec 2001 18:33:08 +0000 (18:33 +0000)]
  * Fixed a total breakage of decoder plugins introduced by fast_memcpy.
  * Got rid of #include "main.h", included it in common.h instead ; got
    rid of #include "config.h" in most files as well.

22 years ago* added functions in inputs to change the current program (most of
Johan Bilien [Fri, 7 Dec 2001 16:47:47 +0000 (16:47 +0000)]
* added functions in inputs to change the current program (most of
  them do nothing)

All inputs should now have a pf_setprogram function. A default one is
provided in input_programs.c.

22 years agoFix for altivec under Linux.
Christophe Massiot [Thu, 6 Dec 2001 13:53:52 +0000 (13:53 +0000)]
Fix for altivec under Linux.

22 years agoFixed dumb renaming of #define's for altivec :-p.
Christophe Massiot [Thu, 6 Dec 2001 13:46:23 +0000 (13:46 +0000)]
Fixed dumb renaming of #define's for altivec :-p.

22 years agoUpdated man page.
Christophe Massiot [Thu, 6 Dec 2001 11:18:22 +0000 (11:18 +0000)]
Updated man page.

22 years ago* mad plug-in is now built-in to avoid PIC/non-PIC collision ;
Christophe Massiot [Thu, 6 Dec 2001 10:53:42 +0000 (10:53 +0000)]
* mad plug-in is now built-in to avoid PIC/non-PIC collision ;
* Updated documentation ;
* New --desync option, to delay the video (in case of lip desynchronization) ;
this is bad, but we have no other option for the moment ;
* Clicking in vout now pauses the stream, patch courtesy of Peter Surda.

22 years agoAdded funcionality for vertical retrace sync for refresh rates 60Hz or lower
Tony Castley [Thu, 6 Dec 2001 10:29:40 +0000 (10:29 +0000)]
Added funcionality for vertical retrace sync for refresh rates 60Hz or lower
(Thanks Rudolf)
Fixed the Prev Title Bug, now works.

22 years agoFix for altivec detection (courtesy of walken).
Christophe Massiot [Wed, 5 Dec 2001 10:30:25 +0000 (10:30 +0000)]
Fix for altivec detection (courtesy of walken).

22 years ago* Added 2 fields, p_selected_program and p_new_program, to the
Johan Bilien [Wed, 5 Dec 2001 03:31:04 +0000 (03:31 +0000)]
* Added 2 fields, p_selected_program and p_new_program, to the
  input_thread_t structure, so that we may support multi programs
  streams.
* Modified inputs to take account of this change.
* Modified input_clock.c so that it doesn't refer to pp_programs[0]
  any more.

Now we should not refer to the first program, but to the selected
program. Functions to change the current program are coming.

22 years agolibmad plug-in, courtesy of Jean-Paul Saman <jpsaman@wxs.nl>.
Christophe Massiot [Tue, 4 Dec 2001 13:47:46 +0000 (13:47 +0000)]
libmad plug-in, courtesy of Jean-Paul Saman <jpsaman@wxs.nl>.

22 years agoReversed my previous patch (too buggy).
Christophe Massiot [Mon, 3 Dec 2001 17:55:45 +0000 (17:55 +0000)]
Reversed my previous patch (too buggy).

22 years ago-added eof for ts seekable streams
Stéphane Borel [Mon, 3 Dec 2001 17:34:08 +0000 (17:34 +0000)]
-added eof for ts seekable streams
-close netlist when ts input ends

22 years agoFixed a bug in my previous commit.
Christophe Massiot [Mon, 3 Dec 2001 16:43:25 +0000 (16:43 +0000)]
Fixed a bug in my previous commit.

22 years ago * Borrowed MPlayer's fast memcpy() routines. Best is autodetected, choose
Sam Hocevar [Mon, 3 Dec 2001 16:18:37 +0000 (16:18 +0000)]
  * Borrowed MPlayer's fast memcpy() routines. Best is autodetected, choose
    "--memcpy <whatever>" to choose one from c, mmx, mmxext or 3dn.
    Please test! Especially Athlon users.
  * Added versioned build-dep to libasound2-dev (Closes Debian bug #121057).
  * Updated Gtk/GNOME interfaces to use "udpstream" instead of "ts".
  * Unrolled ChangeLog.

22 years agoMore checks for GTK headers.
Christophe Massiot [Mon, 3 Dec 2001 15:58:14 +0000 (15:58 +0000)]
More checks for GTK headers.

22 years agoFixed a crash when pausing.
Christophe Massiot [Mon, 3 Dec 2001 13:58:59 +0000 (13:58 +0000)]
Fixed a crash when pausing.

22 years agoFixed numerous bugs in ES selection.
Christophe Massiot [Mon, 3 Dec 2001 11:49:04 +0000 (11:49 +0000)]
Fixed numerous bugs in ES selection.

22 years ago *) Fixed stupid bug in vout_Manage. It sometimes called SetDSequenceMatrix
Florian G. Pflug [Sun, 2 Dec 2001 18:04:29 +0000 (18:04 +0000)]
 *) Fixed stupid bug in vout_Manage. It sometimes called SetDSequenceMatrix
    when there was no valid sequence.

22 years ago-hopeless fix for the input netlist corruption bug.
Stéphane Borel [Sun, 2 Dec 2001 17:32:19 +0000 (17:32 +0000)]
-hopeless fix for the input netlist corruption bug.

Please test.

22 years agoImplemented simple BDirectWindow (DMA) support
Tony Castley [Sat, 1 Dec 2001 06:38:53 +0000 (06:38 +0000)]
Implemented simple BDirectWindow (DMA) support

22 years ago * DeleteDecoderConfig wasn't freeing (anymore) the packets left in the
Gildas Bazin [Fri, 30 Nov 2001 22:52:40 +0000 (22:52 +0000)]
 * DeleteDecoderConfig wasn't freeing (anymore) the packets left in the
    decoder fifo. This bug was creating an io_vec starving on title change
    when playing DVDs.

22 years agoIncluded strings.h to fix compile errors due to the change in threads.h
Tony Castley [Fri, 30 Nov 2001 09:49:48 +0000 (09:49 +0000)]
Included strings.h to fix compile errors due to the change in threads.h

22 years ago-Update for libdvdcss documentation
Stéphane Borel [Fri, 30 Nov 2001 00:34:03 +0000 (00:34 +0000)]
-Update for libdvdcss documentation

22 years agoRemoved a bug in the Makefile that made the CVS-snapshots building fail.
Johan Bilien [Thu, 29 Nov 2001 17:24:48 +0000 (17:24 +0000)]
Removed a bug in the Makefile that made the CVS-snapshots building fail.

22 years agoAdded vlc.app
Christophe Massiot [Thu, 29 Nov 2001 15:57:07 +0000 (15:57 +0000)]
Added vlc.app

22 years agoFixed another compilation problem.
Christophe Massiot [Thu, 29 Nov 2001 15:56:37 +0000 (15:56 +0000)]
Fixed another compilation problem.

22 years agoFixed a problem with vlc.app.
Christophe Massiot [Thu, 29 Nov 2001 15:34:28 +0000 (15:34 +0000)]
Fixed a problem with vlc.app.

22 years agoMoved #include <string.h> to macosx plug-in instead of threads.h, as in
Christophe Massiot [Thu, 29 Nov 2001 10:20:56 +0000 (10:20 +0000)]
Moved #include <string.h> to macosx plug-in instead of threads.h, as in
other plug-ins.

22 years ago *) Added "#include <string.>" to include/threads.h
Florian G. Pflug [Thu, 29 Nov 2001 01:01:48 +0000 (01:01 +0000)]
  *) Added "#include <string.>" to include/threads.h
     It' wouldn't compile on OSX without this.

  *) Removed the mutex the vout and intf thread (were supposed to use)
     for syncronizing acces to the p_vout->p_sys structure.
     The p_vout->change_lock mutex is used for syncronization now. (and
     should make synronization work)

22 years ago* Added error checking in pthread wrapper ; as a result, intf_msg.h must
Christophe Massiot [Wed, 28 Nov 2001 15:08:06 +0000 (15:08 +0000)]
* Added error checking in pthread wrapper ; as a result, intf_msg.h must
now be included *before* threads.h ;
* Changed all files to include intf_msg.h before threads.h ; while I was
at it, I update the copyright notices ;
* Removed the obsolete darwin plug-in.

22 years ago * Fixed a deadlock (bug reported by marcari).
Sam Hocevar [Tue, 27 Nov 2001 14:42:46 +0000 (14:42 +0000)]
  * Fixed a deadlock (bug reported by marcari).

22 years agoVarious (sometimes hopeless) fixes to try to improve xvideo stability.
Christophe Massiot [Tue, 27 Nov 2001 14:31:19 +0000 (14:31 +0000)]
Various (sometimes hopeless) fixes to try to improve xvideo stability.

22 years agoRemoved obsolete entry.
Christophe Massiot [Tue, 27 Nov 2001 13:06:23 +0000 (13:06 +0000)]
Removed obsolete entry.

22 years agoDocumentation updates.
Christophe Massiot [Tue, 27 Nov 2001 12:52:54 +0000 (12:52 +0000)]
Documentation updates.

22 years ago* Updated man page.
Christophe Massiot [Tue, 27 Nov 2001 12:33:20 +0000 (12:33 +0000)]
* Updated man page.
* dvd:<device>[@<raw device>] to avoid device namespace collision under
win32.

22 years agoNew syntax for the dvd input :
Christophe Massiot [Tue, 27 Nov 2001 11:44:48 +0000 (11:44 +0000)]
New syntax for the dvd input :
   dvd:<device>[:<raw device>]
The raw device must have been prepared (by root) beforehands.

22 years agoMore WIN32 portability fixes.
Christophe Massiot [Tue, 27 Nov 2001 11:14:55 +0000 (11:14 +0000)]
More WIN32 portability fixes.

22 years agoDisabled dvdread by default since it causes many portability problems.
Christophe Massiot [Tue, 27 Nov 2001 10:58:11 +0000 (10:58 +0000)]
Disabled dvdread by default since it causes many portability problems.
Enable it with --enable-dvdread.

22 years agoFixed a compilation issue under Win32
Christophe Massiot [Tue, 27 Nov 2001 10:50:35 +0000 (10:50 +0000)]
Fixed a compilation issue under Win32

22 years agoFixed a potential packet corruption in the DVD input (I suspect this
Christophe Massiot [Tue, 27 Nov 2001 10:18:33 +0000 (10:18 +0000)]
Fixed a potential packet corruption in the DVD input (I suspect this
might be the cause of the OS X problem - please confirm).

22 years ago* changed the protocol version for communication between vlc and vlcs
Marc Ariberti [Mon, 26 Nov 2001 23:06:02 +0000 (23:06 +0000)]
* changed the protocol version for communication between vlc and vlcs
from 12 to 13 (due to change from ts:// to udpstream://)

22 years ago *) changed includes from
Florian G. Pflug [Mon, 26 Nov 2001 22:28:05 +0000 (22:28 +0000)]
 *) changed includes from
    #include <dvdread/...> to
    #include "..."

 *) Darwin doesn't have off64_t, stat64, lseek64. Added
    #ifdef SYS_DARWIN
    #define off64_t off_t
    ....
    #endif
    to dvdread.c

 *) Fixed stupid bug in vout_macos.x. On startup, it would
    try to free a non-existant QuickTime Sequence. This could be
    the reasons for (some?) of the crashes at startup.

22 years agoReworked Keith Packard's raw device patch. The name of the raw device
Christophe Massiot [Mon, 26 Nov 2001 15:56:36 +0000 (15:56 +0000)]
Reworked Keith Packard's raw device patch. The name of the raw device
is in the environment variable DVDCSS_RAW_DEVICE.

Untested (as usual :-). Feedback welcome.