Make ff_png_pass_xmin and ff_png_pass_xshift static to png.c.
authorDiego Elio Pettenò <flameeyes@gmail.com>
Tue, 25 Jan 2011 01:29:41 +0000 (02:29 +0100)
committerJanne Grunau <janne-ffmpeg@jannau.net>
Tue, 25 Jan 2011 20:48:03 +0000 (21:48 +0100)
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
libavcodec/png.c
libavcodec/png.h

index 534dc68..d7898c0 100644 (file)
@@ -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
 };
 
index 7c0ab9f..bab5224 100644 (file)
@@ -55,12 +55,6 @@ extern const uint8_t ff_mngsig[8];
 /* Mask to determine which y pixels are valid in a pass */
 extern const uint8_t ff_png_pass_ymask[NB_PASSES];
 
-/* minimum x value */
-extern const uint8_t ff_png_pass_xmin[NB_PASSES];
-
-/* x shift to get row width */
-extern const uint8_t ff_png_pass_xshift[NB_PASSES];
-
 /* Mask to determine which pixels are valid in a pass */
 extern const uint8_t ff_png_pass_mask[NB_PASSES];