Commit 150c5543 authored by Clément Bœsch's avatar Clément Bœsch

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 97962b27 / 72ca830f
parent cddd15ba
...@@ -363,7 +363,7 @@ static int decode_frame_header(AVCodecContext *ctx, ...@@ -363,7 +363,7 @@ static int decode_frame_header(AVCodecContext *ctx,
/* general header */ /* general header */
if ((res = init_get_bits8(&s->gb, data, size)) < 0) { 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; return res;
} }
if (get_bits(&s->gb, 2) != 0x2) { // frame marker if (get_bits(&s->gb, 2) != 0x2) { // frame marker
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment