summaryrefslogtreecommitdiff
path: root/libavformat/xwma.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-03-09 16:30:03 +0100
committerDiego Biurrun <diego@biurrun.de>2013-03-12 11:09:45 +0100
commita4472ac01e86f9fae5adb9034f2777b86a9c5480 (patch)
tree80d9a366c765596141b9468c7fd0dd89af4dfd58 /libavformat/xwma.c
parent8f10f1a6dc0d326a146e169860a2de7a8356fdab (diff)
Add informative messages to av_log_ask_for_sample calls lacking them
Diffstat (limited to 'libavformat/xwma.c')
-rw-r--r--libavformat/xwma.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libavformat/xwma.c b/libavformat/xwma.c
index baabf5775e..13ce2bb9f9 100644
--- a/libavformat/xwma.c
+++ b/libavformat/xwma.c
@@ -85,9 +85,8 @@ static int xwma_read_header(AVFormatContext *s)
* anyway.
*/
if (st->codec->codec_id != AV_CODEC_ID_WMAV2) {
- av_log(s, AV_LOG_WARNING, "unexpected codec (tag 0x04%x; id %d)\n",
+ av_log_ask_for_sample(s, "unexpected codec (tag 0x04%x; id %d)\n",
st->codec->codec_tag, st->codec->codec_id);
- av_log_ask_for_sample(s, NULL);
} else {
/* In all xWMA files I have seen, there is no extradata. But the WMA
* codecs require extradata, so we provide our own fake extradata.
@@ -101,9 +100,8 @@ static int xwma_read_header(AVFormatContext *s)
* if it will work, but just go on and try it, after asking
* the user for a sample.
*/
- av_log(s, AV_LOG_WARNING, "unexpected extradata (%d bytes)\n",
+ av_log_ask_for_sample(s, "unexpected extradata (%d bytes)\n",
st->codec->extradata_size);
- av_log_ask_for_sample(s, NULL);
} else {
st->codec->extradata_size = 6;
st->codec->extradata = av_mallocz(6 + FF_INPUT_BUFFER_PADDING_SIZE);