规范函数命名

This commit is contained in:
xiongziliang
2019-08-02 13:51:24 +08:00
parent dd80d6a6bb
commit 36ed78ba1f
4 changed files with 9 additions and 16 deletions

View File

@@ -36,8 +36,7 @@ using namespace toolkit;
namespace mediakit {
bool getAVCH265Info(const string& strVps,const string& strSps,int &iVideoWidth, int &iVideoHeight, float &iVideoFps);
bool getAVC265Info(const char * vps, int vps_len,const char * sps,int sps_len,int &iVideoWidth, int &iVideoHeight, float &iVideoFps);
bool getHEVCInfo(const string &strVps, const string &strSps, int &iVideoWidth, int &iVideoHeight, float &iVideoFps);
/**
* 265帧类
@@ -336,7 +335,7 @@ private:
* 解析sps获取宽高fps
*/
void onReady(){
getAVCH265Info(_vps,_sps,_width,_height,_fps);
getHEVCInfo(_vps, _sps, _width, _height, _fps);
}
Track::Ptr clone() override {
return std::make_shared<std::remove_reference<decltype(*this)>::type>(*this);