You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
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:
@@ -607,7 +607,6 @@ ebml_read_sint (MatroskaDemuxContext *matroska,
|
||||
negative = 1;
|
||||
*num &= ~0x80;
|
||||
}
|
||||
*num = 0;
|
||||
while (n++ < size)
|
||||
*num = (*num << 8) | get_byte(pb);
|
||||
|
||||
|
Reference in New Issue
Block a user