Browse Source

x86/mpegvideoenc_template: use av_assert

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer 13 years ago
parent
commit
533a8b2a7d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/x86/mpegvideoenc_template.c

+ 1
- 1
libavcodec/x86/mpegvideoenc_template.c View File

@@ -100,7 +100,7 @@ static int RENAME(dct_quantize)(MpegEncContext *s,
const uint16_t *qmat, *bias;
LOCAL_ALIGNED_16(int16_t, temp_block, [64]);

assert((7&(int)(&temp_block[0])) == 0); //did gcc align it correctly?
av_assert2((7&(int)(&temp_block[0])) == 0); //did gcc align it correctly?

//s->fdct (block);
RENAMEl(ff_fdct) (block); //cannot be anything else ...


Loading…
Cancel
Save