Commit b772847e authored by Ganesh Ajjanagadde's avatar Ganesh Ajjanagadde Committed by Michael Niedermayer

avformat/webmdashenc: fix uninitialized variable

Fixes -Wsometimes-uninitialized from
http://fate.ffmpeg.org/report.cgi?time=20150820031140&slot=arm64-darwin-clang-apple-5.1Signed-off-by: 's avatarGanesh Ajjanagadde <gajjanagadde@gmail.com>
Reviewed-by: 's avatar"Ronald S. Bultje" <rsbultje@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 538ea9a2
...@@ -392,10 +392,10 @@ static int write_adaptation_set(AVFormatContext *s, int as_index) ...@@ -392,10 +392,10 @@ static int write_adaptation_set(AVFormatContext *s, int as_index)
if (w->is_live) { if (w->is_live) {
AVDictionaryEntry *filename = AVDictionaryEntry *filename =
av_dict_get(s->streams[as->streams[i]]->metadata, FILENAME, NULL, 0); av_dict_get(s->streams[as->streams[i]]->metadata, FILENAME, NULL, 0);
if (!filename || if (!filename)
(ret = parse_filename(filename->value, &representation_id, NULL, NULL))) { return AVERROR(EINVAL);
if (ret = parse_filename(filename->value, &representation_id, NULL, NULL))
return ret; return ret;
}
} else { } else {
representation_id = av_asprintf("%d", w->representation_id++); representation_id = av_asprintf("%d", w->representation_id++);
if (!representation_id) return AVERROR(ENOMEM); if (!representation_id) return AVERROR(ENOMEM);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment