Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
胡斌
/
srs
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
winlin
2014-06-30 21:23:13 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fb70602f931d7626232c01ef471cf57421db2923
fb70602f
1 parent
0bd7d268
fix #111, always use 31bits timestamp. 0.9.143.
隐藏空白字符变更
内嵌
并排对比
正在显示
3 个修改的文件
包含
6 行增加
和
1 行删除
README.md
trunk/src/core/srs_core.hpp
trunk/src/rtmp/srs_protocol_rtmp_stack.cpp
README.md
查看文件 @
fb70602
...
...
@@ -242,6 +242,7 @@ Supported operating systems and hardware:
*
2013-10-17, Created.
<br/>
## History
*
v1.0, 2014-06-30, fix
[
#111
](
https://github.com/winlinvip/simple-rtmp-server/issues/111
)
, always use 31bits timestamp. 0.9.143.
*
v1.0, 2014-06-28, response the call message with null. 0.9.137
*
v1.0, 2014-06-28, fix
[
#110
](
https://github.com/winlinvip/simple-rtmp-server/issues/110
)
, thread start segment fault, thread cycle stop destroy thread. 0.9.136
*
v1.0, 2014-06-27, fix
[
#109
](
https://github.com/winlinvip/simple-rtmp-server/issues/109
)
, fix the system jump time, adjust system startup time. 0.9.135
...
...
trunk/src/core/srs_core.hpp
查看文件 @
fb70602
...
...
@@ -31,7 +31,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// current release version
#define VERSION_MAJOR "0"
#define VERSION_MINOR "9"
#define VERSION_REVISION "14
2
"
#define VERSION_REVISION "14
3
"
#define RTMP_SIG_SRS_VERSION VERSION_MAJOR"."VERSION_MINOR"."VERSION_REVISION
// server info.
#define RTMP_SIG_SRS_KEY "SRS"
...
...
trunk/src/rtmp/srs_protocol_rtmp_stack.cpp
查看文件 @
fb70602
...
...
@@ -1128,6 +1128,10 @@ int SrsProtocol::read_message_header(SrsChunkStream* chunk, char fmt, int bh_siz
pp
[
2
]
=
*
p
++
;
pp
[
1
]
=
*
p
++
;
pp
[
0
]
=
*
p
++
;
// always use 31bits timestamp, for some server may use 32bits extended timestamp.
// @see https://github.com/winlinvip/simple-rtmp-server/issues/111
timestamp
&=
0x7fffffff
;
/**
* RTMP specification and ffmpeg/librtmp is false,
...
...
请
注册
或
登录
后发表评论