Browse Source

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
tags/n2.2-rc1
Clément Bœsch 12 years ago
parent
commit
150c5543ff
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/vp9.c

+ 1
- 1
libavcodec/vp9.c View File

@@ -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


Loading…
Cancel
Save