aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/asfdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-06-29 04:55:06 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-06-29 04:55:06 +0200
commitbe4e1f28fd652277f624f2fcafd6dc477a2201b7 (patch)
treeeb3711637618de4a26206a58388762d1aa452635 /libavformat/asfdec.c
parentca3b27455234fbd216a1be088587c97a1927e316 (diff)
downloadffmpeg-be4e1f28fd652277f624f2fcafd6dc477a2201b7.tar.gz
avformat/asfdec: Print packet_obj_size in case it is invalid
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/asfdec.c')
-rw-r--r--libavformat/asfdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c
index b27598227e..60acf34146 100644
--- a/libavformat/asfdec.c
+++ b/libavformat/asfdec.c
@@ -1063,7 +1063,7 @@ static int asf_read_frame_header(AVFormatContext *s, AVIOContext *pb)
AVRational aspect;
asfst->packet_obj_size = avio_rl32(pb);
if (asfst->packet_obj_size >= (1 << 24) || asfst->packet_obj_size <= 0) {
- av_log(s, AV_LOG_ERROR, "packet_obj_size invalid\n");
+ av_log(s, AV_LOG_ERROR, "packet_obj_size %d invalid\n", asfst->packet_obj_size);
asfst->packet_obj_size = 0;
return AVERROR_INVALIDDATA;
}