Andreas Rheinhardt: > Signed-off-by: Andreas Rheinhardt <andreas.rheinha...@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 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".