Skip to content

Commit

Permalink
Merge pull request #5 from TakuSemba/patch-1
Browse files Browse the repository at this point in the history
fix RtmpMuxer.java
  • Loading branch information
newzulu-octiplex committed May 18, 2018
2 parents 0f30632 + 6a34c7f commit 3de66ef
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -270,7 +270,7 @@ private void handshake() throws IOException
* C1 A. time
*/
long currentTime = time.getCurrentTimestamp();
buffer[1] = (byte) ((currentTime >> 8) & 255);
buffer[1] = (byte) ((currentTime >> 24) & 255);
buffer[2] = (byte) ((currentTime >> 16) & 255);
buffer[3] = (byte) ((currentTime >> 8) & 255);
buffer[4] = (byte) (currentTime & 255);
Expand Down

0 comments on commit 3de66ef

Please sign in to comment.