From f2e246f576cd53e75b3696e1db418be98fbda76f Mon Sep 17 00:00:00 2001 From: Diego Elio Pettenò Date: Tue, 25 Jan 2011 02:29:41 +0100 Subject: Make ff_png_pass_xmin and ff_png_pass_xshift static to png.c. Signed-off-by: Janne Grunau --- libavcodec/png.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/png.c') diff --git a/libavcodec/png.c b/libavcodec/png.c index 534dc68bf1..d7898c0a41 100644 --- a/libavcodec/png.c +++ b/libavcodec/png.c @@ -31,12 +31,12 @@ const uint8_t ff_png_pass_ymask[NB_PASSES] = { }; /* minimum x value */ -const uint8_t ff_png_pass_xmin[NB_PASSES] = { +static const uint8_t ff_png_pass_xmin[NB_PASSES] = { 0, 4, 0, 2, 0, 1, 0 }; /* x shift to get row width */ -const uint8_t ff_png_pass_xshift[NB_PASSES] = { +static const uint8_t ff_png_pass_xshift[NB_PASSES] = { 3, 3, 2, 2, 1, 1, 0 }; -- cgit v1.2.3