projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e83aed0
)
IFF PBM decoder: Add a pad byte if image width is odd <aleksi dot nurmi at gmail...
author
Peter Ross
<pross@xvid.org>
Tue, 22 Jun 2010 12:41:17 +0000
(12:41 +0000)
committer
Peter Ross
<pross@xvid.org>
Tue, 22 Jun 2010 12:41:17 +0000
(12:41 +0000)
Originally committed as revision 23701 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/iff.c
patch
|
blob
|
history
diff --git
a/libavcodec/iff.c
b/libavcodec/iff.c
index
29353bf
..
21d93ec
100644
(file)
--- a/
libavcodec/iff.c
+++ b/
libavcodec/iff.c
@@
-293,7
+293,7
@@
static int decode_frame_ilbm(AVCodecContext *avctx,
for(y = 0; y < avctx->height; y++ ) {
uint8_t *row = &s->frame.data[0][y * s->frame.linesize[0]];
memcpy(row, buf, FFMIN(avctx->width, buf_end - buf));
- buf += avctx->width
;
+ buf += avctx->width
+ (avctx->width % 2); // padding if odd
}
}