mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-27 18:02:11 +00:00
lavf/dashenc: remove unneeded call to dash_free
This commit is contained in:
parent
99230b7ef8
commit
08e0f45cc8
@ -1033,10 +1033,8 @@ static int dash_write_header(AVFormatContext *s)
|
||||
int i, ret;
|
||||
for (i = 0; i < s->nb_streams; i++) {
|
||||
OutputStream *os = &c->streams[i];
|
||||
if ((ret = avformat_write_header(os->ctx, NULL)) < 0) {
|
||||
dash_free(s);
|
||||
if ((ret = avformat_write_header(os->ctx, NULL)) < 0)
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
ret = write_manifest(s, 0);
|
||||
if (!ret)
|
||||
|
Loading…
Reference in New Issue
Block a user