diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2008-02-26 10:21:33 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2008-02-26 10:21:33 +0000 |
commit | 042e0adda9fd3ae1322ef51f9edbceffe3ae0941 (patch) | |
tree | 5694d8a82c7688c74317a26aa6d2563cda70dc02 /libavcodec/png.c | |
parent | d248905ba582b399bf1244fafcdfedc36569fe51 (diff) | |
download | ffmpeg-042e0adda9fd3ae1322ef51f9edbceffe3ae0941.tar.gz |
decode mng color decorrelation
Originally committed as revision 12228 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/png.c')
-rw-r--r-- | libavcodec/png.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/png.c b/libavcodec/png.c index 969c14774f..c95ba3e10d 100644 --- a/libavcodec/png.c +++ b/libavcodec/png.c @@ -23,6 +23,7 @@ #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] = { |