X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fmotionpixels_tablegen.h;h=e6c32c7dec33f2de67d2a8b536eba687059a9fd6;hb=a536a4e4bc52d05f59869761337452fb1f1977f6;hp=cbf56c869447c1b186aecac968085689d2b6e8c6;hpb=153382e1b6b428a1dcb8dc3f06f64a6959d722c5;p=ffmpeg diff --git a/libavcodec/motionpixels_tablegen.h b/libavcodec/motionpixels_tablegen.h index cbf56c86944..e6c32c7dec3 100644 --- a/libavcodec/motionpixels_tablegen.h +++ b/libavcodec/motionpixels_tablegen.h @@ -30,7 +30,7 @@ typedef struct YuvPixel { } YuvPixel; static int mp_yuv_to_rgb(int y, int v, int u, int clip_rgb) { - static const uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; + static const uint8_t *cm = ff_crop_tab + MAX_NEG_CROP; int r, g, b; r = (1000 * y + 701 * v) / 1000;