mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-09 08:09:11 +00:00
Merge remote-tracking branch 'qatar/master'
* qatar/master: indeo3: avoid writes without necessary alignment in copy_cell() Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
496f2df908
@ -267,9 +267,7 @@ static int copy_cell(Indeo3DecodeContext *ctx, Plane *plane, Cell *cell)
|
|||||||
w -= 2;
|
w -= 2;
|
||||||
src += 8;
|
src += 8;
|
||||||
dst += 8;
|
dst += 8;
|
||||||
}
|
} else if (w >= 1) {
|
||||||
|
|
||||||
if (w >= 1) {
|
|
||||||
ctx->hdsp.put_pixels_tab[2][0](dst, src, plane->pitch, h);
|
ctx->hdsp.put_pixels_tab[2][0](dst, src, plane->pitch, h);
|
||||||
w--;
|
w--;
|
||||||
src += 4;
|
src += 4;
|
||||||
|
Loading…
Reference in New Issue
Block a user