diff options
author | phintuka <phintuka> | 2010-03-28 05:34:45 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-03-28 05:34:45 +0000 |
commit | 07b8f118a1b4f3dc329fd55006837313452565b9 (patch) | |
tree | 75f176cb1c46cc7f51c4b872dd4c809f88ea3592 | |
parent | 953a1a50adde7687fbccade0de4abef7bc498487 (diff) | |
download | xineliboutput-07b8f118a1b4f3dc329fd55006837313452565b9.tar.gz xineliboutput-07b8f118a1b4f3dc329fd55006837313452565b9.tar.bz2 |
Fixed bug #2974620 : vdr-sxfe segfaults when executing GRAB
-rw-r--r-- | xine_frontend.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xine_frontend.c b/xine_frontend.c index a6bca71d..d3f6144a 100644 --- a/xine_frontend.c +++ b/xine_frontend.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_frontend.c,v 1.113 2010-03-01 07:13:30 phintuka Exp $ + * $Id: xine_frontend.c,v 1.114 2010-03-28 05:34:45 phintuka Exp $ * */ @@ -1744,6 +1744,7 @@ static char *frame_compress_jpeg(fe_t *this, int *size, int quality, vo_frame_t jpeg_set_defaults(&cinfo); jpeg_set_quality(&cinfo, quality, TRUE); cinfo.raw_data_in = TRUE; + cinfo.do_fancy_downsampling = FALSE; jpeg_set_colorspace(&cinfo, JCS_YCbCr); cinfo.comp_info[0].h_samp_factor = |