diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-12-22 14:32:11 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-03-13 08:12:44 -0700 |
commit | 05563ccacc98fd185affdbf8cbaf094caf36b852 (patch) | |
tree | 80b0969d076906addcbb8f6fecfd5ef53d654cb3 /libavcodec/motionpixels_tablegen.h | |
parent | 635ec127d4bc0c49ae0ac4a50acd3da1ca8c2150 (diff) | |
download | ffmpeg-05563ccacc98fd185affdbf8cbaf094caf36b852.tar.gz |
dsputil: cosmetics: Lose camelCase on ff_cropTbl and ff_squareTbl names
Also switch from "tbl" to "tab" name suffixes.
Diffstat (limited to 'libavcodec/motionpixels_tablegen.h')
-rw-r--r-- | libavcodec/motionpixels_tablegen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/motionpixels_tablegen.h b/libavcodec/motionpixels_tablegen.h index cbf56c8694..e6c32c7dec 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; |