summaryrefslogtreecommitdiffstats
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-10-16 04:44:42 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-10-16 04:44:42 +0200
commit6322a31df37bbf10ff01ee4df9e789d786fb1cac (patch)
tree6933a307ce9b2f8e261d8e0b5ede10a01488fc1c /libavformat
parent410c06d2f3e397069307f35e4c12e19ac47f4b6d (diff)
downloadffmpeg-streaming-6322a31df37bbf10ff01ee4df9e789d786fb1cac.zip
ffmpeg-streaming-6322a31df37bbf10ff01ee4df9e789d786fb1cac.tar.gz
asf: dont warn the user about digital sigantures, they should on their own not cause failure.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/asfdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c
index 8108102..f23d07e 100644
--- a/libavformat/asfdec.c
+++ b/libavformat/asfdec.c
@@ -642,7 +642,7 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
av_log(s, AV_LOG_WARNING, "Ext DRM protected stream detected, decoding will likely fail!\n");
av_dict_set(&s->metadata, "encryption", "ASF Extended Content Encryption", 0);
} else if (!ff_guidcmp(&g, &ff_asf_digital_signature)) {
- av_log(s, AV_LOG_WARNING, "Digital signature detected, decoding will likely fail!\n");
+ av_log(s, AV_LOG_INFO, "Digital signature detected!\n");
}
}
}
OpenPOWER on IntegriCloud