Browse Source

avidec: Do not special case palette on big-endian

This simplifies the code a bit, does not change output data in any way.
tags/n3.3
Vittorio Giovara 8 years ago
parent
commit
bad4aad403
1 changed files with 1 additions and 5 deletions
  1. +1
    -5
      libavformat/avidec.c

+ 1
- 5
libavformat/avidec.c View File

@@ -652,12 +652,8 @@ static int avi_read_header(AVFormatContext *s)
pal_size = FFMIN(pal_size, st->codecpar->extradata_size);
pal_src = st->codecpar->extradata +
st->codecpar->extradata_size - pal_size;
#if HAVE_BIGENDIAN
for (i = 0; i < pal_size / 4; i++)
ast->pal[i] = av_bswap32(((uint32_t *)pal_src)[i]);
#else
memcpy(ast->pal, pal_src, pal_size);
#endif
ast->pal[i] = AV_RL32(pal_src + 4 * i);
ast->has_pal = 1;
}



Loading…
Cancel
Save