comparison dsputil.c @ 10421:6ca681cc3264 libavcodec

Remove a meaningless 'inline' from add_hfyu_left_prediction_bgr32_c().
author astrange
date Fri, 16 Oct 2009 23:06:55 +0000
parents 442ab0c41eae
children 94595d0e617c
comparison
equal deleted inserted replaced
10420:442ab0c41eae 10421:6ca681cc3264
3634 #else 3634 #else
3635 #define B 0 3635 #define B 0
3636 #define G 1 3636 #define G 1
3637 #define R 2 3637 #define R 2
3638 #endif 3638 #endif
3639 static inline void add_hfyu_left_prediction_bgr32_c(uint8_t *dst, const uint8_t *src, int w, int *red, int *green, int *blue){ 3639 static void add_hfyu_left_prediction_bgr32_c(uint8_t *dst, const uint8_t *src, int w, int *red, int *green, int *blue){
3640 int i; 3640 int i;
3641 int r,g,b; 3641 int r,g,b;
3642 r= *red; 3642 r= *red;
3643 g= *green; 3643 g= *green;
3644 b= *blue; 3644 b= *blue;