[Ffmpeg-cvslog] r8029 - trunk/libavcodec/bitstream.h
stefang
subversion
Mon Feb 19 21:59:41 CET 2007
Author: stefang
Date: Mon Feb 19 21:59:40 2007
New Revision: 8029
Modified:
trunk/libavcodec/bitstream.h
Log:
fix comment, get/show_bits(0) does not work
Modified: trunk/libavcodec/bitstream.h
==============================================================================
--- trunk/libavcodec/bitstream.h (original)
+++ trunk/libavcodec/bitstream.h Mon Feb 19 21:59:40 2007
@@ -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){
More information about the ffmpeg-cvslog
mailing list