diff options
author | Jun Zhao <barryjzhao@tencent.com> | 2019-03-23 11:28:15 +0800 |
---|---|---|
committer | Jun Zhao <barryjzhao@tencent.com> | 2019-03-23 12:06:06 +0800 |
commit | fba42b33b7f25a97b4a05ac62d0b242c51be9e17 (patch) | |
tree | e3654000e8a73e3787d2749a1a31319ad44f1644 /libavformat/flvdec.c | |
parent | 305025c8aedeefd5864f4e560e11a9a41d602f60 (diff) | |
download | ffmpeg-fba42b33b7f25a97b4a05ac62d0b242c51be9e17.tar.gz |
lavf/flvdec: fix typo in log message
fix typo in log message, it's come from cd141e71bd3
Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
Diffstat (limited to 'libavformat/flvdec.c')
-rw-r--r-- | libavformat/flvdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index 92455c76c7..c4d5278a9b 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c @@ -386,7 +386,7 @@ static int parse_keyframes_index(AVFormatContext *s, AVIOContext *ioc, int64_t m int64_t initial_pos = avio_tell(ioc); if (flv->keyframe_count > 0) { - av_log(s, AV_LOG_DEBUG, "keyframes have been paresed\n"); + av_log(s, AV_LOG_DEBUG, "keyframes have been parsed\n"); return 0; } av_assert0(!flv->keyframe_times); |