Browse Source

bink: use LOCAL_ALIGNED for aligned stack data

Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 8997bb8807)
tags/n0.8
Mans Rullgard Michael Niedermayer 15 years ago
parent
commit
22c679d3db
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/bink.c

+ 1
- 1
libavcodec/bink.c View File

@@ -790,7 +790,7 @@ static int binkb_decode_plane(BinkContext *c, GetBitContext *gb, int plane_idx,
int v, col[2];
const uint8_t *scan;
int xoff, yoff;
DECLARE_ALIGNED(16, DCTELEM, block[64]);
LOCAL_ALIGNED_16(DCTELEM, block, [64]);
int coordmap[64];
int ybias = is_key ? -15 : 0;
int qp;


Loading…
Cancel
Save