]> git.sesse.net Git - ffmpeg/commit
Do not convert RGB buffer at once when stride does not fit exact samples.
authorKostya Shishkov <kostya.shishkov@gmail.com>
Fri, 29 Jul 2011 10:55:01 +0000 (12:55 +0200)
committerRonald S. Bultje <rsbultje@gmail.com>
Sat, 30 Jul 2011 16:51:23 +0000 (09:51 -0700)
commit42ba12888b9296977237f2bca0027d8b017011db
tree19bd1ed5c9129c3fd5a754fed0a314bd8206f912
parent8a54bfe83f3387072fb2044096d073c973739ed1
Do not convert RGB buffer at once when stride does not fit exact samples.

When converting RGB format to RGB format with the same bits per sample,
unscaled path performs conversion on the whole buffer at once. For
non-multiple-of-16 BGR24 to RGB24 conversion it means that padding at the
end of line will be converted too. Since it may be of arbitrary length
(e.g. 8 bytes), operating on the whole buffer produces obviously wrong
results.

Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
libswscale/swscale_unscaled.c