修正拼写错误

This commit is contained in:
xiongziliang
2017-08-14 22:20:53 +08:00
parent 51eebe112e
commit 91ebb5db46
3 changed files with 8 additions and 8 deletions

View File

@@ -29,11 +29,11 @@ public:
typedef std::shared_ptr<RtspPlayerImp> Ptr;
RtspPlayerImp();
virtual ~RtspPlayerImp();
float getProgresss() const override{
float getProgress() const override{
if(getDuration() > 0){
return getProgressTime() / getDuration();
}
return PlayerBase::getProgresss();
return PlayerBase::getProgress();
};
void seekTo(float fProgress) override{