Commit 7a86376a authored by kostya's avatar kostya

Revert get_num() to old behaviour in order to handle

incorrect RMs generated by lavf muxer.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10892 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0e28f954
......@@ -366,7 +366,7 @@ static int get_num(ByteIOContext *pb, int *len)
n = get_be16(pb);
(*len)-=2;
n &= 0x7FFF;
// n &= 0x7FFF;
if (n >= 0x4000) {
return n - 0x4000;
} else {
......
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