mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 11:49:48 +00:00
align
Originally committed as revision 2389 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
bcc7125e1d
commit
f539eb52fe
@ -485,7 +485,8 @@ static inline void dv_decode_video_segment(DVVideoDecodeContext *s,
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (s->sys->pix_fmt == PIX_FMT_YUV411P && mb_x >= (704 / 8)) {
|
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;
|
int y, linesize;
|
||||||
/* NOTE: at end of line, the macroblock is handled as 420 */
|
/* NOTE: at end of line, the macroblock is handled as 420 */
|
||||||
idct_put(pixels, 8, block);
|
idct_put(pixels, 8, block);
|
||||||
|
Loading…
Reference in New Issue
Block a user