diff options
author | Lou Logan <lou@lrcd.com> | 2014-06-02 18:46:04 -0800 |
---|---|---|
committer | Lou Logan <lou@lrcd.com> | 2014-06-03 10:58:19 -0800 |
commit | 88f2586adbcdcb350b2923a82bcb07c5a519bd1d (patch) | |
tree | d4c93e604c90148368ae9c3327be9839c33f3c27 /libavcodec/diracdec.c | |
parent | 137c5e115b0f1bff1867a3a09f3a2f14cfda2fb5 (diff) | |
download | ffmpeg-88f2586adbcdcb350b2923a82bcb07c5a519bd1d.tar.gz |
fix various typos
Signed-off-by: Lou Logan <lou@lrcd.com>
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 24c540e314..d7cca7e0da 100644 --- a/libavcodec/diracdec.c +++ b/libavcodec/diracdec.c @@ -199,7 +199,7 @@ typedef struct DiracContext { uint8_t *edge_emu_buffer[4]; uint8_t *edge_emu_buffer_base; - uint16_t *mctmp; /* buffer holding the MC data multipled by OBMC weights */ + uint16_t *mctmp; /* buffer holding the MC data multiplied by OBMC weights */ uint8_t *mcscratch; int buffer_stride; @@ -694,7 +694,7 @@ static void lowdelay_subband(DiracContext *s, GetBitContext *gb, int quant, IDWTELEM *buf1 = b1->ibuf + top * b1->stride; IDWTELEM *buf2 = b2 ? b2->ibuf + top * b2->stride : NULL; int x, y; - /* we have to constantly check for overread since the spec explictly + /* we have to constantly check for overread since the spec explicitly requires this, with the meaning that all remaining coeffs are set to 0 */ if (get_bits_count(gb) >= bits_end) return; |