diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-01 09:51:37 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-01 09:51:37 +0200 |
commit | d8b6557c866d268745123cbdd6e5431ed9261b96 (patch) | |
tree | d4dc27854add9d3bacc3363f795182b171195857 /libavcodec | |
parent | 71091698a231ca63984b2612bf16a126e6de5054 (diff) | |
parent | bda9e6d923df6d46cc5cafb30a59a01d2514fa61 (diff) | |
download | ffmpeg-d8b6557c866d268745123cbdd6e5431ed9261b96.tar.gz |
Merge commit 'bda9e6d923df6d46cc5cafb30a59a01d2514fa61'
* commit 'bda9e6d923df6d46cc5cafb30a59a01d2514fa61':
indeo3: use put_pixels instead of put_no_rnd_pixels in copy_cell()
Conflicts:
libavcodec/indeo3.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/indeo3.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c index 9e842cebf1..0261b52378 100644 --- a/libavcodec/indeo3.c +++ b/libavcodec/indeo3.c @@ -258,19 +258,19 @@ static int copy_cell(Indeo3DecodeContext *ctx, Plane *plane, Cell *cell) /* copy using 16xH blocks */ if (!((cell->xpos << 2) & 15) && w >= 4) { for (; w >= 4; src += 16, dst += 16, w -= 4) - ctx->hdsp.put_no_rnd_pixels_tab[0][0](dst, src, plane->pitch, h); + ctx->hdsp.put_pixels_tab[0][0](dst, src, plane->pitch, h); } /* copy using 8xH blocks */ if (!((cell->xpos << 2) & 7) && w >= 2) { - ctx->hdsp.put_no_rnd_pixels_tab[1][0](dst, src, plane->pitch, h); + ctx->hdsp.put_pixels_tab[1][0](dst, src, plane->pitch, h); w -= 2; src += 8; dst += 8; } if (w >= 1) { - copy_block4(dst, src, plane->pitch, plane->pitch, h); + ctx->hdsp.put_pixels_tab[2][0](dst, src, plane->pitch, h); w--; src += 4; dst += 4; |