summaryrefslogtreecommitdiff
path: root/libavcodec/bitstream.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2005-06-17 15:02:53 +0000
committerDiego Biurrun <diego@biurrun.de>2005-06-17 15:02:53 +0000
commitbb628dae442f85fc8814d7c60c744a409fa001ab (patch)
treed91864ccb8c065a7fc9a95829632a911e654a7f3 /libavcodec/bitstream.h
parent36940eca762ea3ad77135c95230af65da74a56a6 (diff)
spelling fixes
patch by Peter Robinson pbrobinson @ at @ gmail . dot . com and myself Originally committed as revision 4382 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/bitstream.h')
-rw-r--r--libavcodec/bitstream.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h
index ce664cee17..0e60ea1d44 100644
--- a/libavcodec/bitstream.h
+++ b/libavcodec/bitstream.h
@@ -334,14 +334,14 @@ GET_CACHE(name, gb)
will output the contents of the internal cache, next bit is MSB of 32 or 64 bit (FIXME 64bit)
SHOW_UBITS(name, gb, num)
- will return the nest num bits
+ will return the next num bits
SHOW_SBITS(name, gb, num)
- will return the nest num bits and do sign extension
+ will return the next num bits and do sign extension
SKIP_BITS(name, gb, num)
will skip over the next num bits
- note, this is equinvalent to SKIP_CACHE; SKIP_COUNTER
+ note, this is equivalent to SKIP_CACHE; SKIP_COUNTER
SKIP_CACHE(name, gb, num)
will remove the next num bits from the cache (note SKIP_COUNTER MUST be called before UPDATE_CACHE / CLOSE_READER)
@@ -353,7 +353,7 @@ LAST_SKIP_CACHE(name, gb, num)
will remove the next num bits from the cache if it is needed for UPDATE_CACHE otherwise it will do nothing
LAST_SKIP_BITS(name, gb, num)
- is equinvalent to SKIP_LAST_CACHE; SKIP_COUNTER
+ is equivalent to SKIP_LAST_CACHE; SKIP_COUNTER
for examples see get_bits, show_bits, skip_bits, get_vlc
*/
@@ -598,7 +598,7 @@ static inline int get_sbits(GetBitContext *s, int n){
/**
* reads 0-17 bits.
- * Note, the alt bitstream reader can read upto 25 bits, but the libmpeg2 reader cant
+ * Note, the alt bitstream reader can read up to 25 bits, but the libmpeg2 reader can't
*/
static inline unsigned int get_bits(GetBitContext *s, int n){
register int tmp;
@@ -614,7 +614,7 @@ unsigned int get_bits_long(GetBitContext *s, int n);
/**
* shows 0-17 bits.
- * Note, the alt bitstream reader can read upto 25 bits, but the libmpeg2 reader cant
+ * Note, the alt bitstream reader can read up to 25 bits, but the libmpeg2 reader can't
*/
static inline unsigned int show_bits(GetBitContext *s, int n){
register int tmp;