Commit 288b62b1 authored by Mans Rullgard's avatar Mans Rullgard Committed by Michael Niedermayer

asfdec: fix build for big endian targets

Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
(cherry picked from commit aabc2682)
parent 7539a1fe
......@@ -361,6 +361,7 @@ static int asf_read_stream_properties(AVFormatContext *s, int64_t size)
/* This code assumes that extradata contains only palette */
/* This is true for all paletted codecs implemented in ffmpeg */
if (st->codec->extradata_size && (st->codec->bits_per_coded_sample <= 8)) {
int av_unused i;
st->codec->palctrl = av_mallocz(sizeof(AVPaletteControl));
#if HAVE_BIGENDIAN
for (i = 0; i < FFMIN(st->codec->extradata_size, AVPALETTE_SIZE)/4; i++)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment