Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLou Logan <lou@lrcd.com>2014-06-03 06:46:04 +0400
committerLou Logan <lou@lrcd.com>2014-06-03 22:58:19 +0400
commit88f2586adbcdcb350b2923a82bcb07c5a519bd1d (patch)
treed4c93e604c90148368ae9c3327be9839c33f3c27 /libavcodec/diracdec.c
parent137c5e115b0f1bff1867a3a09f3a2f14cfda2fb5 (diff)
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.c4
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;