rtmp: remove redundant size adjustment

This commit is contained in:
Dan Kortschak 2018-09-04 14:07:49 +09:30
parent 078ba12093
commit 7bfea781b4
1 changed files with 1 additions and 1 deletions

View File

@ -2194,7 +2194,7 @@ func C_RTMP_Write(r *C_RTMP, buf []byte) int {
buf = buf[4:]
}
}
return size + len(buf)
return size
}
/*