Author: post
Date: 2012-01-22 15:16:24 +0100 (Sun, 22 Jan 2012)
New Revision: 4107

Modified:
   trunk/plugins/lensfun/lensfun.c
Log:
Remove unused variable.

Modified: trunk/plugins/lensfun/lensfun.c
===================================================================
--- trunk/plugins/lensfun/lensfun.c     2012-01-22 14:16:03 UTC (rev 4106)
+++ trunk/plugins/lensfun/lensfun.c     2012-01-22 14:16:24 UTC (rev 4107)
@@ -338,7 +338,6 @@
 
        gboolean sse2_available = !!(rs_detect_cpu_features() & 
RS_CPU_FLAG_SSE2) && is_sse2_compiled();
        gboolean avx_available = !!(rs_detect_cpu_features() & RS_CPU_FLAG_AVX) 
&& is_avx_compiled();
-       gint current_xy[2] __attribute__ ((aligned (16))) = {0,0};
 
        if (t->input->pixelsize != 4)
                sse2_available = avx_available = FALSE;
@@ -360,7 +359,6 @@
 
                        if (avx_available)
                        {
-                               current_xy[1] = y;
                                for(x = 0; x < t->roi->width ; x++)
                                {
                                        
rs_image16_bilinear_nomeasure_avx(t->input, target, l_pos);
@@ -370,7 +368,6 @@
                        } 
                        else if (sse2_available)
                        {
-                               current_xy[1] = y;
                                for(x = 0; x < t->roi->width ; x++)
                                {
                                        
rs_image16_bilinear_nomeasure_sse2(t->input, target, l_pos);


_______________________________________________
Rawstudio-commit mailing list
[email protected]
http://rawstudio.org/cgi-bin/mailman/listinfo/rawstudio-commit

Reply via email to