X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fwebvttenc.c;h=c84bbf4b4e1ccb12815d88938017dd1f477c96d8;hb=22ebbda637257a432c99330ca4c6024665418f0e;hp=9f67a2eab6bccf11c2403386a2f4c40d6c424076;hpb=cbe3f28d0ac7e102edf1dfd7733a303016a1b788;p=ffmpeg diff --git a/libavcodec/webvttenc.c b/libavcodec/webvttenc.c index 9f67a2eab6b..c84bbf4b4e1 100644 --- a/libavcodec/webvttenc.c +++ b/libavcodec/webvttenc.c @@ -159,21 +159,38 @@ static int webvtt_encode_frame(AVCodecContext *avctx, { WebVTTContext *s = avctx->priv_data; ASSDialog *dialog; - int i, num; + int i; av_bprint_clear(&s->buffer); for (i=0; inum_rects; i++) { + const char *ass = sub->rects[i]->ass; + if (sub->rects[i]->type != SUBTITLE_ASS) { av_log(avctx, AV_LOG_ERROR, "Only SUBTITLE_ASS type supported.\n"); return AVERROR(ENOSYS); } - dialog = ff_ass_split_dialog(s->ass_ctx, sub->rects[i]->ass, 0, &num); +#if FF_API_ASS_TIMING + if (!strncmp(ass, "Dialogue: ", 10)) { + int num; + dialog = ff_ass_split_dialog(s->ass_ctx, ass, 0, &num); + // TODO reindent for (; dialog && num--; dialog++) { webvtt_style_apply(s, dialog->style); ff_ass_split_override_codes(&webvtt_callbacks, s, dialog->text); } + } else { +#endif + dialog = ff_ass_split_dialog2(s->ass_ctx, ass); + if (!dialog) + return AVERROR(ENOMEM); + webvtt_style_apply(s, dialog->style); + ff_ass_split_override_codes(&webvtt_callbacks, s, dialog->text); + ff_ass_free_dialog(&dialog); +#if FF_API_ASS_TIMING + } +#endif } if (!av_bprint_is_complete(&s->buffer))