From 6851130fd61ff8af615f6270f3a3c8dec7a0cfbd Mon Sep 17 00:00:00 2001 From: Lou Logan Date: Thu, 28 Jun 2012 12:01:06 -0800 Subject: cosmetics: minor libavcodec spelling errors Also update some common misspelled words in patcheck Signed-off-by: Michael Niedermayer --- libavcodec/diracdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/diracdec.c') diff --git a/libavcodec/diracdec.c b/libavcodec/diracdec.c index 1b25d3c8cd..9db0eda1be 100644 --- a/libavcodec/diracdec.c +++ b/libavcodec/diracdec.c @@ -861,7 +861,7 @@ static int dirac_unpack_prediction_parameters(DiracContext *s) return -1; } if (s->plane[0].xbsep > s->plane[0].xblen || s->plane[0].ybsep > s->plane[0].yblen) { - av_log(s->avctx, AV_LOG_ERROR, "Block seperation greater than size\n"); + av_log(s->avctx, AV_LOG_ERROR, "Block separation greater than size\n"); return -1; } if (FFMAX(s->plane[0].xblen, s->plane[0].yblen) > MAX_BLOCKSIZE) { @@ -961,7 +961,7 @@ static int dirac_unpack_idwt_params(DiracContext *s) CHECKEDREAD(s->wavelet_depth, tmp > MAX_DWT_LEVELS || tmp < 1, "invalid number of DWT decompositions\n") if (!s->low_delay) { - /* Codeblock paramaters (core syntax only) */ + /* Codeblock parameters (core syntax only) */ if (get_bits1(gb)) { for (i = 0; i <= s->wavelet_depth; i++) { CHECKEDREAD(s->codeblock[i].width , tmp < 1, "codeblock width invalid\n") -- cgit v1.2.3