Commit 72b3c28b authored by stefang's avatar stefang

fix comment, get/show_bits(0) does not work


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8029 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 73e2f2ea
...@@ -662,7 +662,7 @@ static inline int get_sbits(GetBitContext *s, int n){ ...@@ -662,7 +662,7 @@ static inline int get_sbits(GetBitContext *s, int n){
} }
/** /**
* reads 0-17 bits. * reads 1-17 bits.
* Note, the alt bitstream reader can read up to 25 bits, but the libmpeg2 reader can't * 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){ static inline unsigned int get_bits(GetBitContext *s, int n){
...@@ -676,7 +676,7 @@ static inline unsigned int get_bits(GetBitContext *s, int n){ ...@@ -676,7 +676,7 @@ static inline unsigned int get_bits(GetBitContext *s, int n){
} }
/** /**
* shows 0-17 bits. * shows 1-17 bits.
* Note, the alt bitstream reader can read up to 25 bits, but the libmpeg2 reader can't * 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){ static inline unsigned int show_bits(GetBitContext *s, int n){
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment