[FFmpeg-cvslog] simple_idct_alpha: Drop some useless casts.

Diego Biurrun git at videolan.org
Thu Apr 28 04:28:31 CEST 2011


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Wed Apr 27 15:36:21 2011 +0200| [81afa5a2740b94ed1db8ad980e37deecb5f8e573] | committer: Diego Biurrun

simple_idct_alpha: Drop some useless casts.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=81afa5a2740b94ed1db8ad980e37deecb5f8e573
---

 libavcodec/alpha/simple_idct_alpha.c |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/libavcodec/alpha/simple_idct_alpha.c b/libavcodec/alpha/simple_idct_alpha.c
index 8f5c134..bb76c1e 100644
--- a/libavcodec/alpha/simple_idct_alpha.c
+++ b/libavcodec/alpha/simple_idct_alpha.c
@@ -33,13 +33,13 @@
 // cos(i * M_PI / 16) * sqrt(2) * (1 << 14)
 // W4 is actually exactly 16384, but using 16383 works around
 // accumulating rounding errors for some encoders
-#define W1 ((int_fast32_t) 22725)
-#define W2 ((int_fast32_t) 21407)
-#define W3 ((int_fast32_t) 19266)
-#define W4 ((int_fast32_t) 16383)
-#define W5 ((int_fast32_t) 12873)
-#define W6 ((int_fast32_t)  8867)
-#define W7 ((int_fast32_t)  4520)
+#define W1 22725
+#define W2 21407
+#define W3 19266
+#define W4 16383
+#define W5 12873
+#define W6  8867
+#define W7  4520
 #define ROW_SHIFT 11
 #define COL_SHIFT 20
 



More information about the ffmpeg-cvslog mailing list