diff options
author | Lou Logan <lou@lrcd.com> | 2012-06-28 12:01:06 -0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-06-29 14:54:15 +0200 |
commit | 6851130fd61ff8af615f6270f3a3c8dec7a0cfbd (patch) | |
tree | 47212f8f88c480c3fe9c66c659ad5b922d32389a /libavcodec/diracdec.c | |
parent | 0692d4c890bcefa708b8ee05c9f89baa2b25a22a (diff) | |
download | ffmpeg-6851130fd61ff8af615f6270f3a3c8dec7a0cfbd.tar.gz |
cosmetics: minor libavcodec spelling errors
Also update some common misspelled words in patcheck
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/diracdec.c')
-rw-r--r-- | libavcodec/diracdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
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") |