summaryrefslogtreecommitdiff
path: root/libavcodec/vp3.c
diff options
context:
space:
mode:
authorClément Bœsch <clement@stupeflix.com>2014-07-10 15:29:54 +0200
committerClément Bœsch <clement@stupeflix.com>2014-07-10 15:29:54 +0200
commit7e7168b82d0c42ba6895d4ea95da0c7da0f20573 (patch)
tree18fbe89a69f99cdf51be4fadae9dcfcccf273331 /libavcodec/vp3.c
parenteca1957c4cbee66a0b1f3dcabaffe68d61885f16 (diff)
Fix 2 coeffecient typo
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r--libavcodec/vp3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c
index 1df168bd50..3f04d8f258 100644
--- a/libavcodec/vp3.c
+++ b/libavcodec/vp3.c
@@ -1032,7 +1032,7 @@ static int unpack_vlcs(Vp3DecodeContext *s, GetBitContext *gb,
if (blocks_ended > s->num_coded_frags[plane][coeff_index])
av_log(s->avctx, AV_LOG_ERROR, "More blocks ended than coded!\n");
- // decrement the number of blocks that have higher coeffecients for each
+ // decrement the number of blocks that have higher coefficients for each
// EOB run at this level
if (blocks_ended)
for (i = coeff_index + 1; i < 64; i++)