Browse Source

Merge remote-tracking branch 'qatar/master'

* qatar/master:
  indeo3: avoid writes without necessary alignment in copy_cell()

Merged-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.0
Michael Niedermayer 12 years ago
parent
commit
496f2df908
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      libavcodec/indeo3.c

+ 1
- 3
libavcodec/indeo3.c View File

@@ -267,9 +267,7 @@ static int copy_cell(Indeo3DecodeContext *ctx, Plane *plane, Cell *cell)
w -= 2;
src += 8;
dst += 8;
}

if (w >= 1) {
} else if (w >= 1) {
ctx->hdsp.put_pixels_tab[2][0](dst, src, plane->pitch, h);
w--;
src += 4;


Loading…
Cancel
Save