avcodec/ccaption_dec: simplify init function

This commit is contained in:
Paul B Mahol 2023-05-20 11:44:47 +02:00
parent ff72256235
commit 8980c1313b
1 changed files with 1 additions and 7 deletions

View File

@ -262,7 +262,6 @@ typedef struct CCaptionSubContext {
static av_cold int init_decoder(AVCodecContext *avctx)
{
int ret;
CCaptionSubContext *ctx = avctx->priv_data;
av_bprint_init(&ctx->buffer[0], 0, AV_BPRINT_SIZE_UNLIMITED);
@ -272,7 +271,7 @@ static av_cold int init_decoder(AVCodecContext *avctx)
ctx->bg_color = CCCOL_BLACK;
ctx->rollup = 2;
ctx->cursor_row = 10;
ret = ff_ass_subtitle_header(avctx, "Monospace",
return ff_ass_subtitle_header(avctx, "Monospace",
ASS_DEFAULT_FONT_SIZE,
ASS_DEFAULT_COLOR,
ASS_DEFAULT_BACK_COLOR,
@ -281,11 +280,6 @@ static av_cold int init_decoder(AVCodecContext *avctx)
ASS_DEFAULT_UNDERLINE,
3,
ASS_DEFAULT_ALIGNMENT);
if (ret < 0) {
return ret;
}
return ret;
}
static av_cold int close_decoder(AVCodecContext *avctx)