[FFmpeg-cvslog] avformat/dashdec: fix compling warning "filename is deprecated"
Steven Liu
git at videolan.org
Thu Apr 26 11:19:49 EEST 2018
ffmpeg | branch: master | Steven Liu <lq at chinaffmpeg.org> | Thu Apr 26 16:17:15 2018 +0800| [798ae8794e84b7837cbdc4c9d7943569015ddff4] | committer: Steven Liu
avformat/dashdec: fix compling warning "filename is deprecated"
Signed-off-by: Steven Liu <lq at chinaffmpeg.org>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=798ae8794e84b7837cbdc4c9d7943569015ddff4
---
libavformat/dashdec.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c
index c90bc51ce3..42202e0011 100644
--- a/libavformat/dashdec.c
+++ b/libavformat/dashdec.c
@@ -1403,7 +1403,7 @@ static int refresh_manifest(AVFormatContext *s)
c->videos = NULL;
c->n_audios = 0;
c->audios = NULL;
- ret = parse_manifest(s, s->filename, NULL);
+ ret = parse_manifest(s, s->url, NULL);
if (ret)
goto finish;
@@ -1759,7 +1759,7 @@ static int nested_io_open(AVFormatContext *s, AVIOContext **pb, const char *url,
av_log(s, AV_LOG_ERROR,
"A DASH playlist item '%s' referred to an external file '%s'. "
"Opening this file was forbidden for security reasons\n",
- s->filename, url);
+ s->url, url);
return AVERROR(EPERM);
}
@@ -1930,7 +1930,7 @@ static int dash_read_header(AVFormatContext *s)
update_options(&c->headers, "headers", u);
}
- if ((ret = parse_manifest(s, s->filename, s->pb)) < 0)
+ if ((ret = parse_manifest(s, s->url, s->pb)) < 0)
goto fail;
if ((ret = save_avio_options(s)) < 0)
More information about the ffmpeg-cvslog
mailing list