1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

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

Originally committed as revision 8029 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefan Gehrer 2007-02-19 20:59:40 +00:00
parent bc15573283
commit 0ac47d632f

View File

@ -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
*/
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
*/
static inline unsigned int show_bits(GetBitContext *s, int n){