Skip to content
Snippets Groups Projects
Commit 330942cb authored by Jeffer's avatar Jeffer
Browse files

Bugfix.

parent dc0be007
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -631,7 +631,7 @@ public class SrsFlvMuxer {
for (int i = bb.position(); i < bi.size - 3; i++) {
// not match.
if (bb.get(i) != 0x00 || bb.get(i + 1) != 0x00 || bb.get(i + 2) != 0x00) {
break;
continue;
}
// match N[00] 00 00 01, where N>=0
if (bb.get(i + 3) == 0x01) {
Loading
Loading
@@ -663,7 +663,6 @@ public class SrsFlvMuxer {
tbb.data = bb.slice();
tbb.size = bi.size - bb.position();
}
return tbb;
}
}
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment