diff png.h @ 8250:cf4d575b1982 libavcodec

Delete unnecessary 'extern' keywords.
author diego
date Wed, 03 Dec 2008 15:23:30 +0000
parents c4a4495715dd
children 04423b2f6e0b
line wrap: on
line diff
--- a/png.h	Wed Dec 03 03:34:31 2008 +0000
+++ b/png.h	Wed Dec 03 15:23:30 2008 +0000
@@ -64,14 +64,13 @@
 /* Mask to determine which pixels are valid in a pass */
 extern const uint8_t ff_png_pass_mask[NB_PASSES];
 
-extern void *ff_png_zalloc(void *opaque, unsigned int items,
-                           unsigned int size);
+void *ff_png_zalloc(void *opaque, unsigned int items, unsigned int size);
 
-extern void ff_png_zfree(void *opaque, void *ptr);
+void ff_png_zfree(void *opaque, void *ptr);
 
-extern int ff_png_get_nb_channels(int color_type);
+int ff_png_get_nb_channels(int color_type);
 
 /* compute the row size of an interleaved pass */
-extern int ff_png_pass_row_size(int pass, int bits_per_pixel, int width);
+int ff_png_pass_row_size(int pass, int bits_per_pixel, int width);
 
 #endif /* AVCODEC_PNG_H */