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/h264pred.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/h264pred.c')
-rw-r--r-- | libavcodec/h264pred.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/h264pred.c b/libavcodec/h264pred.c index 0d47897dff..531760c145 100644 --- a/libavcodec/h264pred.c +++ b/libavcodec/h264pred.c @@ -269,7 +269,7 @@ static void pred4x4_horizontal_up_rv40_nodown_c(uint8_t *src, static void pred4x4_tm_vp8_c(uint8_t *src, const uint8_t *topright, ptrdiff_t stride) { - const uint8_t *cm = ff_cropTbl + MAX_NEG_CROP - src[-1-stride]; + const uint8_t *cm = ff_crop_tab + MAX_NEG_CROP - src[-1-stride]; uint8_t *top = src-stride; int y; @@ -295,7 +295,7 @@ static void pred16x16_plane_rv40_c(uint8_t *src, ptrdiff_t stride) static void pred16x16_tm_vp8_c(uint8_t *src, ptrdiff_t stride) { - const uint8_t *cm = ff_cropTbl + MAX_NEG_CROP - src[-1-stride]; + const uint8_t *cm = ff_crop_tab + MAX_NEG_CROP - src[-1-stride]; uint8_t *top = src-stride; int y; @@ -377,7 +377,7 @@ static void pred8x8_dc_rv40_c(uint8_t *src, ptrdiff_t stride) static void pred8x8_tm_vp8_c(uint8_t *src, ptrdiff_t stride) { - const uint8_t *cm = ff_cropTbl + MAX_NEG_CROP - src[-1-stride]; + const uint8_t *cm = ff_crop_tab + MAX_NEG_CROP - src[-1-stride]; uint8_t *top = src-stride; int y; |