diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2019-02-23 22:00:39 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-03-24 10:39:03 +0100 |
commit | e9dbc7b3098005ac73c28aeeb99d17c3e6e62ff9 (patch) | |
tree | 6a0bfa5db27a03423ee5a27d65ba0cf582e5788f | |
parent | 715b526d825a4bb4449d51c33ed31ee923b7d500 (diff) | |
download | ffmpeg-e9dbc7b3098005ac73c28aeeb99d17c3e6e62ff9.tar.gz |
avcodec/mlpdec: Insuffient typo
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit fc32e08941ea2795a3096e7a4013843e9ebf5fe3)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/mlpdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c index c50dc73e25..1834f85ce5 100644 --- a/libavcodec/mlpdec.c +++ b/libavcodec/mlpdec.c @@ -1169,7 +1169,7 @@ static int read_access_unit(AVCodecContext *avctx, void* data, } if (length < header_size + substr_header_size) { - av_log(m->avctx, AV_LOG_ERROR, "Insuffient data for headers\n"); + av_log(m->avctx, AV_LOG_ERROR, "Insufficient data for headers\n"); goto error; } |