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-05-04 11:11:51 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
106270c8aa80b8d7f391169cbe83a215922c0886
106270c8
1 parent
a4410a4f
refine log messages.
隐藏空白字符变更
内嵌
并排对比
正在显示
4 个修改的文件
包含
5 行增加
和
5 行删除
README.md
trunk/src/app/srs_app_thread.cpp
trunk/src/rtmp/srs_protocol_rtmp_stack.cpp
trunk/src/rtmp/srs_protocol_rtmp_stack.hpp
README.md
查看文件 @
106270c
...
...
@@ -54,13 +54,13 @@ git clone https://code.csdn.net/winlinvip/srs-csdn.git
<tr>
<td><a
href=
"https://github.com/winlinvip/srs.win"
target=
"_blank"
>
SRS-Windows
</a></td>
<td>
SRS服务器
<br/>
Windows平台分支
</td>
<td><a
href=
"https://github.com/suhetao"
target=
"_blank"
>
suhetao
</a></td>
<td><a
href=
"https://github.com/suhetao"
target=
"_blank"
>
suhetao
<
br/>
核桃
<
/a></td>
<td><a href="https://github.com/suhetao" target="_blank">suhetao(suhetao@gmail.com)</a></td>
</tr>
<tr>
<td><a
href=
"https://github.com/winlinvip/srs.librtmp.win"
target=
"_blank"
>
SRS-LIBRTMP-Windows
</a></td>
<td>
SRS-LIBRTMP客户端库
<br/>
Windows平台分支
</td>
<td><a
href=
"https://github.com/chadwangcn"
target=
"_blank"
>
chad.wang
</a></td>
<td><a
href=
"https://github.com/chadwangcn"
target=
"_blank"
>
chad.wang
<
br/>
videoWorker
<
/a></td>
<td><a href="https://github.com/chadwangcn" target="_blank">chad.wang(chad.wang.cn@gmail.com)</a></td>
</tr>
</table>
...
...
trunk/src/app/srs_app_thread.cpp
查看文件 @
106270c
...
...
@@ -166,7 +166,7 @@ failed:
}
handler
->
on_thread_stop
();
srs_
trace
(
"thread cycle finished"
);
srs_
info
(
"thread cycle finished"
);
}
void
*
SrsThread
::
thread_fun
(
void
*
arg
)
...
...
trunk/src/rtmp/srs_protocol_rtmp_stack.cpp
查看文件 @
106270c
...
...
@@ -713,7 +713,7 @@ int SrsProtocol::do_decode_message(SrsMessageHeader& header, SrsStream* stream,
}
// default packet to drop message.
srs_
trace
(
"drop the AMF0/AMF3 command message, command_name=%s"
,
command
.
c_str
());
srs_
info
(
"drop the AMF0/AMF3 command message, command_name=%s"
,
command
.
c_str
());
*
ppacket
=
packet
=
new
SrsPacket
();
return
ret
;
}
else
if
(
header
.
is_user_control_message
())
{
...
...
trunk/src/rtmp/srs_protocol_rtmp_stack.hpp
查看文件 @
106270c
...
...
@@ -1176,7 +1176,7 @@ int srs_rtmp_expect_message(SrsProtocol* protocol, SrsMessage** pmsg, T** ppacke
T
*
pkt
=
dynamic_cast
<
T
*>
(
packet
);
if
(
!
pkt
)
{
srs_
trace
(
"drop message(type=%d, size=%d, time=%"
PRId64
", sid=%d)."
,
srs_
info
(
"drop message(type=%d, size=%d, time=%"
PRId64
", sid=%d)."
,
msg
->
header
.
message_type
,
msg
->
header
.
payload_length
,
msg
->
header
.
timestamp
,
msg
->
header
.
stream_id
);
srs_freep
(
msg
);
...
...
请
注册
或
登录
后发表评论