1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Initilaize array to known size

Signed-off-by: Anshul Maheshwari <er.anshul.maheshwari@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Anshul Maheshwari 2015-01-20 15:59:48 +05:30 committed by Michael Niedermayer
parent 88ba88e887
commit d6d354254f

View File

@ -63,7 +63,7 @@ enum cc_font {
CCFONT_UNDERLINED_ITALICS, CCFONT_UNDERLINED_ITALICS,
}; };
static const unsigned char pac2_attribs[][3] = // Color, font, ident static const unsigned char pac2_attribs[32][3] = // Color, font, ident
{ {
{ CCCOL_WHITE, CCFONT_REGULAR, 0 }, // 0x40 || 0x60 { CCCOL_WHITE, CCFONT_REGULAR, 0 }, // 0x40 || 0x60
{ CCCOL_WHITE, CCFONT_UNDERLINED, 0 }, // 0x41 || 0x61 { CCCOL_WHITE, CCFONT_UNDERLINED, 0 }, // 0x41 || 0x61