[FFmpeg-cvslog] sgi: set the row boundary to the correct value

Michael Niedermayer git at videolan.org
Tue Apr 1 03:55:40 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Aug 12 05:31:14 2012 +0200| [6d9ccee4519f41155c88655c77bfb1ef085797fd] | committer: Vittorio Giovara

sgi: set the row boundary to the correct value

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6d9ccee4519f41155c88655c77bfb1ef085797fd
---

 libavcodec/sgidec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/sgidec.c b/libavcodec/sgidec.c
index 112a181..7c751f6 100644
--- a/libavcodec/sgidec.c
+++ b/libavcodec/sgidec.c
@@ -106,7 +106,7 @@ static int read_rle_sgi(uint8_t *out_buf, SgiState *s)
             dest_row -= s->linesize;
             start_offset = bytestream2_get_be32(&g_table);
             bytestream2_seek(&s->g, start_offset, SEEK_SET);
-            if (expand_rle_row(s, dest_row + z, FFABS(s->linesize) - z,
+            if (expand_rle_row(s, dest_row + z, s->width * s->depth,
                                s->depth) != s->width) {
                 return AVERROR_INVALIDDATA;
             }



More information about the ffmpeg-cvslog mailing list