diff options
author | Clément Bœsch <u@pkh.me> | 2013-11-15 23:26:45 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2013-11-15 23:28:48 +0100 |
commit | 150c5543ffeec761da99a7082ac6d02f0312f971 (patch) | |
tree | fb5e7a3ebcf162c89d27278cf8f14f051a54f276 /libavcodec/vp9.c | |
parent | cddd15ba5c9cd2e92d2f2942e0fc40bf3bf56115 (diff) | |
download | ffmpeg-150c5543ffeec761da99a7082ac6d02f0312f971.tar.gz |
avcodec/vp9: fix "initialize" typo.
Originally spotted and fixed by one of these developers:
Anton Khirnov <anton@khirnov.net>
Diego Biurrun <diego@biurrun.de>
Luca Barbato <lu_zero@gentoo.org>
Martin Storsjö <martin@martin.st>
See 97962b2 / 72ca830
Diffstat (limited to 'libavcodec/vp9.c')
-rw-r--r-- | libavcodec/vp9.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp9.c b/libavcodec/vp9.c index bd288ce9d6..d738482f88 100644 --- a/libavcodec/vp9.c +++ b/libavcodec/vp9.c @@ -363,7 +363,7 @@ static int decode_frame_header(AVCodecContext *ctx, /* general header */ if ((res = init_get_bits8(&s->gb, data, size)) < 0) { - av_log(ctx, AV_LOG_ERROR, "Failed to intialize bitstream reader\n"); + av_log(ctx, AV_LOG_ERROR, "Failed to initialize bitstream reader\n"); return res; } if (get_bits(&s->gb, 2) != 0x2) { // frame marker |