[FFmpeg-cvslog] r17429 - trunk/libavcodec/golomb.h

michael subversion
Wed Feb 18 12:57:12 CET 2009


Author: michael
Date: Wed Feb 18 12:57:11 2009
New Revision: 17429

Log:
Clarify get_ue_golomb_31() behavior with >31.

Modified:
   trunk/libavcodec/golomb.h

Modified: trunk/libavcodec/golomb.h
==============================================================================
--- trunk/libavcodec/golomb.h	Wed Feb 18 12:46:14 2009	(r17428)
+++ trunk/libavcodec/golomb.h	Wed Feb 18 12:57:11 2009	(r17429)
@@ -75,7 +75,8 @@ static inline int get_ue_golomb(GetBitCo
 }
 
  /**
- * read unsigned exp golomb code, constraint to a max of 31
+ * read unsigned exp golomb code, constraint to a max of 31.
+ * the return value is undefined if the stored value exceeds 31.
  */
 static inline int get_ue_golomb_31(GetBitContext *gb){
     unsigned int buf;




More information about the ffmpeg-cvslog mailing list