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/bit_depth_template.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/bit_depth_template.c')
-rw-r--r-- | libavcodec/bit_depth_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bit_depth_template.c b/libavcodec/bit_depth_template.c index 8fc826b7d2..79bbbbba51 100644 --- a/libavcodec/bit_depth_template.c +++ b/libavcodec/bit_depth_template.c @@ -70,7 +70,7 @@ # define pixel4 uint32_t # define dctcoef int16_t -# define INIT_CLIP const uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; +# define INIT_CLIP const uint8_t *cm = ff_crop_tab + MAX_NEG_CROP; # define no_rnd_avg_pixel4 no_rnd_avg32 # define rnd_avg_pixel4 rnd_avg32 # define AV_RN2P AV_RN16 |