mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
lavc/ccaption_dec: centralize buffer_changed=1 into reap_screen
This commit is contained in:
parent
c75b869516
commit
7def844be8
@ -302,6 +302,7 @@ static int reap_screen(CCaptionSubContext *ctx, int64_t pts)
|
|||||||
ctx->buffer.len -= 2;
|
ctx->buffer.len -= 2;
|
||||||
ctx->buffer.str[ctx->buffer.len] = 0;
|
ctx->buffer.str[ctx->buffer.len] = 0;
|
||||||
}
|
}
|
||||||
|
ctx->buffer_changed = 1;
|
||||||
ctx->startv_time = pts;
|
ctx->startv_time = pts;
|
||||||
ctx->end_time = pts;
|
ctx->end_time = pts;
|
||||||
return ret;
|
return ret;
|
||||||
@ -365,7 +366,6 @@ static void handle_edm(CCaptionSubContext *ctx, int64_t pts)
|
|||||||
|
|
||||||
reap_screen(ctx, pts);
|
reap_screen(ctx, pts);
|
||||||
screen->row_used = 0;
|
screen->row_used = 0;
|
||||||
ctx->buffer_changed = 1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void handle_eoc(CCaptionSubContext *ctx, int64_t pts)
|
static void handle_eoc(CCaptionSubContext *ctx, int64_t pts)
|
||||||
@ -458,7 +458,6 @@ static void process_cc608(CCaptionSubContext *ctx, int64_t pts, uint8_t hi, uint
|
|||||||
ff_dlog(ctx, "carriage return\n");
|
ff_dlog(ctx, "carriage return\n");
|
||||||
reap_screen(ctx, pts);
|
reap_screen(ctx, pts);
|
||||||
roll_up(ctx);
|
roll_up(ctx);
|
||||||
ctx->buffer_changed = 1;
|
|
||||||
ctx->cursor_column = 0;
|
ctx->cursor_column = 0;
|
||||||
break;
|
break;
|
||||||
case 0x2f:
|
case 0x2f:
|
||||||
|
Loading…
Reference in New Issue
Block a user