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/imgconvert.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/imgconvert.c')
-rw-r--r-- | libavcodec/imgconvert.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index 178b0cbe07..855059a870 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgconvert.c @@ -1241,7 +1241,7 @@ static uint8_t c_jpeg_to_ccir[256]; static void img_convert_init(void) { int i; - uint8_t *cm = cropTbl + MAX_NEG_CROP; + uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; for(i = 0;i < 256; i++) { y_ccir_to_jpeg[i] = Y_CCIR_TO_JPEG(i); @@ -2653,7 +2653,7 @@ static void deinterlace_line(uint8_t *dst, int size) { #ifndef HAVE_MMX - uint8_t *cm = cropTbl + MAX_NEG_CROP; + uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; int sum; for(;size > 0;size--) { @@ -2696,7 +2696,7 @@ static void deinterlace_line_inplace(uint8_t *lum_m4, uint8_t *lum_m3, uint8_t * int size) { #ifndef HAVE_MMX - uint8_t *cm = cropTbl + MAX_NEG_CROP; + uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; int sum; for(;size > 0;size--) { |