From 792cd924f6680f4fd9a51e7d74eb910f3c87858f Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 7 Jul 2003 17:12:45 +0000 Subject: warning fixes git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10393 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpeg2/idct.c | 4 ++-- libmpeg2/idct_alpha.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libmpeg2/idct.c b/libmpeg2/idct.c index fd1515b160..c91ac535ba 100644 --- a/libmpeg2/idct.c +++ b/libmpeg2/idct.c @@ -60,7 +60,7 @@ do { \ } while (0) #endif -static void inline idct_row (int16_t * const block) +static inline void idct_row (int16_t * const block) { int d0, d1, d2, d3; int a0, a1, a2, a3, b0, b1, b2, b3; @@ -113,7 +113,7 @@ static void inline idct_row (int16_t * const block) block[7] = (a0 - b0) >> 8; } -static void inline idct_col (int16_t * const block) +static inline void idct_col (int16_t * const block) { int d0, d1, d2, d3; int a0, a1, a2, a3, b0, b1, b2, b3; diff --git a/libmpeg2/idct_alpha.c b/libmpeg2/idct_alpha.c index fc29112592..a55681f552 100644 --- a/libmpeg2/idct_alpha.c +++ b/libmpeg2/idct_alpha.c @@ -57,7 +57,7 @@ do { \ } while (0) #endif -static void inline idct_row (int16_t * const block) +static inline void idct_row (int16_t * const block) { uint64_t l, r; int_fast32_t d0, d1, d2, d3; @@ -114,7 +114,7 @@ static void inline idct_row (int16_t * const block) block[7] = (a0 - b0) >> 8; } -static void inline idct_col (int16_t * const block) +static inline void idct_col (int16_t * const block) { int_fast32_t d0, d1, d2, d3; int_fast32_t a0, a1, a2, a3, b0, b1, b2, b3; -- cgit v1.2.3