diff options
author | Alexander Strange <astrange@ithinksw.com> | 2009-10-16 23:06:55 +0000 |
---|---|---|
committer | Alexander Strange <astrange@ithinksw.com> | 2009-10-16 23:06:55 +0000 |
commit | f076fe44223be8613a5c79137dd8984a0b14ce23 (patch) | |
tree | b80891bc75d1b1f11f4d340d6aa4bf1d45866b9b | |
parent | 2d4bbdeceef0e37713c6116a6192aa154214a5d1 (diff) | |
download | ffmpeg-f076fe44223be8613a5c79137dd8984a0b14ce23.tar.gz |
Remove a meaningless 'inline' from add_hfyu_left_prediction_bgr32_c().
Originally committed as revision 20260 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/dsputil.c | 2 |
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; |