mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Merge commit 'bad4aad4037f59ba0ad656164be9ab8f7a0fa2d4'
* commit 'bad4aad4037f59ba0ad656164be9ab8f7a0fa2d4':
avidec: Do not special case palette on big-endian
This commit is a noop, see 64cafe340b
Merged-by: Clément Bœsch <u@pkh.me>
This commit is contained in:
commit
554cc43ac6
@ -799,7 +799,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
|
||||
!memcmp(st->codecpar->extradata + st->codecpar->extradata_size - 9, "BottomUp", 9))
|
||||
pal_src -= 9;
|
||||
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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user