[FFmpeg-cvslog] avcodec/vp9: fix "initialize" typo.

Clément Bœsch git at videolan.org
Fri Nov 15 23:29:19 CET 2013


ffmpeg | branch: master | Clément Bœsch <u at pkh.me> | Fri Nov 15 23:26:45 2013 +0100| [150c5543ffeec761da99a7082ac6d02f0312f971] | committer: Clément Bœsch

avcodec/vp9: fix "initialize" typo.

Originally spotted and fixed by one of these developers:
    Anton Khirnov <anton at khirnov.net>
    Diego Biurrun <diego at biurrun.de>
    Luca Barbato <lu_zero at gentoo.org>
    Martin Storsjö <martin at martin.st>

See 97962b2 / 72ca830

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=150c5543ffeec761da99a7082ac6d02f0312f971
---

 libavcodec/vp9.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/vp9.c b/libavcodec/vp9.c
index bd288ce..d738482 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



More information about the ffmpeg-cvslog mailing list