git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10828 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
michael 2003-09-06 14:32:26 +00:00
parent 88c924c520
commit 05ddfeb26e
1 changed files with 1 additions and 1 deletions

View File

@ -575,7 +575,7 @@ static inline int put_v(BufferContext *bc, uint64_t val){
if(val>>i == 0) break;
}
for(i-=7; i>0; i-=8){
for(i-=7; i>0; i-=7){
*(bc->buf_ptr++)= 0x80 | (val>>i);
}
*(bc->buf_ptr++)= val&0x7F;