]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/png.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / png.c
index ecca31e9609ada29a32c1fd64d5bf936c6eb1932..332701c68a0911c2bbf16cadbf1a220e217ab600 100644 (file)
@@ -39,11 +39,6 @@ static const uint8_t ff_png_pass_xshift[NB_PASSES] = {
     3, 3, 2, 2, 1, 1, 0
 };
 
-/* Mask to determine which pixels are valid in a pass */
-const uint8_t ff_png_pass_mask[NB_PASSES] = {
-    0x01, 0x01, 0x11, 0x11, 0x55, 0x55, 0xff,
-};
-
 void *ff_png_zalloc(void *opaque, unsigned int items, unsigned int size)
 {
     if(items >= UINT_MAX / size)