优化代码风格

This commit is contained in:
xiongziliang 2023-02-05 22:00:36 +08:00
parent fb5b31a85f
commit a0955d956a
2 changed files with 4 additions and 4 deletions

View File

@ -90,7 +90,7 @@ using H264FrameNoCacheAble = H264FrameHelper<FrameFromPtr>;
/**
* 264
*/
class H264Track : public VideoTrack{
class H264Track : public VideoTrack {
public:
using Ptr = std::shared_ptr<H264Track>;

View File

@ -80,17 +80,17 @@ public:
/**
*
*/
virtual int getVideoHeight() const {return 0;};
virtual int getVideoHeight() const { return 0; }
/**
*
*/
virtual int getVideoWidth() const {return 0;};
virtual int getVideoWidth() const { return 0; }
/**
* fps
*/
virtual float getVideoFps() const {return 0;};
virtual float getVideoFps() const { return 0; }
};
/**