summaryrefslogtreecommitdiff
path: root/libavcodec/bitstream.h
diff options
context:
space:
mode:
authorStefan Gehrer <stefan.gehrer@gmx.de>2007-02-19 20:59:40 +0000
committerStefan Gehrer <stefan.gehrer@gmx.de>2007-02-19 20:59:40 +0000
commit0ac47d632fc1f119f4d36932a7d4bbbb305d1fa3 (patch)
treeb35d1a1f2bd457fe70db2bc5547dfebbae195063 /libavcodec/bitstream.h
parentbc1557328359a09461ea36577c60f60fecda511b (diff)
fix comment, get/show_bits(0) does not work
Originally committed as revision 8029 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/bitstream.h')
-rw-r--r--libavcodec/bitstream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h
index 29e0f441e2..a92b7cfff8 100644
--- a/libavcodec/bitstream.h
+++ b/libavcodec/bitstream.h
@@ -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){