diff options
author | Lou Logan <lou@lrcd.com> | 2016-03-28 14:07:47 -0800 |
---|---|---|
committer | Lou Logan <lou@lrcd.com> | 2016-03-28 14:13:17 -0800 |
commit | 06eef96b69d73a31f2b390955d1be0537214a0c8 (patch) | |
tree | ca45453b9853a6ad358966292639148a036f3a1a /libavcodec/ituh263dec.c | |
parent | 99f2a59c2f298c2a8c0d1058759fd0ae81bc8c2e (diff) | |
download | ffmpeg-06eef96b69d73a31f2b390955d1be0537214a0c8.tar.gz |
fix some a/an typos
Signed-off-by: Lou Logan <lou@lrcd.com>
Diffstat (limited to 'libavcodec/ituh263dec.c')
-rw-r--r-- | libavcodec/ituh263dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ituh263dec.c b/libavcodec/ituh263dec.c index 2e449f8eeb..00be202e62 100644 --- a/libavcodec/ituh263dec.c +++ b/libavcodec/ituh263dec.c @@ -167,7 +167,7 @@ static int h263_decode_gob_header(MpegEncContext *s) /* We have a GBSC probably with GSTUFF */ skip_bits(&s->gb, 16); /* Drop the zeros */ left= get_bits_left(&s->gb); - //MN: we must check the bits left or we might end in a infinite loop (or segfault) + //MN: we must check the bits left or we might end in an infinite loop (or segfault) for(;left>13; left--){ if(get_bits1(&s->gb)) break; /* Seek the '1' bit */ } @@ -313,7 +313,7 @@ static int h263p_decode_umotion(MpegEncContext * s, int pred) } /** - * read the next MVs for OBMC. yes this is a ugly hack, feel free to send a patch :) + * read the next MVs for OBMC. yes this is an ugly hack, feel free to send a patch :) */ static void preview_obmc(MpegEncContext *s){ GetBitContext gb= s->gb; |