summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorAlexander Strange <astrange@ithinksw.com>2009-10-16 23:06:55 +0000
committerAlexander Strange <astrange@ithinksw.com>2009-10-16 23:06:55 +0000
commitf076fe44223be8613a5c79137dd8984a0b14ce23 (patch)
treeb80891bc75d1b1f11f4d340d6aa4bf1d45866b9b /libavcodec
parent2d4bbdeceef0e37713c6116a6192aa154214a5d1 (diff)
Remove a meaningless 'inline' from add_hfyu_left_prediction_bgr32_c().
Originally committed as revision 20260 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/dsputil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c
index e71fed2877..be35ec3cff 100644
--- a/libavcodec/dsputil.c
+++ b/libavcodec/dsputil.c
@@ -3636,7 +3636,7 @@ static int add_hfyu_left_prediction_c(uint8_t *dst, const uint8_t *src, int w, i
#define G 1
#define R 2
#endif
-static inline void add_hfyu_left_prediction_bgr32_c(uint8_t *dst, const uint8_t *src, int w, int *red, int *green, int *blue){
+static void add_hfyu_left_prediction_bgr32_c(uint8_t *dst, const uint8_t *src, int w, int *red, int *green, int *blue){
int i;
int r,g,b;
r= *red;