]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/motionpixels_tablegen.h
lavc: support extracting audio service type from side data
[ffmpeg] / libavcodec / motionpixels_tablegen.h
index cbf56c869447c1b186aecac968085689d2b6e8c6..e6c32c7dec33f2de67d2a8b536eba687059a9fd6 100644 (file)
@@ -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;