Mercurial > libavcodec.hg
comparison ituh263dec.c @ 11195:d464f498e19f libavcodec
Use LOCAL_ALIGNED macro for local arrays
author | mru |
---|---|
date | Wed, 17 Feb 2010 20:36:20 +0000 |
parents | 34a65026fa06 |
children | 7dd2a45249a9 |
comparison
equal
deleted
inserted
replaced
11194:7b3f6955462b | 11195:d464f498e19f |
---|---|
561 return 0; | 561 return 0; |
562 } | 562 } |
563 | 563 |
564 static int h263_skip_b_part(MpegEncContext *s, int cbp) | 564 static int h263_skip_b_part(MpegEncContext *s, int cbp) |
565 { | 565 { |
566 DECLARE_ALIGNED(16, DCTELEM, dblock)[64]; | 566 LOCAL_ALIGNED_16(DCTELEM, dblock, [64]); |
567 int i, mbi; | 567 int i, mbi; |
568 | 568 |
569 /* we have to set s->mb_intra to zero to decode B-part of PB-frame correctly | 569 /* we have to set s->mb_intra to zero to decode B-part of PB-frame correctly |
570 * but real value should be restored in order to be used later (in OBMC condition) | 570 * but real value should be restored in order to be used later (in OBMC condition) |
571 */ | 571 */ |