Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-12-22 17:32:11 +0400
committerDiego Biurrun <diego@biurrun.de>2014-03-13 19:12:44 +0400
commit05563ccacc98fd185affdbf8cbaf094caf36b852 (patch)
tree80b0969d076906addcbb8f6fecfd5ef53d654cb3 /libavcodec/rv30.c
parent635ec127d4bc0c49ae0ac4a50acd3da1ca8c2150 (diff)
dsputil: cosmetics: Lose camelCase on ff_cropTbl and ff_squareTbl names
Also switch from "tbl" to "tab" name suffixes.
Diffstat (limited to 'libavcodec/rv30.c')
-rw-r--r--libavcodec/rv30.c2
1 files changed, 1 insertions, 1 deletions
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++){