Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-06-15 03:18:07 +0400
committerPaul B Mahol <onemda@gmail.com>2012-06-15 04:53:34 +0400
commita09ae4ef654b409cc21d3cae4d691988164888c6 (patch)
treea6686c48091522e5c8d3264b46cdb38fedaa418d /libavcodec/png.c
parent59c122b3b0a00808e3c4f534927755d89e7baa62 (diff)
Remove duplicated png and mng signatures.
Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/png.c')
-rw-r--r--libavcodec/png.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/png.c b/libavcodec/png.c
index 332701c68a..a4287bd7e2 100644
--- a/libavcodec/png.c
+++ b/libavcodec/png.c
@@ -21,9 +21,6 @@
#include "avcodec.h"
#include "png.h"
-const uint8_t ff_pngsig[8] = {137, 80, 78, 71, 13, 10, 26, 10};
-const uint8_t ff_mngsig[8] = {138, 77, 78, 71, 13, 10, 26, 10};
-
/* Mask to determine which y pixels are valid in a pass */
const uint8_t ff_png_pass_ymask[NB_PASSES] = {
0x80, 0x80, 0x08, 0x88, 0x22, 0xaa, 0x55,