Browse Source

avcodec/ccaption_dec: Fix mixed declaration and statement.

Found-by: ubitux
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.2
Michael Niedermayer 9 years ago
parent
commit
6cc4c42226
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavcodec/ccaption_dec.c

+ 2
- 1
libavcodec/ccaption_dec.c View File

@@ -714,8 +714,9 @@ static void process_cc608(CCaptionSubContext *ctx, int64_t pts, uint8_t hi, uint
handle_char(ctx, hi, lo, pts);
ctx->prev_cmd[0] = ctx->prev_cmd[1] = 0;
} else if (hi == 0x17 && lo >= 0x21 && lo <= 0x23) {
int i;
/* Tab offsets (spacing) */
for (int i = 0; i < lo - 0x20; i++) {
for (i = 0; i < lo - 0x20; i++) {
handle_char(ctx, ' ', 0, pts);
}
} else {


Loading…
Cancel
Save