From 05563ccacc98fd185affdbf8cbaf094caf36b852 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 22 Dec 2013 14:32:11 +0100 Subject: dsputil: cosmetics: Lose camelCase on ff_cropTbl and ff_squareTbl names Also switch from "tbl" to "tab" name suffixes. --- libavcodec/dsputil.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/dsputil.h') 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); -- cgit v1.2.3