diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2010-02-24 07:33:18 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2010-02-24 07:33:18 +0000 |
commit | 27e7492771a8b7ed8df28139e439c4a5a7b053e3 (patch) | |
tree | c5d93681a1c6a4c654c1bdcefcacb104560ed9b5 /libavformat/asfdec.c | |
parent | 47794b9d3ee2e8fad92d5beeea5c4ec3b7e515f5 (diff) | |
download | ffmpeg-27e7492771a8b7ed8df28139e439c4a5a7b053e3.tar.gz |
asfdec: add a debug message about skipped tags.
Patch from Anton Khirnov wyskas gmail
Originally committed as revision 22018 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asfdec.c')
-rw-r--r-- | libavformat/asfdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c index ae59a996e7..129f5968fd 100644 --- a/libavformat/asfdec.c +++ b/libavformat/asfdec.c @@ -169,6 +169,7 @@ static void get_tag(AVFormatContext *s, const char *key, int type, int len) } else { url_fskip(s->pb, len); av_freep(&value); + av_log(s, AV_LOG_DEBUG, "Unsupported value type %d in tag %s.\n", type, key); return; } if (!strncmp(key, "WM/", 3)) |