You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-16 22:42:38 +02:00
dv: fix alignment of scratch buffer
Originally committed as revision 24854 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -948,7 +948,7 @@ static int dv_encode_video_segment(AVCodecContext *avctx, void *arg)
|
|||||||
int mb_x, mb_y, c_offset, linesize, y_stride;
|
int mb_x, mb_y, c_offset, linesize, y_stride;
|
||||||
uint8_t* y_ptr;
|
uint8_t* y_ptr;
|
||||||
uint8_t* dif;
|
uint8_t* dif;
|
||||||
uint8_t scratch[64];
|
LOCAL_ALIGNED_8(uint8_t, scratch, [64]);
|
||||||
EncBlockInfo enc_blks[5*DV_MAX_BPM];
|
EncBlockInfo enc_blks[5*DV_MAX_BPM];
|
||||||
PutBitContext pbs[5*DV_MAX_BPM];
|
PutBitContext pbs[5*DV_MAX_BPM];
|
||||||
PutBitContext* pb;
|
PutBitContext* pb;
|
||||||
|
Reference in New Issue
Block a user