changeset 4548:8abb0317d1eb libavcodec

fix comment, get/show_bits(0) does not work
author stefang
date Mon, 19 Feb 2007 20:59:40 +0000
parents 0022b81fc643
children 48442cb0ebfa
files bitstream.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/bitstream.h	Mon Feb 19 11:00:38 2007 +0000
+++ b/bitstream.h	Mon Feb 19 20:59:40 2007 +0000
@@ -662,7 +662,7 @@
 }
 
 /**
- * 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 @@
 }
 
 /**
- * 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){