diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-12 20:08:09 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-12 20:08:09 +0000 |
commit | 55fde95e3bfc0e337a482e2508c3ce60009d8c7b (patch) | |
tree | 1c4bb8aa572f33e0d5bbb1f7a081c4630a61a55b /libavcodec/h264.c | |
parent | d136d2fceabf58fbbadc07b4a03bd25d193849ff (diff) | |
download | ffmpeg-55fde95e3bfc0e337a482e2508c3ce60009d8c7b.tar.gz |
rename cropTbl -> ff_cropTbl
Originally committed as revision 6992 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 8a441b206d..ad23ae120a 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -2451,7 +2451,7 @@ static void pred16x16_128_dc_c(uint8_t *src, int stride){ static inline void pred16x16_plane_compat_c(uint8_t *src, int stride, const int svq3){ int i, j, k; int a; - uint8_t *cm = cropTbl + MAX_NEG_CROP; + uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; const uint8_t * const src0 = src+7-stride; const uint8_t *src1 = src+8*stride-1; const uint8_t *src2 = src1-2*stride; // == src+6*stride-1; @@ -2594,7 +2594,7 @@ static void pred8x8_dc_c(uint8_t *src, int stride){ static void pred8x8_plane_c(uint8_t *src, int stride){ int j, k; int a; - uint8_t *cm = cropTbl + MAX_NEG_CROP; + uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; const uint8_t * const src0 = src+3-stride; const uint8_t *src1 = src+4*stride-1; const uint8_t *src2 = src1-2*stride; // == src+2*stride-1; |