]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/motionpixels_tablegen.h
h264: reject unsupported 422 9 bit streams
[ffmpeg] / libavcodec / motionpixels_tablegen.h
index b56dec64a413612cdd56be213d230930996933eb..b9802e589dfbc66ec8c1a141bc2d7bb413bf7ffe 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;
+    const uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
     int r, g, b;
 
     r = (1000 * y + 701 * v) / 1000;