Commit 2ea5d78a authored by michael's avatar michael

Clarify get_ue_golomb_31() behavior with >31.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17429 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent dce9e3d8
......@@ -75,7 +75,8 @@ static inline int get_ue_golomb(GetBitContext *gb){
}
/**
* 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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment