summaryrefslogtreecommitdiff
path: root/libavformat/flvdec.c
diff options
context:
space:
mode:
authorwm4 <nfxjfg@googlemail.com>2017-03-02 11:00:40 +0100
committerwm4 <nfxjfg@googlemail.com>2017-03-06 11:08:03 +0100
commitef86488696a84ae98028e4e199d51b10e331399d (patch)
tree5308de21a78e7bbddb992a1c1f3161c209f30023 /libavformat/flvdec.c
parent808ab2fd0ba26ecb70655ec990748b16f30017bf (diff)
avformat/flvdec: remove meaningless warning
Ever since the codecpar changes, this has been always printed when opening a flv file. This is because the codecpar changes made all streams to be added lazily as read_packet is called.
Diffstat (limited to 'libavformat/flvdec.c')
-rw-r--r--libavformat/flvdec.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c
index 520a3a0034..3959a3665a 100644
--- a/libavformat/flvdec.c
+++ b/libavformat/flvdec.c
@@ -1033,7 +1033,6 @@ skip:
}
if (i == s->nb_streams) {
static const enum AVMediaType stream_types[] = {AVMEDIA_TYPE_VIDEO, AVMEDIA_TYPE_AUDIO, AVMEDIA_TYPE_SUBTITLE};
- av_log(s, AV_LOG_WARNING, "%s stream discovered after head already parsed\n", av_get_media_type_string(stream_types[stream_type]));
st = create_stream(s, stream_types[stream_type]);
if (!st)
return AVERROR(ENOMEM);