[FFmpeg-devel] [PATCH 1/2] avformat/matroskaenc: Remove remnant of inline-timing subtitle packets

Andreas Rheinhardt andreas.rheinhardt at outlook.com
Sat Apr 10 01:01:05 EEST 2021


Andreas Rheinhardt:
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> ---
>  libavformat/matroskaenc.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c
> index 609a588f78..a4ddf1fa6a 100644
> --- a/libavformat/matroskaenc.c
> +++ b/libavformat/matroskaenc.c
> @@ -2187,7 +2187,7 @@ static int mkv_write_vtt_blocks(AVFormatContext *s, AVIOContext *pb, const AVPac
>      put_ebml_uint(pb, MATROSKA_ID_BLOCKDURATION, pkt->duration);
>      end_ebml_master(pb, blockgroup);
>  
> -    return pkt->duration;
> +    return 0;
>  }
>  
>  static int mkv_end_cluster(AVFormatContext *s)
> @@ -2358,9 +2358,9 @@ static int mkv_write_packet_internal(AVFormatContext *s, const AVPacket *pkt)
>          }
>      } else {
>          if (par->codec_id == AV_CODEC_ID_WEBVTT) {
> -            duration = mkv_write_vtt_blocks(s, pb, pkt);
> -            if (duration < 0)
> -                return duration;
> +            ret = mkv_write_vtt_blocks(s, pb, pkt);
> +            if (ret < 0)
> +                return ret;
>          } else {
>              ebml_master blockgroup = start_ebml_master(pb, MATROSKA_ID_BLOCKGROUP,
>                                                         mkv_blockgroup_size(pkt->size,
> 
Will apply this patchset tomorrow unless there are objections.

- Andreas


More information about the ffmpeg-devel mailing list