[FFmpeg-cvslog] avidec: Do not special case palette on big-endian
Vittorio Giovara
git at videolan.org
Thu Mar 23 12:26:44 EET 2017
ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Sat Sep 24 20:25:44 2016 -0400| [bad4aad4037f59ba0ad656164be9ab8f7a0fa2d4] | committer: Vittorio Giovara
avidec: Do not special case palette on big-endian
This simplifies the code a bit, does not change output data in any way.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bad4aad4037f59ba0ad656164be9ab8f7a0fa2d4
---
libavformat/avidec.c | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/libavformat/avidec.c b/libavformat/avidec.c
index ddc7c2b..b2457d5 100644
--- a/libavformat/avidec.c
+++ b/libavformat/avidec.c
@@ -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;
}
More information about the ffmpeg-cvslog
mailing list