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 /vhook | |
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 'vhook')
-rw-r--r-- | vhook/fish.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vhook/fish.c b/vhook/fish.c index a2dbd2f27b..2a30d2847d 100644 --- a/vhook/fish.c +++ b/vhook/fish.c @@ -230,7 +230,7 @@ static void get_hsv(HSV *hsv, int r, int g, int b) void Process(void *ctx, AVPicture *picture, enum PixelFormat pix_fmt, int width, int height, int64_t pts) { ContextInfo *ci = (ContextInfo *) ctx; - uint8_t *cm = cropTbl + MAX_NEG_CROP; + uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; int rowsize = picture->linesize[0]; #if 0 |