"put_s should store signed values. Spotted on #mplayerdev by someone I

don't remember." patch by (Luca Barbato [lu_zero gentoo org)

Originally committed as revision 4035 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Luca Barbato 2005-03-13 01:58:29 +00:00 committed by Michael Niedermayer
parent 27a5fe5fdf
commit 7071e56799
1 changed files with 1 additions and 1 deletions

View File

@ -420,7 +420,7 @@ static void put_str(ByteIOContext *bc, const char *string){
put_buffer(bc, string, len);
}
static void put_s(ByteIOContext *bc, uint64_t val){
static void put_s(ByteIOContext *bc, int64_t val){
if (val<=0) put_v(bc, -2*val );
else put_v(bc, 2*val-1);
}