mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
优化代码逻辑
This commit is contained in:
parent
9e42772b48
commit
d2c052a673
@ -55,13 +55,13 @@ void AACRtmpDecoder::onGetAAC(const char* data, int len, uint32_t stamp) {
|
|||||||
frame->_prefix_size = 0;
|
frame->_prefix_size = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(len){
|
if(len > 0){
|
||||||
//追加负载数据
|
//追加负载数据
|
||||||
frame->_buffer.append(data, len);
|
frame->_buffer.append(data, len);
|
||||||
frame->_dts = stamp;
|
frame->_dts = stamp;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(size || len){
|
if(size > 0 || len > 0){
|
||||||
//有adts头或者实际aac负载
|
//有adts头或者实际aac负载
|
||||||
RtmpCodec::inputFrame(frame);
|
RtmpCodec::inputFrame(frame);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user