diff bitstream.h @ 4548:8abb0317d1eb libavcodec

fix comment, get/show_bits(0) does not work
author stefang
date Mon, 19 Feb 2007 20:59:40 +0000
parents 892dba2cf52a
children 6ac364a4ce2b
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){