Browse Source

Remove a meaningless 'inline' from add_hfyu_left_prediction_bgr32_c().

Originally committed as revision 20260 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Alexander Strange 15 years ago
parent
commit
f076fe4422
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/dsputil.c

+ 1
- 1
libavcodec/dsputil.c View File

@@ -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;


Loading…
Cancel
Save