mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 07:31:22 +01:00
lavfi/elbg: Make the pal8 output opaque.
This commit is contained in:
parent
3b1d1437a0
commit
d0962160e0
1 changed files with 2 additions and 1 deletions
|
|
@ -186,7 +186,8 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
|
|||
p0 = (uint8_t *)out->data[0];
|
||||
|
||||
for (i = 0; i < elbg->codebook_length; i++) {
|
||||
pal[i] = (elbg->codebook[i*3 ] << 16) |
|
||||
pal[i] = 0xFFU << 24 |
|
||||
(elbg->codebook[i*3 ] << 16) |
|
||||
(elbg->codebook[i*3+1] << 8) |
|
||||
elbg->codebook[i*3+2];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue