dashenc: don't write header data before the first packet arrives

Fixes: 1b8ef01f04 ("dashenc: add webm support")
Signed-off-by: Peter Große <pegro@friiks.de>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
pull/272/head
Peter Große 7 years ago committed by Michael Niedermayer
parent 44ede215b6
commit 1443859a8d
  1. 2
      libavformat/dashenc.c

@ -782,7 +782,7 @@ static int dash_init(AVFormatContext *s)
av_dict_set_int(&opts, "dash_track_number", i + 1, 0);
av_dict_set_int(&opts, "live", 1, 0);
}
if ((ret = avformat_write_header(ctx, &opts)) < 0)
if ((ret = avformat_init_output(ctx, &opts)) < 0)
return ret;
os->ctx_inited = 1;
avio_flush(ctx->pb);

Loading…
Cancel
Save