summaryrefslogtreecommitdiffstats
path: root/libavcodec/pngdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-01-19 20:49:59 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-01-22 00:46:19 +0100
commitfd8a8373aa52e94de14f0583c482c8faa95dd677 (patch)
tree274ae6e8d4b3447adf70abec44f233fb4af3bfec /libavcodec/pngdec.c
parent602e97dfaa8a0aaa41b3749b7cb2c7c900ed7aee (diff)
downloadffmpeg-streaming-fd8a8373aa52e94de14f0583c482c8faa95dd677.zip
ffmpeg-streaming-fd8a8373aa52e94de14f0583c482c8faa95dd677.tar.gz
pngdec: Fix masks for interlaced decoding
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/pngdec.c')
-rw-r--r--libavcodec/pngdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c
index 2b9f5ad..ec60454 100644
--- a/libavcodec/pngdec.c
+++ b/libavcodec/pngdec.c
@@ -34,7 +34,7 @@
/* Mask to determine which y pixels can be written in a pass */
static const uint8_t png_pass_dsp_ymask[NB_PASSES] = {
- 0xff, 0xff, 0x0f, 0xcc, 0x33, 0xff, 0x55,
+ 0xff, 0xff, 0x0f, 0xff, 0x33, 0xff, 0x55,
};
/* Mask to determine which pixels to overwrite while displaying */
OpenPOWER on IntegriCloud