lavfi/palettegen: Fix compilation after 1da8c4e.

Found-by: James Almer
This commit is contained in:
Carl Eugen Hoyos 2017-10-29 02:35:36 +02:00
parent 1da8c4ec85
commit 8b43039fe1
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ typedef struct PaletteGenContext {
struct range_box boxes[256]; // define the segmentation of the colorspace (the final palette)
int nb_boxes; // number of boxes (increase will segmenting them)
int palette_pushed; // if the palette frame is pushed into the outlink or not
uint8_t[4] transparency_color; // background color for transparency
uint8_t transparency_color[4]; // background color for transparency
} PaletteGenContext;
#define OFFSET(x) offsetof(PaletteGenContext, x)