diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-01-22 21:31:40 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-01-22 21:31:40 +0000 |
commit | 0b93103a31b2ab29b307fb17a726b9ba59da9ea4 (patch) | |
tree | 8acfb4691f47272d98f32b1f29c10bcdc18800f5 /libavformat | |
parent | ceba96cb26ee3635f38494346c1f5359368dbaf8 (diff) | |
download | ffmpeg-0b93103a31b2ab29b307fb17a726b9ba59da9ea4.tar.gz |
more correct error message
Originally committed as revision 7655 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/asf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/asf.c b/libavformat/asf.c index dd13458e01..c9b997d88f 100644 --- a/libavformat/asf.c +++ b/libavformat/asf.c @@ -817,7 +817,7 @@ static int64_t asf_read_pts(AVFormatContext *s, int stream_index, int64_t *ppos, asf_reset_header(s); for(;;){ if (av_read_frame(s, pkt) < 0){ - av_log(s, AV_LOG_INFO, "seek failed\n"); + av_log(s, AV_LOG_INFO, "asf_read_pts failed\n"); return AV_NOPTS_VALUE; } |