aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2018-06-27 13:00:28 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2018-10-23 01:44:40 +0200
commitdd7d2770f331cb1d2b3cdb2b2dbdbe1ce9b2b807 (patch)
tree15365e4e7e074a221723ab5b5078405a60d6fbbc
parent181c3d82e9025ba60cf83376195e6d8ab800cafc (diff)
downloadffmpeg-dd7d2770f331cb1d2b3cdb2b2dbdbe1ce9b2b807.tar.gz
avcodec/escape124: Fix spelling errors in comment
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit f59c4e43915ed0528e2789f27ddb1635b59779df) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavcodec/escape124.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/escape124.c b/libavcodec/escape124.c
index 97267cfa5f..0965fdc3a7 100644
--- a/libavcodec/escape124.c
+++ b/libavcodec/escape124.c
@@ -223,8 +223,8 @@ static int escape124_decode_frame(AVCodecContext *avctx,
// This call also guards the potential depth reads for the
// codebook unpacking.
// Check if the amount we will read minimally is available on input.
- // The 64 represent the immedeatly next 2 frame_* elements read, the 23/4320
- // represent a lower bound of the space needed for skiped superblocks. Non
+ // The 64 represent the immediately next 2 frame_* elements read, the 23/4320
+ // represent a lower bound of the space needed for skipped superblocks. Non
// skipped SBs need more space.
if (get_bits_left(&gb) < 64 + s->num_superblocks * 23LL / 4320)
return -1;