fix a stupid bug in ebml_read_sint()
Originally committed as revision 8328 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
912c94f3ff
commit
0f3bd8ce1b
@ -607,7 +607,6 @@ ebml_read_sint (MatroskaDemuxContext *matroska,
|
|||||||
negative = 1;
|
negative = 1;
|
||||||
*num &= ~0x80;
|
*num &= ~0x80;
|
||||||
}
|
}
|
||||||
*num = 0;
|
|
||||||
while (n++ < size)
|
while (n++ < size)
|
||||||
*num = (*num << 8) | get_byte(pb);
|
*num = (*num << 8) | get_byte(pb);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user