You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/ccaption_dec: simplify init function
This commit is contained in:
@@ -262,7 +262,6 @@ typedef struct CCaptionSubContext {
|
|||||||
|
|
||||||
static av_cold int init_decoder(AVCodecContext *avctx)
|
static av_cold int init_decoder(AVCodecContext *avctx)
|
||||||
{
|
{
|
||||||
int ret;
|
|
||||||
CCaptionSubContext *ctx = avctx->priv_data;
|
CCaptionSubContext *ctx = avctx->priv_data;
|
||||||
|
|
||||||
av_bprint_init(&ctx->buffer[0], 0, AV_BPRINT_SIZE_UNLIMITED);
|
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->bg_color = CCCOL_BLACK;
|
||||||
ctx->rollup = 2;
|
ctx->rollup = 2;
|
||||||
ctx->cursor_row = 10;
|
ctx->cursor_row = 10;
|
||||||
ret = ff_ass_subtitle_header(avctx, "Monospace",
|
return ff_ass_subtitle_header(avctx, "Monospace",
|
||||||
ASS_DEFAULT_FONT_SIZE,
|
ASS_DEFAULT_FONT_SIZE,
|
||||||
ASS_DEFAULT_COLOR,
|
ASS_DEFAULT_COLOR,
|
||||||
ASS_DEFAULT_BACK_COLOR,
|
ASS_DEFAULT_BACK_COLOR,
|
||||||
@@ -281,11 +280,6 @@ static av_cold int init_decoder(AVCodecContext *avctx)
|
|||||||
ASS_DEFAULT_UNDERLINE,
|
ASS_DEFAULT_UNDERLINE,
|
||||||
3,
|
3,
|
||||||
ASS_DEFAULT_ALIGNMENT);
|
ASS_DEFAULT_ALIGNMENT);
|
||||||
if (ret < 0) {
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static av_cold int close_decoder(AVCodecContext *avctx)
|
static av_cold int close_decoder(AVCodecContext *avctx)
|
||||||
|
Reference in New Issue
Block a user