Commit 554cc43a authored by Clément Bœsch's avatar Clément Bœsch

Merge commit 'bad4aad4'

* commit 'bad4aad4':
  avidec: Do not special case palette on big-endian

This commit is a noop, see 64cafe34Merged-by: 's avatarClément Bœsch <u@pkh.me>
parents a1f6b1d9 bad4aad4
...@@ -799,7 +799,7 @@ FF_ENABLE_DEPRECATION_WARNINGS ...@@ -799,7 +799,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
!memcmp(st->codecpar->extradata + st->codecpar->extradata_size - 9, "BottomUp", 9)) !memcmp(st->codecpar->extradata + st->codecpar->extradata_size - 9, "BottomUp", 9))
pal_src -= 9; pal_src -= 9;
for (i = 0; i < pal_size / 4; i++) for (i = 0; i < pal_size / 4; i++)
ast->pal[i] = 0xFFU<<24 | AV_RL32(pal_src+4*i); ast->pal[i] = 0xFFU<<24 | AV_RL32(pal_src + 4 * i);
ast->has_pal = 1; ast->has_pal = 1;
} }
......
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