Browse Source

avcodec/mdec: make block_index static const

tags/n2.1
Michael Niedermayer 11 years ago
parent
commit
154c8bf60b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/mdec.c

+ 1
- 1
libavcodec/mdec.c View File

@@ -121,7 +121,7 @@ static inline int mdec_decode_block_intra(MDECContext *a, int16_t *block, int n)
static inline int decode_mb(MDECContext *a, int16_t block[6][64])
{
int i, ret;
const int block_index[6] = { 5, 4, 0, 1, 2, 3 };
static const int block_index[6] = { 5, 4, 0, 1, 2, 3 };

a->dsp.clear_blocks(block[0]);



Loading…
Cancel
Save