Browse Source

avformat/webm_chunk: Close IO if writing header fails

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
(cherry picked from commit 2a78968849)
tags/n4.2.3
Andreas Rheinhardt 6 years ago
parent
commit
60d8a54432
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/webm_chunk.c

+ 1
- 1
libavformat/webm_chunk.c View File

@@ -151,9 +151,9 @@ static int webm_chunk_write_header(AVFormatContext *s)

oc->pb->seekable = 0;
ret = oc->oformat->write_header(oc);
ff_format_io_close(s, &oc->pb);
if (ret < 0)
return ret;
ff_format_io_close(s, &oc->pb);
for (i = 0; i < s->nb_streams; i++) {
// ms precision is the de-facto standard timescale for mkv files.
avpriv_set_pts_info(s->streams[i], 64, 1, 1000);


Loading…
Cancel
Save