gegl r2348 - in branches/branch_zhangjb/operations/frequency: . tools



Author: zhangjb
Date: Fri May 23 16:59:22 2008
New Revision: 2348
URL: http://svn.gnome.org/viewvc/gegl?rev=2348&view=rev

Log:
some small modifies.


Modified:
   branches/branch_zhangjb/operations/frequency/dft-grey.c
   branches/branch_zhangjb/operations/frequency/tools/dft.c

Modified: branches/branch_zhangjb/operations/frequency/dft-grey.c
==============================================================================
--- branches/branch_zhangjb/operations/frequency/dft-grey.c	(original)
+++ branches/branch_zhangjb/operations/frequency/dft-grey.c	Fri May 23 16:59:22 2008
@@ -125,7 +125,7 @@
   operation_class->name = "dft-grey";
   operation_class->categories = "frequency";
   operation_class->description
-    = "Perform 2-D inverse Discrete Fourier Transform for a grey image.";
+    = "Perform 2-D Discrete Fourier Transform for a grey image.";
 }
 
 #endif

Modified: branches/branch_zhangjb/operations/frequency/tools/dft.c
==============================================================================
--- branches/branch_zhangjb/operations/frequency/tools/dft.c	(original)
+++ branches/branch_zhangjb/operations/frequency/tools/dft.c	Fri May 23 16:59:22 2008
@@ -25,13 +25,8 @@
 #include "gegl.h"
 #include <fftw3.h>
 
-gboolean
-dft(gdouble *src_buf, fftw_complex *dst_buf_pointer, gint width, gint height);
-gboolean 
-idft(fftw_complex *src_buf,
-     gdouble *dst_buf,
-     gint width,
-     gint height);
+gboolean dft(gdouble *src_buf, fftw_complex *dst_buf_pointer, gint width, gint height);
+gboolean idft(fftw_complex *src_buf, gdouble *dst_buf, gint width, gint height);
 
 gboolean
 dft(gdouble *src_buf, fftw_complex *dst_buf, gint width, gint height)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]