Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
ZLMediaKit
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
张翔宇
ZLMediaKit
Commits
bb03af0f
Commit
bb03af0f
authored
Sep 18, 2018
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化代码
parent
83df7456
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
42 行增加
和
6 行删除
+42
-6
src/Device/Device.cpp
+0
-1
src/Player/PlayerBase.h
+13
-0
src/Rtmp/RtmpPlayerImp.h
+12
-1
src/Rtsp/Rtsp.cpp
+2
-2
src/Rtsp/RtspPlayerImp.h
+15
-2
没有找到文件。
src/Device/Device.cpp
查看文件 @
bb03af0f
...
...
@@ -270,7 +270,6 @@ inline void DevChannel::makeSDP_AAC(unsigned char *fixedHeader) {
void
DevChannel
::
makeSDP
(
const
string
&
strSdp
)
{
onGetSDP
(
strSdp
);
regist
();
}
void
DevChannel
::
initVideo
(
const
VideoInfo
&
info
)
{
...
...
src/Player/PlayerBase.h
查看文件 @
bb03af0f
...
...
@@ -34,9 +34,11 @@
#include "Player.h"
#include "Network/Socket.h"
#include "Util/mini.h"
#include "Common/MediaSource.h"
using
namespace
std
;
using
namespace
ZL
::
Util
;
using
namespace
ZL
::
Media
;
using
namespace
ZL
::
Network
;
namespace
ZL
{
...
...
@@ -92,6 +94,7 @@ public:
virtual
float
getDuration
()
const
{
return
0
;};
virtual
float
getProgress
()
const
{
return
0
;};
virtual
void
seekTo
(
float
fProgress
)
{};
virtual
void
setMediaSouce
(
const
MediaSource
::
Ptr
&
src
)
{};
protected
:
virtual
void
onShutdown
(
const
SockException
&
ex
)
{};
virtual
void
onPlayResult
(
const
SockException
&
ex
)
{};
...
...
@@ -226,6 +229,14 @@ public:
}
return
PlayerBase
::
seekTo
(
fProgress
);
};
void
setMediaSouce
(
const
MediaSource
::
Ptr
&
src
)
override
{
if
(
m_parser
)
{
return
m_parser
->
setMediaSouce
(
src
);
}
m_pMediaSrc
=
src
;
};
protected
:
void
onShutdown
(
const
SockException
&
ex
)
override
{
if
(
m_shutdownCB
)
{
...
...
@@ -238,11 +249,13 @@ protected:
m_playResultCB
=
nullptr
;
}
}
protected
:
function
<
void
(
const
SockException
&
ex
)
>
m_shutdownCB
;
function
<
void
(
const
SockException
&
ex
)
>
m_playResultCB
;
std
::
shared_ptr
<
Parser
>
m_parser
;
function
<
void
(
const
H264Frame
&
frame
)
>
m_onGetVideoCB
;
function
<
void
(
const
AdtsFrame
&
frame
)
>
m_onGetAudioCB
;
MediaSource
::
Ptr
m_pMediaSrc
;
};
}
/* namespace Player */
...
...
src/Rtmp/RtmpPlayerImp.h
查看文件 @
bb03af0f
...
...
@@ -32,6 +32,7 @@
#include "Common/config.h"
#include "RtmpPlayer.h"
#include "RtmpParser.h"
#include "RtmpMediaSource.h"
#include "Poller/Timer.h"
#include "Util/TimeTicker.h"
...
...
@@ -62,6 +63,10 @@ public:
private
:
//派生类回调函数
bool
onCheckMeta
(
AMFValue
&
val
)
override
{
m_pRtmpMediaSrc
=
dynamic_pointer_cast
<
RtmpMediaSource
>
(
m_pMediaSrc
);
if
(
m_pRtmpMediaSrc
){
m_pRtmpMediaSrc
->
onGetMetaData
(
val
);
}
try
{
m_parser
.
reset
(
new
RtmpParser
(
val
));
m_parser
->
setOnVideoCB
(
m_onGetVideoCB
);
...
...
@@ -69,14 +74,20 @@ private:
return
true
;
}
catch
(
std
::
exception
&
ex
)
{
WarnL
<<
ex
.
what
();
return
false
;
return
m_pRtmpMediaSrc
?
true
:
false
;
}
}
void
onMediaData
(
const
RtmpPacket
::
Ptr
&
chunkData
)
override
{
if
(
m_parser
){
m_parser
->
inputRtmp
(
chunkData
);
}
if
(
m_pRtmpMediaSrc
){
m_pRtmpMediaSrc
->
onGetMedia
(
chunkData
);
}
}
private
:
RtmpMediaSource
::
Ptr
m_pRtmpMediaSrc
;
};
...
...
src/Rtsp/Rtsp.cpp
查看文件 @
bb03af0f
...
...
@@ -58,6 +58,7 @@ int parserSDP(const string& sdp, RtspTrack Track[2]) {
pos_end
=
sdp
.
size
();
}
auto
sdp_mid
=
sdp
.
substr
(
pos_head
,
pos_end
-
pos_head
);
pos_head
=
pos_end
;
Track
[
track_cnt
].
trackSdp
=
sdp_mid
;
Track
[
track_cnt
].
inited
=
false
;
Track
[
track_cnt
].
PT
=
atoi
(
FindField
(
sdp_mid
.
c_str
(),
"a=rtpmap:"
,
" "
).
c_str
());
...
...
@@ -72,9 +73,8 @@ int parserSDP(const string& sdp, RtspTrack Track[2]) {
Track
[
track_cnt
].
type
=
TrackAudio
;
}
else
{
//不识别的track
return
track_cnt
;
continue
;
}
pos_head
=
pos_end
;
track_cnt
++
;
}
return
track_cnt
;
...
...
src/Rtsp/RtspPlayerImp.h
查看文件 @
bb03af0f
...
...
@@ -65,6 +65,10 @@ public:
private
:
//派生类回调函数
bool
onCheckSDP
(
const
string
&
sdp
,
const
RtspTrack
*
track
,
int
trackCnt
)
override
{
m_pRtspMediaSrc
=
dynamic_pointer_cast
<
RtspMediaSource
>
(
m_pMediaSrc
);
if
(
m_pRtspMediaSrc
){
m_pRtspMediaSrc
->
onGetSDP
(
sdp
);
}
try
{
m_parser
.
reset
(
new
RtpParser
(
sdp
));
m_parser
->
setOnVideoCB
(
m_onGetVideoCB
);
...
...
@@ -72,12 +76,21 @@ private:
return
true
;
}
catch
(
std
::
exception
&
ex
)
{
WarnL
<<
ex
.
what
();
return
false
;
return
m_pRtspMediaSrc
?
true
:
false
;
}
}
void
onRecvRTP
(
const
RtpPacket
::
Ptr
&
rtppt
,
const
RtspTrack
&
track
)
override
{
m_parser
->
inputRtp
(
*
rtppt
);
if
(
m_parser
){
m_parser
->
inputRtp
(
*
rtppt
);
}
if
(
m_pRtspMediaSrc
){
m_pRtspMediaSrc
->
onGetRTP
(
rtppt
,
true
);
}
}
private
:
RtspMediaSource
::
Ptr
m_pRtspMediaSrc
;
};
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论