diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-07-11 20:16:02 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-07-11 20:16:02 +0000 |
commit | 1d1c29e5c5ebd797fc94273cb9108cf395cb0188 (patch) | |
tree | 164c96d51ae6c762faf181d8f63bf88e7f144b37 /src | |
parent | a0fd4f11c2827ca2248d45b509c01735814c7233 (diff) | |
download | xine-lib-1d1c29e5c5ebd797fc94273cb9108cf395cb0188.tar.gz xine-lib-1d1c29e5c5ebd797fc94273cb9108cf395cb0188.tar.bz2 |
fixed crash in xv plugin on displays that have the Xv extension but no xv-capable driver
CVS patchset: 270
CVS date: 2001/07/11 20:16:02
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/video_out_xv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c index 795476484..c9dab06f8 100644 --- a/src/video_out/video_out_xv.c +++ b/src/video_out/video_out_xv.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out_xv.c,v 1.52 2001/07/10 19:33:05 guenter Exp $ + * $Id: video_out_xv.c,v 1.53 2001/07/11 20:16:02 guenter Exp $ * * video_out_xv.c, X11 video extension interface for xine * @@ -847,7 +847,7 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) { "I couldn't find a usable yuv12 port.\n"); printf (" Looks like your graphics hardware " "driver doesn't support Xv?!\n"); - XvFreeAdaptorInfo (adaptor_info); + /* XvFreeAdaptorInfo (adaptor_info); this crashed on me (gb)*/ return NULL; } else printf ("video_out_xv: using Xv port %ld for hardware " |