forked from FFmpeg/FFmpeg
libavformat/dashdec: disable seeking only for live streams.
Signed-off-by: Paweł Wegner <pawel.wegner95@gmail.com>
This commit is contained in:
parent
8522d219ce
commit
835ab35ef0
1 changed files with 2 additions and 2 deletions
|
@ -2000,8 +2000,6 @@ static int dash_read_header(AVFormatContext *s)
|
|||
if ((ret = save_avio_options(s)) < 0)
|
||||
goto fail;
|
||||
|
||||
av_dict_set(&c->avio_opts, "seekable", "0", 0);
|
||||
|
||||
if ((ret = parse_manifest(s, s->url, s->pb)) < 0)
|
||||
goto fail;
|
||||
|
||||
|
@ -2009,6 +2007,8 @@ static int dash_read_header(AVFormatContext *s)
|
|||
* stream. */
|
||||
if (!c->is_live) {
|
||||
s->duration = (int64_t) c->media_presentation_duration * AV_TIME_BASE;
|
||||
} else {
|
||||
av_dict_set(&c->avio_opts, "seekable", "0", 0);
|
||||
}
|
||||
|
||||
if(c->n_videos)
|
||||
|
|
Loading…
Add table
Reference in a new issue