mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-20 06:11:04 +00:00
Fix size of monoblack_pal array, code uses 16 values unconditionally.
Patch by Daniel Verkamp [daniel drv nu]. Originally committed as revision 26088 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
911b32f482
commit
13011def1f
@ -33,7 +33,7 @@ typedef struct PCXContext {
|
||||
AVFrame picture;
|
||||
} PCXContext;
|
||||
|
||||
static const uint32_t monoblack_pal[] = { 0x000000, 0xFFFFFF };
|
||||
static const uint32_t monoblack_pal[16] = { 0x000000, 0xFFFFFF };
|
||||
|
||||
static av_cold int pcx_encode_init(AVCodecContext *avctx)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user