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
780a1eb9
Commit
780a1eb9
authored
Jul 22, 2023
by
xia-chu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
完善rtmp关键帧与配置帧判断逻辑
parent
a86398b6
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
26 行增加
和
19 行删除
+26
-19
src/Extension/AACRtmp.cpp
+0
-3
src/Extension/H264Rtmp.cpp
+0
-3
src/Extension/H265Rtmp.cpp
+0
-3
src/Rtmp/Rtmp.cpp
+24
-10
src/Rtmp/Rtmp.h
+2
-0
没有找到文件。
src/Extension/AACRtmp.cpp
查看文件 @
780a1eb9
...
...
@@ -21,9 +21,6 @@ static string getAacCfg(const RtmpPacket &thiz) {
if
((
RtmpAudioCodec
)
thiz
.
getRtmpCodecId
()
!=
RtmpAudioCodec
::
aac
)
{
return
ret
;
}
if
(
!
thiz
.
isCfgFrame
())
{
return
ret
;
}
if
(
thiz
.
buffer
.
size
()
<
4
)
{
WarnL
<<
"get aac config failed, rtmp packet is: "
<<
hexdump
(
thiz
.
data
(),
thiz
.
size
());
return
ret
;
...
...
src/Extension/H264Rtmp.cpp
查看文件 @
780a1eb9
...
...
@@ -33,9 +33,6 @@ static bool getH264Config(const RtmpPacket &thiz, string &sps, string &pps) {
if
((
RtmpVideoCodec
)
thiz
.
getRtmpCodecId
()
!=
RtmpVideoCodec
::
h264
)
{
return
false
;
}
if
(
!
thiz
.
isCfgFrame
())
{
return
false
;
}
if
(
thiz
.
buffer
.
size
()
<
13
)
{
return
false
;
}
...
...
src/Extension/H265Rtmp.cpp
查看文件 @
780a1eb9
...
...
@@ -53,9 +53,6 @@ static bool getH265ConfigFrame(const RtmpPacket &thiz, string &frame) {
if
((
RtmpVideoCodec
)
thiz
.
getRtmpCodecId
()
!=
RtmpVideoCodec
::
h265
)
{
return
false
;
}
if
(
!
thiz
.
isCfgFrame
())
{
return
false
;
}
if
(
thiz
.
buffer
.
size
()
<
6
)
{
WarnL
<<
"bad H265 cfg!"
;
return
false
;
...
...
src/Rtmp/Rtmp.cpp
查看文件 @
780a1eb9
...
...
@@ -156,22 +156,36 @@ bool RtmpPacket::isVideoKeyFrame() const {
if
(
type_id
!=
MSG_VIDEO
)
{
return
false
;
}
RtmpPacketInfo
info
;
if
(
CodecInvalid
==
parseVideoRtmpPacket
((
uint8_t
*
)
data
(),
size
(),
&
info
))
{
return
false
;
}
if
(
info
.
is_enhanced
)
{
return
info
.
video
.
frame_type
==
RtmpFrameType
::
key_frame
&&
info
.
video
.
pkt_type
==
RtmpPacketType
::
PacketTypeCodedFramesX
;
RtmpFrameType
frame_type
;
if
(
buffer
[
0
]
>>
7
==
1
)
{
// IsExHeader == 1
frame_type
=
(
RtmpFrameType
)((
buffer
[
0
]
>>
4
)
&
0x07
);
}
else
{
// IsExHeader == 0
frame_type
=
(
RtmpFrameType
)(
buffer
[
0
]
>>
4
);
}
return
info
.
video
.
frame_type
==
RtmpFrameType
::
key_frame
&&
info
.
video
.
h264_pkt_type
==
RtmpH264PacketType
::
h264_nalu
;
return
frame_type
==
RtmpFrameType
::
key_frame
;
}
bool
RtmpPacket
::
isCfgFrame
()
const
{
switch
(
type_id
)
{
case
MSG_VIDEO
:
return
(
RtmpH264PacketType
)
buffer
[
1
]
==
RtmpH264PacketType
::
h264_config_header
;
case
MSG_AUDIO
:
{
switch
((
RtmpAudioCodec
)
getRtmpCodecId
())
{
case
RtmpAudioCodec
:
:
aac
:
return
(
RtmpAACPacketType
)
buffer
[
1
]
==
RtmpAACPacketType
::
aac_config_header
;
return
(
RtmpAudioCodec
)
getRtmpCodecId
()
==
RtmpAudioCodec
::
aac
&&
(
RtmpAACPacketType
)
buffer
[
1
]
==
RtmpAACPacketType
::
aac_config_header
;
}
case
MSG_VIDEO
:
{
if
(
!
isVideoKeyFrame
())
{
return
false
;
}
if
(
buffer
[
0
]
>>
7
==
1
)
{
// IsExHeader == 1
return
(
RtmpPacketType
)(
buffer
[
0
]
&
0x0f
)
==
RtmpPacketType
::
PacketTypeSequenceStart
;
}
// IsExHeader == 0
switch
((
RtmpVideoCodec
)
getRtmpCodecId
())
{
case
RtmpVideoCodec
:
:
h265
:
case
RtmpVideoCodec
:
:
h264
:
{
return
(
RtmpH264PacketType
)
buffer
[
1
]
==
RtmpH264PacketType
::
h264_config_header
;
}
default
:
return
false
;
}
}
...
...
src/Rtmp/Rtmp.h
查看文件 @
780a1eb9
...
...
@@ -169,7 +169,9 @@ public:
}
void
clear
();
// video config frame和key frame都返回true
bool
isVideoKeyFrame
()
const
;
// aac config或h264/h265 config
bool
isCfgFrame
()
const
;
int
getRtmpCodecId
()
const
;
int
getAudioSampleRate
()
const
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论