Browse Source

force 16-bytes alignement of block array, as needed by the implementation of ff_dct_sse2

patch by John Dalgliesh %johnd A defyne P org%

Originally committed as revision 8420 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
John Dalgliesh Guillaume Poirier 19 years ago
parent
commit
5885dda4c5
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/dv.c

+ 2
- 2
libavcodec/dv.c View File

@@ -838,7 +838,7 @@ static inline void dv_encode_video_segment(DVVideoContext *s,
uint8_t* data;
uint8_t* ptr;
int do_edge_wrap;
DECLARE_ALIGNED_8(DCTELEM, block[64]);
DECLARE_ALIGNED_16(DCTELEM, block[64]);
EncBlockInfo enc_blks[5*6];
PutBitContext pbs[5*6];
PutBitContext* pb;
@@ -846,7 +846,7 @@ static inline void dv_encode_video_segment(DVVideoContext *s,
int vs_bit_size = 0;
int qnos[5];

assert((((int)block) & 7) == 0);
assert((((int)block) & 15) == 0);

enc_blk = &enc_blks[0];
pb = &pbs[0];


Loading…
Cancel
Save