Commit 05a08afc authored by michael's avatar michael

align


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2389 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0a68530d
......@@ -485,7 +485,8 @@ static inline void dv_decode_video_segment(DVVideoDecodeContext *s,
}
} else {
if (s->sys->pix_fmt == PIX_FMT_YUV411P && mb_x >= (704 / 8)) {
uint8_t pixels[64], *c_ptr, *c_ptr1, *ptr;
uint64_t aligned_pixels[64/8], *c_ptr, *c_ptr1, *ptr;
uint8_t *pixels= (uint8_t*)aligned_pixels;
int y, linesize;
/* NOTE: at end of line, the macroblock is handled as 420 */
idct_put(pixels, 8, block);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment