2019-07-24 18:40:18 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2019-07-24 18:40:18 +08:00
|
|
|
|
*
|
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
|
|
|
|
|
*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Use of this source code is governed by MIT license that can be found in the
|
|
|
|
|
* LICENSE file in the root of the source tree. All contributing project authors
|
|
|
|
|
* may be found in the AUTHORS file in the root of the source tree.
|
2019-07-24 18:40:18 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "Frame.h"
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
using namespace toolkit;
|
|
|
|
|
|
|
|
|
|
namespace mediakit{
|
|
|
|
|
|
2020-05-11 22:33:10 +08:00
|
|
|
|
/**
|
|
|
|
|
* 该对象的功能是把一个不可缓存的帧转换成可缓存的帧
|
|
|
|
|
*/
|
|
|
|
|
class FrameCacheAble : public FrameFromPtr {
|
|
|
|
|
public:
|
|
|
|
|
typedef std::shared_ptr<FrameCacheAble> Ptr;
|
|
|
|
|
|
|
|
|
|
FrameCacheAble(const Frame::Ptr &frame){
|
|
|
|
|
if(frame->cacheAble()){
|
|
|
|
|
_frame = frame;
|
|
|
|
|
_ptr = frame->data();
|
|
|
|
|
}else{
|
|
|
|
|
_buffer = std::make_shared<BufferRaw>();
|
|
|
|
|
_buffer->assign(frame->data(),frame->size());
|
|
|
|
|
_ptr = _buffer->data();
|
|
|
|
|
}
|
|
|
|
|
_size = frame->size();
|
|
|
|
|
_dts = frame->dts();
|
|
|
|
|
_pts = frame->pts();
|
|
|
|
|
_prefix_size = frame->prefixSize();
|
|
|
|
|
_codecid = frame->getCodecId();
|
|
|
|
|
_key = frame->keyFrame();
|
|
|
|
|
_config = frame->configFrame();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual ~FrameCacheAble() = default;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 可以被缓存
|
|
|
|
|
*/
|
|
|
|
|
bool cacheAble() const override {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CodecId getCodecId() const override{
|
|
|
|
|
return _codecid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool keyFrame() const override{
|
|
|
|
|
return _key;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool configFrame() const override{
|
|
|
|
|
return _config;
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
Frame::Ptr _frame;
|
|
|
|
|
BufferRaw::Ptr _buffer;
|
|
|
|
|
CodecId _codecid;
|
|
|
|
|
bool _key;
|
|
|
|
|
bool _config;
|
|
|
|
|
};
|
|
|
|
|
|
2019-07-24 18:40:18 +08:00
|
|
|
|
Frame::Ptr Frame::getCacheAbleFrame(const Frame::Ptr &frame){
|
|
|
|
|
if(frame->cacheAble()){
|
|
|
|
|
return frame;
|
|
|
|
|
}
|
|
|
|
|
return std::make_shared<FrameCacheAble>(frame);
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-08 21:19:20 +08:00
|
|
|
|
#define SWITCH_CASE(codec_id) case codec_id : return #codec_id
|
2020-03-09 16:04:34 +08:00
|
|
|
|
const char *CodecInfo::getCodecName() {
|
2020-03-08 21:19:20 +08:00
|
|
|
|
switch (getCodecId()) {
|
|
|
|
|
SWITCH_CASE(CodecH264);
|
|
|
|
|
SWITCH_CASE(CodecH265);
|
|
|
|
|
SWITCH_CASE(CodecAAC);
|
2020-04-17 17:47:10 +08:00
|
|
|
|
SWITCH_CASE(CodecG711A);
|
|
|
|
|
SWITCH_CASE(CodecG711U);
|
2020-05-11 22:33:10 +08:00
|
|
|
|
SWITCH_CASE(CodecOpus);
|
|
|
|
|
default : return "unknown codec";
|
2020-03-08 21:19:20 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-11 22:33:10 +08:00
|
|
|
|
TrackType CodecInfo::getTrackType(){
|
|
|
|
|
switch (getCodecId()){
|
|
|
|
|
case CodecH264:
|
|
|
|
|
case CodecH265: return TrackVideo;
|
|
|
|
|
case CodecAAC:
|
|
|
|
|
case CodecG711A:
|
|
|
|
|
case CodecG711U:
|
|
|
|
|
case CodecOpus: return TrackAudio;
|
|
|
|
|
default: return TrackInvalid;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-07-24 18:40:18 +08:00
|
|
|
|
|
2020-05-11 22:33:10 +08:00
|
|
|
|
}//namespace mediakit
|