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/rv30.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/rv30.c') diff --git a/libavcodec/rv30.c b/libavcodec/rv30.c index 82ad7d4a29..f23b83d93f 100644 --- a/libavcodec/rv30.c +++ b/libavcodec/rv30.c @@ -127,7 +127,7 @@ static int rv30_decode_mb_info(RV34DecContext *r) static inline void rv30_weak_loop_filter(uint8_t *src, const int step, const int stride, const int lim) { - const uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; + const uint8_t *cm = ff_crop_tab + MAX_NEG_CROP; int i, diff; for(i = 0; i < 4; i++){ -- cgit v1.2.3