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/cavs.c | |
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/cavs.c')
-rw-r--r-- | libavcodec/cavs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cavs.c b/libavcodec/cavs.c index 5a81089931..4166b9e2f6 100644 --- a/libavcodec/cavs.c +++ b/libavcodec/cavs.c @@ -275,7 +275,7 @@ static void intra_pred_plane(uint8_t *d, uint8_t *top, uint8_t *left, int stride int x, y, ia; int ih = 0; int iv = 0; - const uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; + const uint8_t *cm = ff_crop_tab + MAX_NEG_CROP; for (x = 0; x < 4; x++) { ih += (x + 1) * (top[5 + x] - top[3 - x]); |