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/dsputil.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/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index cdc2437705..2e258ac4f6 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -43,8 +43,8 @@ extern const uint8_t ff_zigzag248_direct[64]; #define MAX_NEG_CROP 1024 /* temporary */ -extern uint32_t ff_squareTbl[512]; -extern const uint8_t ff_cropTbl[256 + 2 * MAX_NEG_CROP]; +extern uint32_t ff_square_tab[512]; +extern const uint8_t ff_crop_tab[256 + 2 * MAX_NEG_CROP]; void ff_put_pixels8x8_c(uint8_t *dst, uint8_t *src, ptrdiff_t stride); void ff_avg_pixels8x8_c(uint8_t *dst, uint8_t *src, ptrdiff_t stride); |