diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-12 21:48:04 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-12 21:48:04 +0000 |
commit | 1d5039574693da5eff80f8f50a283b5261fd5358 (patch) | |
tree | d7f3fcc06fcd45b10e3f4493789260bd1750ef09 /libavcodec/snow.c | |
parent | e275b7efd94d75f697af6b2a90b799cd06dad441 (diff) | |
download | ffmpeg-1d5039574693da5eff80f8f50a283b5261fd5358.tar.gz |
rename squareTbl -> ff_squareTbl
Originally committed as revision 6995 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/snow.c')
-rw-r--r-- | libavcodec/snow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c index dbff5d4a59..6bc9a8f1ae 100644 --- a/libavcodec/snow.c +++ b/libavcodec/snow.c @@ -1902,7 +1902,7 @@ static int pix_sum(uint8_t * pix, int line_size, int w) static int pix_norm1(uint8_t * pix, int line_size, int w) { int s, i, j; - uint32_t *sq = squareTbl + 256; + uint32_t *sq = ff_squareTbl + 256; s = 0; for (i = 0; i < w; i++) { |