lavc/ccaption_dec: mark row and font as const in capture_screen()

This commit is contained in:
Clément Bœsch 2016-01-09 12:38:36 +01:00
parent d587fbb676
commit 31bff21d2c
1 changed files with 2 additions and 2 deletions

View File

@ -291,8 +291,8 @@ static int capture_screen(CCaptionSubContext *ctx)
for (i = 0; screen->row_used && i < SCREEN_ROWS; i++)
{
if (CHECK_FLAG(screen->row_used, i)) {
char *row = screen->characters[i];
char *font = screen->fonts[i];
const char *row = screen->characters[i];
const char *font = screen->fonts[i];
int j = 0;
/* skip leading space */