diff options
author | Rocky Bernstein <rockyb@users.sourceforge.net> | 2003-11-06 03:28:18 +0000 |
---|---|---|
committer | Rocky Bernstein <rockyb@users.sourceforge.net> | 2003-11-06 03:28:18 +0000 |
commit | be592ddb6e7a2aabf7195ff729e32ec887f37849 (patch) | |
tree | 87b7a162251490b944fa7c427afe191e3b74a473 /src | |
parent | c4ae2643f63268cd2b82fe67447cba4437f8b920 (diff) | |
download | xine-lib-be592ddb6e7a2aabf7195ff729e32ec887f37849.tar.gz xine-lib-be592ddb6e7a2aabf7195ff729e32ec887f37849.tar.bz2 |
Need to change libvcdinfo to be more robust when there are problems
reading the extended PSD. Given that area-highlighting and selection
features in the extended PSD haven't been implemented, it's best then
to not try to read this at all.
CVS patchset: 5699
CVS date: 2003/11/06 03:28:18
Diffstat (limited to 'src')
-rw-r--r-- | src/input/vcd/vcdio.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/input/vcd/vcdio.c b/src/input/vcd/vcdio.c index c4b127935..5baa3ee2d 100644 --- a/src/input/vcd/vcdio.c +++ b/src/input/vcd/vcdio.c @@ -1,5 +1,5 @@ /* - $Id: vcdio.c,v 1.1 2003/10/13 11:47:11 f1rmb Exp $ + $Id: vcdio.c,v 1.2 2003/11/06 03:28:18 rockyb Exp $ Copyright (C) 2002,2003 Rocky Bernstein <rocky@panix.com> @@ -114,8 +114,17 @@ vcdio_open(vcdplayer_input_t *this, char *intended_vcd_device) vcdinfo_visit_lot (obj, false); +#if FIXED + /* + We need to change libvcdinfo to be more robust when there are + problems reading the extended PSD. Given that area-highlighting and + selection features in the extended PSD haven't been implemented, + it's best then to not try to read this at all. + */ if (vcdinfo_get_psd_x_size(obj)) vcdinfo_visit_lot (obj, true); +#endif + } /* |