OSDN Git Service

fix comment, get/show_bits(0) does not work
authorStefan Gehrer <stefan.gehrer@gmx.de>
Mon, 19 Feb 2007 20:59:40 +0000 (20:59 +0000)
committerStefan Gehrer <stefan.gehrer@gmx.de>
Mon, 19 Feb 2007 20:59:40 +0000 (20:59 +0000)
Originally committed as revision 8029 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/bitstream.h

index 29e0f44..a92b7cf 100644 (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){