diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-03-09 16:30:03 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-03-12 11:09:45 +0100 |
commit | a4472ac01e86f9fae5adb9034f2777b86a9c5480 (patch) | |
tree | 80d9a366c765596141b9468c7fd0dd89af4dfd58 /libavformat/anm.c | |
parent | 8f10f1a6dc0d326a146e169860a2de7a8356fdab (diff) | |
download | ffmpeg-a4472ac01e86f9fae5adb9034f2777b86a9c5480.tar.gz |
Add informative messages to av_log_ask_for_sample calls lacking them
Diffstat (limited to 'libavformat/anm.c')
-rw-r--r-- | libavformat/anm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/anm.c b/libavformat/anm.c index dc24e78941..064b15739f 100644 --- a/libavformat/anm.c +++ b/libavformat/anm.c @@ -163,7 +163,7 @@ static int read_header(AVFormatContext *s) return 0; invalid: - av_log_ask_for_sample(s, NULL); + av_log_ask_for_sample(s, "Invalid header element encountered.\n"); return AVERROR_PATCHWELCOME; } |