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
0f6a7c16
Commit
0f6a7c16
authored
Oct 21, 2018
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
整理代码
parent
872c0c8b
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
184 行增加
和
128 行删除
+184
-128
src/RTP/AACRtpCodec.cpp
+20
-6
src/RTP/AACRtpCodec.h
+26
-12
src/RTP/H264RtpCodec.cpp
+104
-92
src/RTP/H264RtpCodec.h
+27
-12
src/RTP/RtpCodec.h
+7
-6
没有找到文件。
src/RTP/AACRtpCodec.cpp
查看文件 @
0f6a7c16
...
@@ -4,10 +4,23 @@
...
@@ -4,10 +4,23 @@
#include "AACRtpCodec.h"
#include "AACRtpCodec.h"
void
AACRtpCodec
::
inputFame
(
const
Frame
::
Ptr
&
frame
,
bool
key_pos
)
{
AACRtpEncoder
::
AACRtpEncoder
(
uint32_t
ui32Ssrc
,
uint32_t
ui32MtuSize
,
uint32_t
ui32SampleRate
,
uint8_t
ui8PlayloadType
,
uint8_t
ui8Interleaved
)
:
RtpInfo
(
ui32Ssrc
,
ui32MtuSize
,
ui32SampleRate
,
ui8PlayloadType
,
ui8Interleaved
)
{
}
void
AACRtpEncoder
::
inputFame
(
const
Frame
::
Ptr
&
frame
,
bool
key_pos
)
{
RtpCodec
::
inputFame
(
frame
,
key_pos
);
RtpCodec
::
inputFame
(
frame
,
key_pos
);
GET_CONFIG_AND_REGISTER
(
uint32_t
,
cycleMS
,
Config
::
Rtp
::
kCycleMS
);
GET_CONFIG_AND_REGISTER
(
uint32_t
,
cycleMS
,
Config
::
Rtp
::
kCycleMS
);
auto
uiStamp
=
frame
->
stamp
();
auto
uiStamp
=
frame
->
stamp
();
auto
pcData
=
frame
->
data
();
auto
pcData
=
frame
->
data
();
auto
iLen
=
frame
->
size
();
auto
iLen
=
frame
->
size
();
...
@@ -15,7 +28,7 @@ void AACRtpCodec::inputFame(const Frame::Ptr &frame, bool key_pos) {
...
@@ -15,7 +28,7 @@ void AACRtpCodec::inputFame(const Frame::Ptr &frame, bool key_pos) {
uiStamp
%=
cycleMS
;
uiStamp
%=
cycleMS
;
char
*
ptr
=
(
char
*
)
pcData
;
char
*
ptr
=
(
char
*
)
pcData
;
int
iSize
=
iLen
;
int
iSize
=
iLen
;
while
(
iSize
>
0
)
{
while
(
iSize
>
0
)
{
if
(
iSize
<=
m_ui32MtuSize
-
20
)
{
if
(
iSize
<=
m_ui32MtuSize
-
20
)
{
m_aucSectionBuf
[
0
]
=
0
;
m_aucSectionBuf
[
0
]
=
0
;
m_aucSectionBuf
[
1
]
=
16
;
m_aucSectionBuf
[
1
]
=
16
;
...
@@ -37,7 +50,7 @@ void AACRtpCodec::inputFame(const Frame::Ptr &frame, bool key_pos) {
...
@@ -37,7 +50,7 @@ void AACRtpCodec::inputFame(const Frame::Ptr &frame, bool key_pos) {
}
}
}
}
void
AACRtp
Codec
::
makeAACRtp
(
const
void
*
pData
,
unsigned
int
uiLen
,
bool
bMark
,
uint32_t
uiStamp
)
{
void
AACRtp
Encoder
::
makeAACRtp
(
const
void
*
pData
,
unsigned
int
uiLen
,
bool
bMark
,
uint32_t
uiStamp
)
{
uint16_t
u16RtpLen
=
uiLen
+
12
;
uint16_t
u16RtpLen
=
uiLen
+
12
;
m_ui32TimeStamp
=
(
m_ui32SampleRate
/
1000
)
*
uiStamp
;
m_ui32TimeStamp
=
(
m_ui32SampleRate
/
1000
)
*
uiStamp
;
uint32_t
ts
=
htonl
(
m_ui32TimeStamp
);
uint32_t
ts
=
htonl
(
m_ui32TimeStamp
);
...
@@ -75,7 +88,7 @@ void AACRtpCodec::makeAACRtp(const void *pData, unsigned int uiLen, bool bMark,
...
@@ -75,7 +88,7 @@ void AACRtpCodec::makeAACRtp(const void *pData, unsigned int uiLen, bool bMark,
/////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////
void
AACRtp
Codec
::
inputRtp
(
const
RtpPacket
::
Ptr
&
rtppack
,
bool
key_pos
)
{
void
AACRtp
Decoder
::
inputRtp
(
const
RtpPacket
::
Ptr
&
rtppack
,
bool
key_pos
)
{
RtpCodec
::
inputRtp
(
rtppack
,
key_pos
);
RtpCodec
::
inputRtp
(
rtppack
,
key_pos
);
int
length
=
rtppack
->
length
-
rtppack
->
offset
;
int
length
=
rtppack
->
length
-
rtppack
->
offset
;
...
@@ -95,7 +108,7 @@ void AACRtpCodec::inputRtp(const RtpPacket::Ptr &rtppack, bool key_pos) {
...
@@ -95,7 +108,7 @@ void AACRtpCodec::inputRtp(const RtpPacket::Ptr &rtppack, bool key_pos) {
}
}
}
}
void
AACRtp
Codec
::
onGetAdts
(
const
AdtsFrame
::
Ptr
&
frame
)
{
void
AACRtp
Decoder
::
onGetAdts
(
const
AdtsFrame
::
Ptr
&
frame
)
{
//写入环形缓存
//写入环形缓存
RtpCodec
::
inputFame
(
frame
,
false
);
RtpCodec
::
inputFame
(
frame
,
false
);
//从缓存池重新申请对象,防止覆盖已经写入环形缓存的对象
//从缓存池重新申请对象,防止覆盖已经写入环形缓存的对象
...
@@ -103,3 +116,4 @@ void AACRtpCodec::onGetAdts(const AdtsFrame::Ptr &frame) {
...
@@ -103,3 +116,4 @@ void AACRtpCodec::onGetAdts(const AdtsFrame::Ptr &frame) {
m_adts
->
aac_frame_length
=
7
;
m_adts
->
aac_frame_length
=
7
;
}
}
src/RTP/AACRtpCodec.h
查看文件 @
0f6a7c16
...
@@ -8,30 +8,44 @@
...
@@ -8,30 +8,44 @@
#include "RtpCodec.h"
#include "RtpCodec.h"
class
AACRtp
Codec
:
public
RtpEncoder
{
class
AACRtp
Decoder
:
public
RtpCodec
{
public
:
public
:
AACRtpCodec
(
uint32_t
ui32Ssrc
,
AACRtpDecoder
()
{
uint32_t
ui32MtuSize
,
uint32_t
ui32SampleRate
,
uint8_t
ui8PlayloadType
=
97
,
uint8_t
ui8Interleaved
=
TrackAudio
*
2
)
:
RtpEncoder
(
ui32Ssrc
,
ui32MtuSize
,
ui32SampleRate
,
ui8PlayloadType
,
ui8Interleaved
)
{
m_framePool
.
setSize
(
32
);
m_framePool
.
setSize
(
32
);
m_adts
=
m_framePool
.
obtain
();
m_adts
=
m_framePool
.
obtain
();
}
}
~
AACRtpCodec
(){}
void
inputFame
(
const
Frame
::
Ptr
&
frame
,
bool
key_pos
)
override
;
~
AACRtpDecoder
()
{}
void
inputRtp
(
const
RtpPacket
::
Ptr
&
rtp
,
bool
key_pos
)
override
;
void
inputRtp
(
const
RtpPacket
::
Ptr
&
rtp
,
bool
key_pos
)
override
;
private
:
private
:
void
makeAACRtp
(
const
void
*
pData
,
unsigned
int
uiLen
,
bool
bMark
,
uint32_t
uiStamp
);
void
onGetAdts
(
const
AdtsFrame
::
Ptr
&
frame
);
void
onGetAdts
(
const
AdtsFrame
::
Ptr
&
frame
);
private
:
private
:
unsigned
char
m_aucSectionBuf
[
1600
];
AdtsFrame
::
Ptr
m_adts
;
AdtsFrame
::
Ptr
m_adts
;
ResourcePool
<
AdtsFrame
>
m_framePool
;
ResourcePool
<
AdtsFrame
>
m_framePool
;
};
};
class
AACRtpEncoder
:
public
RtpInfo
,
public
RtpCodec
{
public
:
AACRtpEncoder
(
uint32_t
ui32Ssrc
,
uint32_t
ui32MtuSize
,
uint32_t
ui32SampleRate
,
uint8_t
ui8PlayloadType
=
97
,
uint8_t
ui8Interleaved
=
TrackAudio
*
2
);
~
AACRtpEncoder
()
{}
void
inputFame
(
const
Frame
::
Ptr
&
frame
,
bool
key_pos
)
override
;
private
:
void
makeAACRtp
(
const
void
*
pData
,
unsigned
int
uiLen
,
bool
bMark
,
uint32_t
uiStamp
);
private
:
unsigned
char
m_aucSectionBuf
[
1600
];
};
#endif //ZLMEDIAKIT_AACRTPCODEC_H
#endif //ZLMEDIAKIT_AACRTPCODEC_H
src/RTP/H264RtpCodec.cpp
查看文件 @
0f6a7c16
...
@@ -4,100 +4,11 @@
...
@@ -4,100 +4,11 @@
#include "H264RtpCodec.h"
#include "H264RtpCodec.h"
void
H264RtpCodec
::
inputFame
(
const
Frame
::
Ptr
&
frame
,
bool
key_pos
)
{
void
H264RtpDecoder
::
inputRtp
(
const
RtpPacket
::
Ptr
&
rtp
,
bool
key_pos
)
{
RtpCodec
::
inputFame
(
frame
,
key_pos
);
GET_CONFIG_AND_REGISTER
(
uint32_t
,
cycleMS
,
Config
::
Rtp
::
kCycleMS
);
auto
uiStamp
=
frame
->
stamp
();
auto
pcData
=
frame
->
data
();
auto
iLen
=
frame
->
size
();
uiStamp
%=
cycleMS
;
int
iSize
=
m_ui32MtuSize
-
2
;
if
(
iLen
>
iSize
)
{
//超过MTU
const
unsigned
char
s_e_r_Start
=
0x80
;
const
unsigned
char
s_e_r_Mid
=
0x00
;
const
unsigned
char
s_e_r_End
=
0x40
;
//获取帧头数据,1byte
unsigned
char
naluType
=
*
((
unsigned
char
*
)
pcData
)
&
0x1f
;
//获取NALU的5bit 帧类型
unsigned
char
nal_ref_idc
=
*
((
unsigned
char
*
)
pcData
)
&
0x60
;
//获取NALU的2bit 帧重要程度 00 可以丢 11不能丢
//nal_ref_idc = 0x60;
//组装FU-A帧头数据 2byte
unsigned
char
f_nri_type
=
nal_ref_idc
+
28
;
//F为0 1bit,nri上面获取到2bit,28为FU-A分片类型5bit
unsigned
char
s_e_r_type
=
naluType
;
bool
bFirst
=
true
;
bool
mark
=
false
;
int
nOffset
=
1
;
while
(
!
mark
)
{
if
(
iLen
<
nOffset
+
iSize
)
{
//是否拆分结束
iSize
=
iLen
-
nOffset
;
mark
=
true
;
s_e_r_type
=
s_e_r_End
+
naluType
;
}
else
{
if
(
bFirst
==
true
)
{
s_e_r_type
=
s_e_r_Start
+
naluType
;
bFirst
=
false
;
}
else
{
s_e_r_type
=
s_e_r_Mid
+
naluType
;
}
}
memcpy
(
m_aucSectionBuf
,
&
f_nri_type
,
1
);
memcpy
(
m_aucSectionBuf
+
1
,
&
s_e_r_type
,
1
);
memcpy
(
m_aucSectionBuf
+
2
,
(
unsigned
char
*
)
pcData
+
nOffset
,
iSize
);
nOffset
+=
iSize
;
makeH264Rtp
(
m_aucSectionBuf
,
iSize
+
2
,
mark
,
uiStamp
);
}
}
else
{
makeH264Rtp
(
pcData
,
iLen
,
true
,
uiStamp
);
}
}
void
H264RtpCodec
::
makeH264Rtp
(
const
void
*
data
,
unsigned
int
len
,
bool
mark
,
uint32_t
uiStamp
)
{
uint16_t
ui16RtpLen
=
len
+
12
;
m_ui32TimeStamp
=
(
m_ui32SampleRate
/
1000
)
*
uiStamp
;
uint32_t
ts
=
htonl
(
m_ui32TimeStamp
);
uint16_t
sq
=
htons
(
m_ui16Sequence
);
uint32_t
sc
=
htonl
(
m_ui32Ssrc
);
auto
rtppkt
=
obtainRtp
();
unsigned
char
*
pucRtp
=
rtppkt
->
payload
;
pucRtp
[
0
]
=
'$'
;
pucRtp
[
1
]
=
m_ui8Interleaved
;
pucRtp
[
2
]
=
ui16RtpLen
>>
8
;
pucRtp
[
3
]
=
ui16RtpLen
&
0x00FF
;
pucRtp
[
4
]
=
0x80
;
pucRtp
[
5
]
=
(
mark
<<
7
)
|
m_ui8PlayloadType
;
memcpy
(
&
pucRtp
[
6
],
&
sq
,
2
);
memcpy
(
&
pucRtp
[
8
],
&
ts
,
4
);
//ssrc
memcpy
(
&
pucRtp
[
12
],
&
sc
,
4
);
//playload
memcpy
(
&
pucRtp
[
16
],
data
,
len
);
rtppkt
->
PT
=
m_ui8PlayloadType
;
rtppkt
->
interleaved
=
m_ui8Interleaved
;
rtppkt
->
mark
=
mark
;
rtppkt
->
length
=
len
+
16
;
rtppkt
->
sequence
=
m_ui16Sequence
;
rtppkt
->
timeStamp
=
m_ui32TimeStamp
;
rtppkt
->
ssrc
=
m_ui32Ssrc
;
rtppkt
->
type
=
TrackVideo
;
rtppkt
->
offset
=
16
;
uint8_t
type
=
((
uint8_t
*
)
(
data
))[
0
]
&
0x1F
;
RtpCodec
::
inputRtp
(
rtppkt
,
type
==
5
);
m_ui16Sequence
++
;
}
////////////////////////////////////////////////////////////////////////
void
H264RtpCodec
::
inputRtp
(
const
RtpPacket
::
Ptr
&
rtp
,
bool
key_pos
)
{
RtpCodec
::
inputRtp
(
rtp
,
decodeRtp
(
rtp
,
key_pos
));
RtpCodec
::
inputRtp
(
rtp
,
decodeRtp
(
rtp
,
key_pos
));
}
}
bool
H264RtpCodec
::
decodeRtp
(
const
RtpPacket
::
Ptr
&
rtppack
,
bool
key_pos
)
{
bool
H264RtpDecoder
::
decodeRtp
(
const
RtpPacket
::
Ptr
&
rtppack
,
bool
key_pos
)
{
/**
/**
* h264帧类型
* h264帧类型
* Type==1:P/B frame
* Type==1:P/B frame
...
@@ -171,10 +82,110 @@ bool H264RtpCodec::decodeRtp(const RtpPacket::Ptr &rtppack, bool key_pos) {
...
@@ -171,10 +82,110 @@ bool H264RtpCodec::decodeRtp(const RtpPacket::Ptr &rtppack, bool key_pos) {
// 31 udef
// 31 udef
}
}
void
H264Rtp
Codec
::
onGetH264
(
const
H264Frame
::
Ptr
&
frame
)
{
void
H264Rtp
Decoder
::
onGetH264
(
const
H264Frame
::
Ptr
&
frame
)
{
//写入环形缓存
//写入环形缓存
RtpCodec
::
inputFame
(
frame
,
frame
->
type
==
5
);
RtpCodec
::
inputFame
(
frame
,
frame
->
type
==
5
);
//从缓存池重新申请对象,防止覆盖已经写入环形缓存的对象
//从缓存池重新申请对象,防止覆盖已经写入环形缓存的对象
m_h264frame
=
m_framePool
.
obtain
();
m_h264frame
=
m_framePool
.
obtain
();
m_h264frame
->
buffer
.
clear
();
m_h264frame
->
buffer
.
clear
();
}
}
////////////////////////////////////////////////////////////////////////
H264RtpEncoder
::
H264RtpEncoder
(
uint32_t
ui32Ssrc
,
uint32_t
ui32MtuSize
,
uint32_t
ui32SampleRate
,
uint8_t
ui8PlayloadType
,
uint8_t
ui8Interleaved
)
:
RtpInfo
(
ui32Ssrc
,
ui32MtuSize
,
ui32SampleRate
,
ui8PlayloadType
,
ui8Interleaved
)
{
}
void
H264RtpEncoder
::
inputFame
(
const
Frame
::
Ptr
&
frame
,
bool
key_pos
)
{
RtpCodec
::
inputFame
(
frame
,
key_pos
);
GET_CONFIG_AND_REGISTER
(
uint32_t
,
cycleMS
,
Config
::
Rtp
::
kCycleMS
);
auto
uiStamp
=
frame
->
stamp
();
auto
pcData
=
frame
->
data
();
auto
iLen
=
frame
->
size
();
uiStamp
%=
cycleMS
;
int
iSize
=
m_ui32MtuSize
-
2
;
if
(
iLen
>
iSize
)
{
//超过MTU
const
unsigned
char
s_e_r_Start
=
0x80
;
const
unsigned
char
s_e_r_Mid
=
0x00
;
const
unsigned
char
s_e_r_End
=
0x40
;
//获取帧头数据,1byte
unsigned
char
naluType
=
*
((
unsigned
char
*
)
pcData
)
&
0x1f
;
//获取NALU的5bit 帧类型
unsigned
char
nal_ref_idc
=
*
((
unsigned
char
*
)
pcData
)
&
0x60
;
//获取NALU的2bit 帧重要程度 00 可以丢 11不能丢
//nal_ref_idc = 0x60;
//组装FU-A帧头数据 2byte
unsigned
char
f_nri_type
=
nal_ref_idc
+
28
;
//F为0 1bit,nri上面获取到2bit,28为FU-A分片类型5bit
unsigned
char
s_e_r_type
=
naluType
;
bool
bFirst
=
true
;
bool
mark
=
false
;
int
nOffset
=
1
;
while
(
!
mark
)
{
if
(
iLen
<
nOffset
+
iSize
)
{
//是否拆分结束
iSize
=
iLen
-
nOffset
;
mark
=
true
;
s_e_r_type
=
s_e_r_End
+
naluType
;
}
else
{
if
(
bFirst
==
true
)
{
s_e_r_type
=
s_e_r_Start
+
naluType
;
bFirst
=
false
;
}
else
{
s_e_r_type
=
s_e_r_Mid
+
naluType
;
}
}
memcpy
(
m_aucSectionBuf
,
&
f_nri_type
,
1
);
memcpy
(
m_aucSectionBuf
+
1
,
&
s_e_r_type
,
1
);
memcpy
(
m_aucSectionBuf
+
2
,
(
unsigned
char
*
)
pcData
+
nOffset
,
iSize
);
nOffset
+=
iSize
;
makeH264Rtp
(
m_aucSectionBuf
,
iSize
+
2
,
mark
,
uiStamp
);
}
}
else
{
makeH264Rtp
(
pcData
,
iLen
,
true
,
uiStamp
);
}
}
void
H264RtpEncoder
::
makeH264Rtp
(
const
void
*
data
,
unsigned
int
len
,
bool
mark
,
uint32_t
uiStamp
)
{
uint16_t
ui16RtpLen
=
len
+
12
;
m_ui32TimeStamp
=
(
m_ui32SampleRate
/
1000
)
*
uiStamp
;
uint32_t
ts
=
htonl
(
m_ui32TimeStamp
);
uint16_t
sq
=
htons
(
m_ui16Sequence
);
uint32_t
sc
=
htonl
(
m_ui32Ssrc
);
auto
rtppkt
=
obtainRtp
();
unsigned
char
*
pucRtp
=
rtppkt
->
payload
;
pucRtp
[
0
]
=
'$'
;
pucRtp
[
1
]
=
m_ui8Interleaved
;
pucRtp
[
2
]
=
ui16RtpLen
>>
8
;
pucRtp
[
3
]
=
ui16RtpLen
&
0x00FF
;
pucRtp
[
4
]
=
0x80
;
pucRtp
[
5
]
=
(
mark
<<
7
)
|
m_ui8PlayloadType
;
memcpy
(
&
pucRtp
[
6
],
&
sq
,
2
);
memcpy
(
&
pucRtp
[
8
],
&
ts
,
4
);
//ssrc
memcpy
(
&
pucRtp
[
12
],
&
sc
,
4
);
//playload
memcpy
(
&
pucRtp
[
16
],
data
,
len
);
rtppkt
->
PT
=
m_ui8PlayloadType
;
rtppkt
->
interleaved
=
m_ui8Interleaved
;
rtppkt
->
mark
=
mark
;
rtppkt
->
length
=
len
+
16
;
rtppkt
->
sequence
=
m_ui16Sequence
;
rtppkt
->
timeStamp
=
m_ui32TimeStamp
;
rtppkt
->
ssrc
=
m_ui32Ssrc
;
rtppkt
->
type
=
TrackVideo
;
rtppkt
->
offset
=
16
;
uint8_t
type
=
((
uint8_t
*
)
(
data
))[
0
]
&
0x1F
;
RtpCodec
::
inputRtp
(
rtppkt
,
type
==
5
);
m_ui16Sequence
++
;
}
\ No newline at end of file
src/RTP/H264RtpCodec.h
查看文件 @
0f6a7c16
...
@@ -10,30 +10,45 @@
...
@@ -10,30 +10,45 @@
using
namespace
ZL
::
Util
;
using
namespace
ZL
::
Util
;
class
H264Rtp
Codec
:
public
RtpEncoder
{
class
H264Rtp
Decoder
:
public
RtpCodec
{
public
:
public
:
H264RtpCodec
(
uint32_t
ui32Ssrc
,
H264RtpDecoder
()
{
uint32_t
ui32MtuSize
=
1400
,
uint32_t
ui32SampleRate
=
90000
,
uint8_t
ui8PlayloadType
=
96
,
uint8_t
ui8Interleaved
=
TrackVideo
*
2
)
:
RtpEncoder
(
ui32Ssrc
,
ui32MtuSize
,
ui32SampleRate
,
ui8PlayloadType
,
ui8Interleaved
)
{
m_framePool
.
setSize
(
32
);
m_framePool
.
setSize
(
32
);
m_h264frame
=
m_framePool
.
obtain
();
m_h264frame
=
m_framePool
.
obtain
();
}
}
~
H264RtpCodec
(){}
void
inputFame
(
const
Frame
::
Ptr
&
frame
,
bool
key_pos
)
override
;
~
H264RtpDecoder
()
{}
void
inputRtp
(
const
RtpPacket
::
Ptr
&
rtp
,
bool
key_pos
)
override
;
void
inputRtp
(
const
RtpPacket
::
Ptr
&
rtp
,
bool
key_pos
)
override
;
private
:
private
:
void
makeH264Rtp
(
const
void
*
pData
,
unsigned
int
uiLen
,
bool
bMark
,
uint32_t
uiStamp
);
bool
decodeRtp
(
const
RtpPacket
::
Ptr
&
rtp
,
bool
key_pos
);
bool
decodeRtp
(
const
RtpPacket
::
Ptr
&
rtp
,
bool
key_pos
);
void
onGetH264
(
const
H264Frame
::
Ptr
&
frame
);
void
onGetH264
(
const
H264Frame
::
Ptr
&
frame
);
private
:
private
:
unsigned
char
m_aucSectionBuf
[
1600
];
H264Frame
::
Ptr
m_h264frame
;
H264Frame
::
Ptr
m_h264frame
;
ResourcePool
<
H264Frame
>
m_framePool
;
ResourcePool
<
H264Frame
>
m_framePool
;
};
};
class
H264RtpEncoder
:
public
RtpInfo
,
public
RtpCodec
{
public
:
H264RtpEncoder
(
uint32_t
ui32Ssrc
,
uint32_t
ui32MtuSize
=
1400
,
uint32_t
ui32SampleRate
=
90000
,
uint8_t
ui8PlayloadType
=
96
,
uint8_t
ui8Interleaved
=
TrackVideo
*
2
);
~
H264RtpEncoder
()
{}
void
inputFame
(
const
Frame
::
Ptr
&
frame
,
bool
key_pos
)
override
;
private
:
void
makeH264Rtp
(
const
void
*
pData
,
unsigned
int
uiLen
,
bool
bMark
,
uint32_t
uiStamp
);
private
:
unsigned
char
m_aucSectionBuf
[
1600
];
};
#endif //ZLMEDIAKIT_H264RTPCODEC_H
#endif //ZLMEDIAKIT_H264RTPCODEC_H
src/RTP/RtpCodec.h
查看文件 @
0f6a7c16
...
@@ -21,8 +21,9 @@ public:
...
@@ -21,8 +21,9 @@ public:
typedef
RingBuffer
<
RtpPacket
::
Ptr
>
RtpRing
;
typedef
RingBuffer
<
RtpPacket
::
Ptr
>
RtpRing
;
RtpCodec
(){
RtpCodec
(){
_frameRing
=
std
::
make_shared
<
FrameRing
>
();
//禁用缓存
_rtpRing
=
std
::
make_shared
<
RtpRing
>
();
_frameRing
=
std
::
make_shared
<
FrameRing
>
(
1
);
_rtpRing
=
std
::
make_shared
<
RtpRing
>
(
1
);
}
}
virtual
~
RtpCodec
(){}
virtual
~
RtpCodec
(){}
...
@@ -45,11 +46,11 @@ private:
...
@@ -45,11 +46,11 @@ private:
};
};
class
Rtp
Encoder
:
public
RtpCodec
{
class
Rtp
Info
{
public
:
public
:
typedef
std
::
shared_ptr
<
Rtp
Encoder
>
Ptr
;
typedef
std
::
shared_ptr
<
Rtp
Info
>
Ptr
;
Rtp
Encoder
(
uint32_t
ui32Ssrc
,
Rtp
Info
(
uint32_t
ui32Ssrc
,
uint32_t
ui32MtuSize
,
uint32_t
ui32MtuSize
,
uint32_t
ui32SampleRate
,
uint32_t
ui32SampleRate
,
uint8_t
ui8PlayloadType
,
uint8_t
ui8PlayloadType
,
...
@@ -62,7 +63,7 @@ public:
...
@@ -62,7 +63,7 @@ public:
m_rtpPool
.
setSize
(
32
);
m_rtpPool
.
setSize
(
32
);
}
}
~
RtpEncoder
(){}
virtual
~
RtpInfo
(){}
int
getInterleaved
()
const
{
int
getInterleaved
()
const
{
return
m_ui8Interleaved
;
return
m_ui8Interleaved
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论