]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/vp3dsp.c
Cosmetics
[ffmpeg] / libavcodec / vp3dsp.c
index 92dc6ad5472ecbbf5c02a6073e9940e0abfafa9b..fc8f54d8d632158238feb67b2ed20699f701762a 100644 (file)
@@ -24,7 +24,6 @@
  * source code.
  */
 
-#include "common.h"
 #include "avcodec.h"
 #include "dsputil.h"
 
 
 #define M(a,b) (((a) * (b))>>16)
 
-static always_inline void idct(uint8_t *dst, int stride, int16_t *input, int type)
+static av_always_inline void idct(uint8_t *dst, int stride, int16_t *input, int type)
 {
     int16_t *ip = input;
-    uint8_t *cm = cropTbl + MAX_NEG_CROP;
+    uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
 
     int A, B, C, D, Ad, Bd, Cd, Dd, E, F, G, H;
     int Ed, Gd, Add, Bdd, Fd, Hd;