Skip to content
Snippets Groups Projects
Commit c1f28339 authored by zzugyl's avatar zzugyl
Browse files

Bugfix.

parent ec9c7ea1
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