View | Details | Raw Unified | Return to bug 146311
Collapse All | Expand All

(-)multimedia/transcode/Makefile (-1 / +1 lines)
Lines 7-13 Link Here
7
7
8
PORTNAME=	transcode
8
PORTNAME=	transcode
9
PORTVERSION=	1.1.5
9
PORTVERSION=	1.1.5
10
PORTREVISION=	7
10
PORTREVISION=	8
11
CATEGORIES=	multimedia
11
CATEGORIES=	multimedia
12
MASTER_SITES=	${MASTER_SITE_BERLIOS} \
12
MASTER_SITES=	${MASTER_SITE_BERLIOS} \
13
		http://fromani.exit1.org/
13
		http://fromani.exit1.org/
(-)multimedia/transcode/files/patch-export__export_jpg.c (+16 lines)
Line 0 Link Here
1
http://bugs.gentoo.org/show_bug.cgi?id=294488
2
3
Patch by: Salah Coronya
4
5
Fix segmentation fault with jpeg-7 and above where dinfo.do_fancy_upsampling isn't set by default to FALSE anymore.
6
7
--- export/export_jpg.c
8
+++ export/export_jpg.c
9
@@ -91,6 +91,7 @@
10
 
11
   jpeg_set_quality(&encinfo, quality, TRUE);
12
   encinfo.raw_data_in = TRUE;
13
+  encinfo.do_fancy_downsampling = FALSE;
14
   encinfo.in_color_space = JCS_YCbCr;
15
 
16
   encinfo.comp_info[0].h_samp_factor = 2;

Return to bug 146311