summaryrefslogtreecommitdiff
path: root/libavformat/cafdec.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2011-04-23 10:19:21 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-04-23 10:19:21 +0200
commit2a2146aac0e1c7649d674905b6a6645b722aef2e (patch)
treef983447e103231172d77c95ab987955239d7909d /libavformat/cafdec.c
parente499187f2eed5a1e488b0da589dbe89f1c5dc480 (diff)
Extend unknown CAF chunk warning message: Print size.
Diffstat (limited to 'libavformat/cafdec.c')
-rw-r--r--libavformat/cafdec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/cafdec.c b/libavformat/cafdec.c
index 16c4674589..43d466f8c4 100644
--- a/libavformat/cafdec.c
+++ b/libavformat/cafdec.c
@@ -259,8 +259,8 @@ static int read_header(AVFormatContext *s,
default:
#define _(x) ((x) >= ' ' ? (x) : ' ')
- av_log(s, AV_LOG_WARNING, "skipping CAF chunk: %08X (%c%c%c%c)\n",
- tag, _(tag>>24), _((tag>>16)&0xFF), _((tag>>8)&0xFF), _(tag&0xFF));
+ av_log(s, AV_LOG_WARNING, "skipping CAF chunk: %08X (%c%c%c%c), size %"PRId64"\n",
+ tag, _(tag>>24), _((tag>>16)&0xFF), _((tag>>8)&0xFF), _(tag&0xFF), size);
#undef _
case MKBETAG('f','r','e','e'):
if (size < 0)