Mercurial > libavcodec.hg
changeset 1540:a0086452b9d8 libavcodec
* fix for a trivial 100l declaration typo
author | romansh |
---|---|
date | Thu, 16 Oct 2003 04:50:54 +0000 |
parents | 14d01ccc0081 |
children | 9c4921a51392 |
files | dv.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/dv.c Thu Oct 16 00:21:54 2003 +0000 +++ b/dv.c Thu Oct 16 04:50:54 2003 +0000 @@ -485,8 +485,9 @@ } } else { if (s->sys->pix_fmt == PIX_FMT_YUV411P && mb_x >= (704 / 8)) { - uint64_t aligned_pixels[64/8], *c_ptr, *c_ptr1, *ptr; + uint64_t aligned_pixels[64/8]; uint8_t *pixels= (uint8_t*)aligned_pixels; + uint8_t *c_ptr, *c_ptr1, *ptr; int y, linesize; /* NOTE: at end of line, the macroblock is handled as 420 */ idct_put(pixels, 8, block);