[Scummvm-cvs-logs] scummvm master -> f1ec648e456f94bb8d0fc7058192e1b988050976

clone2727 clone2727 at gmail.com
Sun Feb 1 11:03:36 CET 2015


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
ed037a527c COMMON: Add getRevTab to FFT
f1ec648e45 Merge pull request #584 from bgK/fft-getrevtab


Commit: ed037a527cae1c90baca7ed3bdfae755088395d7
    https://github.com/scummvm/scummvm/commit/ed037a527cae1c90baca7ed3bdfae755088395d7
Author: Bastien Bouclet (bastien.bouclet at gmail.com)
Date: 2015-02-01T10:35:23+01:00

Commit Message:
COMMON: Add getRevTab to FFT

Changed paths:
    common/fft.cpp
    common/fft.h



diff --git a/common/fft.cpp b/common/fft.cpp
index ac73860..477f7ac 100644
--- a/common/fft.cpp
+++ b/common/fft.cpp
@@ -61,6 +61,10 @@ FFT::~FFT() {
 	delete[] _tmpBuf;
 }
 
+const uint16 *FFT::getRevTab() const {
+	return _revTab;
+}
+
 void FFT::permute(Complex *z) {
 	int np = 1 << _bits;
 
diff --git a/common/fft.h b/common/fft.h
index 6eb72c3..ed66d32 100644
--- a/common/fft.h
+++ b/common/fft.h
@@ -47,6 +47,8 @@ public:
 	FFT(int bits, int inverse);
 	~FFT();
 
+	const uint16 *getRevTab() const;
+
 	/** Do the permutation needed BEFORE calling calc(). */
 	void permute(Complex *z);
 


Commit: f1ec648e456f94bb8d0fc7058192e1b988050976
    https://github.com/scummvm/scummvm/commit/f1ec648e456f94bb8d0fc7058192e1b988050976
Author: clone2727 (clone2727 at gmail.com)
Date: 2015-02-01T05:02:41-05:00

Commit Message:
Merge pull request #584 from bgK/fft-getrevtab

COMMON: Add getRevTab to FFT

Changed paths:
    common/fft.cpp
    common/fft.h









More information about the Scummvm-git-logs mailing list